
:root {
    --primary-color: #8d1475;      
    --secondary-color: #2F348F;    
    --accent-color: #e6007e;      
    --text-dark: #1e1e24;          
    --text-muted: #2E2E2E;         
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

p {
    font-family: var(--font-body);
}

/* Header & Navbar Styles */
.header-nav {
    padding: 20px 0 0 0;
    transition: var(--transition-smooth);
    background: transparent;
    z-index: 1030;
}

.header-nav .navbar {
    padding: 0;
}

.header-nav .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Scrolled Header State */
.header-nav.scrolled {
    padding: 2px 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* Logo Design - Flex handled in CSS */
.navbar-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Navbar Collapse & Links - Flex handled in CSS */
.navbar-collapse {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    color: var(--text-dark);
    padding: 8px 22px !important;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.show .nav-link {
    color: var(--primary-color);
}

.navbar-nav .nav-link.fw-bold-custom {
    font-weight: 600;
}

/* Underline Hover Animation */
.navbar-nav .nav-item:not(.dropdown) .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.navbar-nav .nav-item:not(.dropdown) .nav-link:hover::after {
    width: calc(100% - 32px);
}

/* Custom Dropdown Styling */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 8px;
    min-width: 200px;
    margin-top: 15px;
    animation: fadeInDropdown 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 16px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background-color: rgba(141, 20, 117, 0.06);
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Hover Dropdown Menu Behavior for Desktop */
@media (min-width: 1200px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
    
    /* Invisible helper bridge to keep hover active between the link and the dropdown menu */
    .navbar-nav .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 20px;
        background: transparent;
    }
}

/* Contact Info Section - Flex handled in CSS */
.header-contact {
    display: flex;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 500;
}

.contact-phone {
    margin-right: 24px;
}

.contact-item:hover {
    color: var(--primary-color);
}

.contact-item .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
    transition: var(--transition-smooth);
}

/* Specific contact colors matching screenshot */
.contact-item .phone-icon {
    color: var(--accent-color);
}

.contact-item .pin-icon {
    color: var(--accent-color);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px; /* Space for fixed header */
    padding-bottom: 60px;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.98) 15%,
        rgba(255, 255, 255, 0.85) 25%, 
        rgba(255, 255, 255, 0.3) 35%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

/* Content wrapper on top of overlay */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 120px;
}

.hero-row {
    display: flex;
    align-items: center;
}

.hero-text-block {
    max-width: 620px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    color: #2E2E2E;
    margin-bottom: 12px;
}

.hero-title-highlight {
    color: var(--accent-color);
}

.hero-desc {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-weight: 600;
}

/* Button Group */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Premium Button Styling */
.btn-premium {
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.btn-premium i {
    font-size: 14px;
    margin-left: 8px;
    transition: transform 0.25s ease;
}

.btn-premium:hover i {
    transform: translateX(4px);
}

/* Primary Button: Partner With Us */
.btn-partner {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
}

.btn-partner:hover {
    background-color: #ffffff;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Secondary Outline Button: Join as a Rider */
.btn-rider {
    background-color: #ffffff;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-rider:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
}

/* -------------------------------------------------------------
 * Partners Logo Bar Section
 * ------------------------------------------------------------- */
.partners-section {
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-container {
    display: flex;
    width: 100%;
}

.partner-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    padding: 16px 24px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.partner-card:last-child {
    border-right: none;
}

.partner-noon {
    background-color: #fce819; 
}
.partner-talabat {
    background-color: #ffffff;
}

.partner-careem {
    background-color: #00e784;
}

.partner-deliveroo {
    background-color: #ffffff; 
}
.partner-logo {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.partner-card:hover .partner-logo {
    transform: scale(1.06);
}

.about-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.about-tag {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-body-row {
    margin-top: 10px;
}

.about-img-wrapper {
    position: relative;
    margin-top: 0;
    margin-bottom: 40px;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-stats-card {
    position: absolute;
    bottom: -30px;
    left: 100px;
    right: -50px;
    background-color: var(--secondary-color);
    border-radius:12px;
    display: flex;
    padding: 34px 16px;
    box-shadow: 0 10px 30px rgba(43, 46, 131, 0.2);
    z-index: 2;
}

.stat-item {
    flex: 1;
    text-align: center;
    color: #ffffff;
    border-right: 2px solid var(--text-dark);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.about-right-col {
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right-col p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-right-col p:first-of-type {
    margin-bottom: 24px;
}


.services-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.services-tag {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.services-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -1px;
}

.services-body-row {
    margin-top: 20px;
}

.service-card-col {
    margin-bottom: 30px;
}

@media (min-width: 1200px) {
    .service-card-col {
        margin-bottom: 0;
    }
}

.service-card {
    perspective: 1000px;
    height: 480px;
    position: relative;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Front Face */
.service-card-front {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    transform: rotateY(0deg);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-bg {
    transform: scale(1.06);
}

.service-card-number {
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1;
    z-index: 2;
    pointer-events: none;
}

.service-card-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(47, 52, 143, 0.95) 40%, rgba(141, 20, 117, 0.7) 100%);
    padding: 28px 24px;
    color: #ffffff;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
}

/* Back Face */
.service-card-back {
    z-index: 1;
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #ffffff;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.service-card-back .service-card-number {
    color: rgba(255, 255, 255, 0.15);
}

.service-card-back-content {
    z-index: 2;
    width: 100%;
}

.service-card-back .service-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.service-card-back .service-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.service-card-front .service-card-desc {
    display: none;
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 10px rgba(230, 0, 126, 0.3);
}

.service-card-btn i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.25s ease;
}

.service-card-btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: none;
}

.service-card-btn:hover i {
    transform: translateX(4px);
}


.why-lbdgo-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.why-tag {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.why-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.why-right-col {
    padding-left: 60px;
}

.delivery-img-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.delivery-img {
    border-radius: 8px;
    display: block;
     width: 100%;
}

.delivery-focus-card {
    position: absolute;
    bottom: -30px;
    right: -40px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 35px 35px;
    color: #ffffff;
    text-align: center;
    z-index: 2;
    min-width: 170px;
}

.focus-number {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.focus-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.features-list {
    margin-top: 30px;
}

.features-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.features-list-item:last-child {
    margin-bottom: 0;
}

.feature-icon-wrapper {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background-color: transparent;
    color: var(--accent-color);
}

.feature-icon-wrapper svg {
    width: 60px;
    height: 60px;
    fill: currentColor;
}

.feature-text-content {
    flex: 1;
}

.feature-item-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-item-desc {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 0;
}


.join-hire-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.join-tag {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.join-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.join-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

.option-cards-row {
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .option-card-col {
        margin-bottom: 0;
    }
}

/* Option Card Styles */
.option-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 28px 30px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: var(--transition-smooth);
    height: 100%;
}

.option-card.active {
    border-color: #9E6FFF;
    box-shadow: 0 0 15px rgba(158, 111, 255, 0.15);
}

.option-icon-wrapper {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #582793; 
    border-radius: 50%;
    transition: var(--transition-smooth);
}
.option-icon-wrapper-two {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #606060; /* Default inactive for business card */
    border-radius: 50%;
    transition: var(--transition-smooth);
}
.option-icon-wrapper svg,
.option-icon-wrapper-two svg {
    width: 54px !important;
    height: 54px !important;
    display: block;
    transition: transform 0.3s ease !important;
}

/* Toggle colors on active state */
.option-card:not(.active) .option-icon-wrapper {
    background-color: #606060;
}
.option-card.active .option-icon-wrapper-two {
    background-color: #582793;
}
.option-card-text {
    flex: 1;
}

.option-card-text h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.option-card-text p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 0;
}

.form-outer-container {
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #9E6FFF;
    padding: 40px;
    margin-top: 20px;
}

.form-header-row {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.form-title-wrapper {
    display: flex;
    align-items: center;
}

.form-title-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-title-icon svg {
    width: 100%;
    height: 100%;
}

.form-title-text h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #582793;
    margin-bottom: 4px;
}

.form-title-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.stepper-progress {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.step-item {
    display: flex;
    align-items: center;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 8px;
    transition: var(--transition-smooth);
}

.step-item.active .step-number {
    background-color: #582793;
    color: #ffffff;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.step-item.active .step-label {
    color: var(--text-dark);
}

.step-line {
    flex-grow: 1;
    height: 1px;
    background-color: #e5e7eb;
    margin: 0 16px;
    max-width: 60px;
}

.form-group-custom {
    margin-bottom: 24px;
}

.form-group-custom label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.form-control-custom,
.form-select-custom {
    width: 100%;
    height: 52px;
    padding-left: 18px !important;
    padding-right: 18px !important;
    padding-top: 0;
    padding-bottom: 0;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.form-control-custom:focus,
.form-select-custom:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: none;
}

.form-select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-footer-row {
    border-top: 1px solid #f3f4f6;
    padding-top: 30px;
    margin-top: 20px;
}

.security-info {
    display: flex;
    align-items: center;
}
.security-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon svg {
    width: 60px;
    height: 60px;
}

.security-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 245px;
}

.btn-next-step {
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
}

.btn-next-step:hover {
    background-color: #720e5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(141, 20, 117, 0.2);
}

.btn-next-step .arrow {
    margin-left: 8px;
    transition: var(--transition-smooth);
}

.btn-next-step:hover .arrow {
    transform: translateX(4px);
}


/* -------------------------------------------------------------
 * Contact Section Styles
 * ------------------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-tag {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.contact-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.contact-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details-list {
    margin-top: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    text-decoration: none;
    color: var(--text-dark);
}

.contact-detail-item:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-detail-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-detail-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form-col {
    padding-left: 40px;
}

.form-textarea-custom {
    width: 100%;
    padding: 18px !important;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background-color: #ffffff;
    transition: var(--transition-smooth);
    resize: none;
}

.form-textarea-custom:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: none;
}

.form-submit-row {
    margin-top: 24px;
}

.btn-submit {
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 40px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-submit:hover {
    background-color: #720e5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(141, 20, 117, 0.2);
}

/* Custom checkbox styling */
.form-check-custom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.form-check-custom .invalid-feedback-custom {
    width: 100%;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    user-select: none;
    line-height: 20px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--accent-color);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.footer {
    padding: 24px 0;
    background-color: #572994;
    border-top: none;
    color: #ffffff;
}

.footer-container {
    text-align: center;
}

.footer-text {
    margin: 0;
    color: #ffffff;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
}

/* Multi-step Rider Form Custom Styles */
.option-selector-radio {
    display: none;
}

.option-selector-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    padding: 10px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    background-color: #ffffff;
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
    box-sizing: border-box;
}

.option-selector-label:hover {
    border-color: var(--primary-color);
    background-color: rgba(141, 20, 117, 0.02);
}

.option-selector-radio:checked + .option-selector-label {
    border-color: var(--primary-color);
    background-color: rgba(141, 20, 117, 0.05);
    color: var(--primary-color);
    box-shadow: none;
    display: flex;
    align-items: center;
}

.btn-back-step {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.btn-back-step:hover {
    background-color: #f3f4f6;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Stepper state overrides */
.step-item.completed .step-number {
    background-color: #10b981; /* Green for completed steps */
    color: #ffffff;
}

.step-item.completed .step-label {
    color: #10b981;
}

.step-line.active {
    background-color: var(--primary-color);
}

/* Form field validation class */
.form-control-custom.is-invalid,
.form-select-custom.is-invalid,
.option-selector-label.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: none !important;
}

/* Checkbox validation highlighting */
.checkbox-container.is-invalid .checkmark {
    border-color: #dc3545 !important;
    box-shadow: none !important;
}

/* Success Modal Overlay */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Success Modal Card */
.success-modal-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    width: 90%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(0.85) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-modal-overlay.show .success-modal-card {
    transform: scale(1) translateY(0);
}

.success-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Checkmark SVG */
.checkmark-svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #10b981;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #10b981;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #10b981;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 4;
    stroke: #ffffff;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.success-modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.success-modal-message {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 30px;
}

#successModalCloseBtn {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

#successModalCloseBtn:hover {
    background-color: #21256b;
    border-color: #21256b;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 40px #10b981;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

/* Form Section Title */
.form-section-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f3f3f3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Custom Validation Error Styles */
.invalid-feedback-custom {
    color: #dc3545 !important;
    font-size: 13px !important;
    margin-top: 6px !important;
    display: block !important;
    font-weight: 500 !important;
    text-align: left !important;
}

.text-danger {
    color: #dc3545 !important;
}

/* Inner Page Styles */
.inner-page-header {
    padding: 160px 0 0 0;
}

.inner-page-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}


.inner-page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.inner-page-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}
.inner-page-content{
    margin-bottom: 40px;
}
.bi-arrow-right::before {
    font-size: 20px;
}


.text-orange {
    color: var(--secondary-color);
}

.business-form .form-control-custom:focus,
.business-form .form-select-custom:focus {
    box-shadow: none !important;
}

.business-form .option-selector-label:hover {
      border-color: var(--primary-color);
    background-color: rgba(141, 20, 117, 0.05);
    color: var(--primary-color);
    box-shadow: none;
}
.text-end-btn{
    text-align: right;
}
