/* ===================================
   FONT FACES
   =================================== */
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

:root {
    --purple: #018C5F;
    /* Green */
    --dark-purple: #00130d;
    /* Dark Green */
    --white: #FFFFFF;
    --light-gray: #FBFAFB;
    --gray: #8E8E93;
    --black: #000000;
    --yellow: #FFAE00;
    --gradient-purple: linear-gradient(135deg, #018C5F 0%, #018C5F 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-purple);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

ul,
ol {
    list-style: none;
}

input,
textarea,
select {
    font-family: inherit;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    outline: none;
    border: none;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-tag {
    display: inline-block;
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-tag-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.section-tag-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(67%) sepia(85%) saturate(1638%) hue-rotate(1deg) brightness(103%) contrast(105%);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);

    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--dark-purple);
}

.section-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    max-width: 600px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    background-color: transparent;
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--white);
    justify-self: start;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    grid-column: 2;
}

.nav-link {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--purple);
}

.nav-cta {
    background: var(--gradient-purple);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-self: end;
    grid-column: 3;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 140, 95, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    color: var(--white);
    font-size: 1.5rem;
    padding: 5px;
    grid-column: 3;
    justify-self: end;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background-color: var(--dark-purple);
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(1, 140, 95, 0.3), transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
    margin-top: -50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 12px;
    margin-top: 0px;
    font-size: 0.75rem;
    margin-bottom: 24px;
}

.hero-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: 0.0005rem;
    background: linear-gradient(to bottom, #FFFFFF 0%, #e6e6e6 50%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.2;
    opacity: 0.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;

    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(1, 140, 95, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark-purple);
}

.btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.trustpilot-badge .stars {
    color: #FFC107;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.google-badge .stars {
    color: #FFC107;
}

/* ===================================
   HERO FORM CARD
   =================================== */
.hero-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    margin-top: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 28px;
    text-align: center;
    letter-spacing: 0.0005rem;

    line-height: 0.9;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5E5E7;
    border-radius: 8px;
    font-size: 0.9375rem;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Custom Select Dropdown Styling */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3e%3cpath fill='%23783BFA' d='M1 1l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 45px;
    cursor: pointer;
    font-weight: 500;
}

.form-select:hover {
    border-color: var(--purple);
    background-color: #FAFAFA;
}

.form-select option {
    padding: 12px;
    background-color: var(--white);
    color: var(--dark-purple);
    font-weight: 500;
}

.form-select option:first-child {
    color: var(--gray);
}

.form-select:invalid {
    color: var(--gray);
}

.form-select:valid {
    color: var(--dark-purple);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(1, 140, 95, 0.1);
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    background: var(--gradient-purple);
    color: var(--white);
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(1, 140, 95, 0.4);
}

/* ===================================
   CUSTOM DROPDOWN
   =================================== */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown-selected {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5E5E7;
    border-radius: 8px;
    font-size: 0.9375rem;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.custom-dropdown-selected:hover {
    border-color: var(--purple);
    background-color: #FAFAFA;
}

.custom-dropdown.active .custom-dropdown-selected {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(1, 140, 95, 0.1);
}

.custom-dropdown-text {
    color: var(--gray);
    transition: color 0.3s ease;
}

.custom-dropdown.has-value .custom-dropdown-text {
    color: var(--dark-purple);
}

.custom-dropdown-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.custom-dropdown.active .custom-dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid #E5E5E7;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.custom-dropdown.active .custom-dropdown-options {
    max-height: 300px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
}

.custom-dropdown-option {
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: var(--dark-purple);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.custom-dropdown-option:first-child {
    color: var(--gray);
}

.custom-dropdown-option:hover {
    background-color: #F5F3FF;
    color: var(--purple);
}

.custom-dropdown-option.selected {
    background-color: var(--purple);
    color: var(--white);
}

.custom-dropdown-option.selected:hover {
    background-color: var(--purple);
    color: var(--white);
}

/* Custom scrollbar for dropdown options */
.custom-dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.custom-dropdown-options::-webkit-scrollbar-track {
    background: #F5F5F7;
    border-radius: 8px;
}

.custom-dropdown-options::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 8px;
}

.custom-dropdown-options::-webkit-scrollbar-thumb:hover {
    background: #5B2BC9;
}


/* ===================================
   HERO REVIEW BADGE
   =================================== */
.hero-review-badge {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 24px;
}

.hero-review-badge img {
    width: 750px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   HERO SHOWCASE
   =================================== */
.hero-showcase {
    position: relative;
    z-index: 10;
    margin-top: -100px;
    padding-bottom: 20px;
}

/* Background filler for the part below the hero intersection */
.hero-showcase::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FBFAFB;
    z-index: -1;
}

.hero-showcase-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    line-height: 0;
}

.hero-showcase-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-showcase {
        margin-top: -60px;
    }

    .hero-showcase::before {
        top: 60px;
    }

    .hero-showcase-wrapper {
        border-radius: 16px;
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background-color: #FBFAFB;
    padding: 100px 0;
}

.about-wrapper {
    max-width: 100%;
}

.about-header {
    margin-bottom: 48px;
}

.about-header-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-purple);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    flex-shrink: 0;
    margin-top: 4px;
}

.about-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.about-main-title {
    font-size: clamp(1.5rem, 3.2vw, 2.5rem);
    font-weight: 500;
    line-height: 1;
    color: var(--dark-purple);
    max-width: 100%;
    letter-spacing: -0.02em;
    margin: 0;
    flex: 1;
}

/* About Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.about-feature-card {
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Grid Layout Positioning */
.about-feature-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.about-feature-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.about-feature-card:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / 3;
}

.about-feature-card:nth-child(4) {
    grid-column: 3;
    grid-row: 1;
}

.about-feature-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

/* Card Color Variants */
.about-feature-card.light-purple {
    background: linear-gradient(135deg, #018C5F 0%, #00261A 100%);
    color: var(--dark-purple);
}

.about-feature-card.purple-gradient {
    background: linear-gradient(135deg, #018C5F 0%, #00261A 100%);
    background-image: url('../images/middle box background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
}

.about-feature-card.dark {
    background: #000000;
    color: var(--white);
}

.about-feature-card.dark-purple {
    background: linear-gradient(135deg, #001F15 30%, #003827 70%);
    color: var(--white);
}

.about-feature-card.image-card {
    padding: 0;
    overflow: hidden;
}

/* Card Elements */
.about-feature-tag {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 32px;
    display: block;
    color: var(--dark-purple);
}

.about-feature-stat {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: var(--dark-purple);
}

.about-feature-card.dark .about-feature-stat {
    color: var(--white);
}

.about-feature-description {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-top: auto;
    max-width: 90%;
}

.about-feature-card.light-purple .about-feature-description {
    opacity: 1;
    color: var(--dark-purple);
}

.about-feature-card.dark .about-feature-description {
    opacity: 0.85;
}

.about-feature-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 0;
}

.about-feature-card.dark .about-feature-title {
    margin-bottom: 32px;
}

.about-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-feature-card.purple-gradient .about-feature-title {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    line-height: 1.1;
    max-width: 100%;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: 60px 0;
    background-color: #FBFAFB;
}

.services-header {
    margin-bottom: 56px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-purple);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.services-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.services-main-title {
    font-size: clamp(2rem, 3.5vw, 3rem);

    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--dark-purple);
    margin-bottom: 20px;
    max-width: 600px;
}

.services-description {
    font-size: 1.3rem;
    line-height: 1.1;
    color: var(--dark-purple);
    max-width: 550px;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: #000000;
    color: var(--white);
    border-radius: 20px;
    padding: 25px 17px;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    z-index: 1;
}

/* First purple box - lighter shade */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #018C5F 0%, #00261A 100%);
    border-radius: 20px;
    opacity: 0;
    transform: translateZ(-5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.service-card:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-8px);
    box-shadow: 0 20px 60px #018C5F;
    background: #0a0a0a;
}

.service-card:hover::before {
    opacity: 1;
    transform: translate(-5px, 5px) rotate(-1deg) translateZ(-10px);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.service-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;

    transition: all 0.3s ease;
}

.service-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 6px;
    color: var(--white);
    margin-top: -30px;
    text-align: center;
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.3;
    color: #ffffffda;
    opacity: 0.7;
    margin-top: auto;
    text-align: center;
}

.service-image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin: 16px 0;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
    padding: 60px 0;
    background-color: #FBFAFB;
    overflow: visible;
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.process-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.process-main-title {
    font-size: clamp(2rem, 3.5vw, 3rem);

    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--dark-purple);
    margin-bottom: 20px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 40px;
}

.process-card {
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 480px;
    position: relative;
    overflow: visible;
    transform-style: preserve-3d;
    z-index: 1;
}

/* First purple shadow layer */
.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #018C5F 0%, #005F40 100%);
    border-radius: 24px;
    opacity: 0;
    transform: translateZ(-5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

/* Second purple shadow layer - darker */
.process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #005F40 0%, #003020 100%);
    border-radius: 24px;
    opacity: 0;
    transform: translateZ(-5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -2;
}

.process-card:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-12px);
    box-shadow: 0 20px 60px rgba(1, 140, 95, 0.4), 0 0 40px rgba(1, 140, 95, 0.3);
    z-index: 10;
}

/* Animate shadow layers on hover */
.process-card:hover::before {
    opacity: 1;
    transform: translate(-5px, 5px) rotate(-1deg) translateZ(-10px);
}

.process-card:hover::after {
    opacity: 1;
    transform: translate(-10px, 10px) rotate(-2deg) translateZ(-20px);
}

.process-card.purple {
    background: #7C3AED;
    color: var(--white);
}

/* Purple card specific shadow layers - now BLACK/DARK */
.process-card.purple::before {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.process-card.purple::after {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.process-card.black {
    background: #000000;
    color: var(--white);
    box-shadow: 0 0 40px rgba(255, 174, 0, 0.15);
}

/* Black card specific shadow layers - now YELLOW */
.process-card.black::before {
    background: linear-gradient(135deg, #FFAE00 0%, #FFD700 100%);
}

.process-card.black::after {
    background: linear-gradient(135deg, #FFD700 0%, #FFAE00 100%);
}

/* Black card unique hover with YELLOW glow */
.process-card.black:hover {
    box-shadow: 0 20px 60px rgba(255, 174, 0, 0.4), 0 0 40px rgba(255, 174, 0, 0.3);
}

.process-card.green {
    background: #018C5F;
    color: var(--white);
}

/* Green card specific shadow layers - DARK like purple card */
.process-card.green::before {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.process-card.green::after {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

/* Green card hover shadow */
.process-card.green:hover {
    box-shadow: 0 20px 60px rgba(1, 140, 95, 0.4), 0 0 40px rgba(1, 140, 95, 0.3);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.2;
}

.process-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.process-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* SVG illustration hover effects */
.process-card:hover .process-image img {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 10px 20px rgba(1, 140, 95, 0.3));
}

.process-card.black:hover .process-image img {
    filter: drop-shadow(0 10px 20px rgba(255, 174, 0, 0.3));
}

/* Specific sizing for card images */
.process-card:first-child .process-image {
    max-width: 160px;
    /* Smaller size for 1st card */
}

.process-card:last-child .process-image {
    max-width: 250px;
    margin-top: 30px;
    /* Bigger size for 3rd card */
}

.process-card.black .process-image {
    max-width: 280px;
    /* Bigger size for 2nd card */
    margin: 0 auto;
}

.process-description {
    font-size: 0.9375rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 300px;
    margin: 0 auto;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: 60px 0;
    background-color: #FBFAFB;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--dark-purple);
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
    padding-top: 20px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    min-width: 480px;
    max-width: 480px;
    background: radial-gradient(circle at bottom center, #018C5F 0%, #000000 70%);
    color: var(--white);
    border-radius: 32px;
    padding: 56px 48px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 360px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Yellow Icon on Hover */
.testimonial-card:hover .testimonial-icon img {
    filter: brightness(0) saturate(100%) invert(67%) sepia(85%) saturate(1638%) hue-rotate(1deg) brightness(103%) contrast(105%);
}

.testimonial-icon {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: auto;
    padding-top: 56px;
    color: var(--white);
    font-weight: 400;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 48px;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: -3px;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: -16px;
    margin-bottom: -7px;
    color: var(--white);
}

.testimonial-role {
    font-size: 0.9375rem;
    color: var(--white);
    opacity: 0.7;
    margin-bottom: -16px;
}

.testimonial-stars {
    color: var(--white);
    font-size: 1.375rem;
    letter-spacing: 3px;
    margin-bottom: -16px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-stars {
    color: var(--yellow);
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta {
    padding: 60px 20px;
    background-color: #FBFAFB;
}

.final-cta .container {
    background-color: #000000;
    border-radius: 32px;
    padding: 60px 80px;
}

.final-cta-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.final-cta-content {
    color: var(--white);
}

.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--dark-purple);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    margin-bottom: 32px;
}

.final-cta-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.final-cta-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 500px;
}

.final-cta-description {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 450px;
}

.final-cta-form {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(120, 59, 250, 0.15);
}

/* ===================================
   FAQ SECTION
   =================================== */
/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: 100px 0;
    background-color: #FBFAFB;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid #E5E5E7;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(1, 140, 95, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(1, 140, 95, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    color: var(--dark-purple);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: transparent;
    color: var(--purple);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--dark-purple);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item:hover .faq-icon {
    background: rgba(1, 140, 95, 0.1);
    color: var(--purple);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--purple);
    color: var(--white);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    margin: 0;
    color: #4B5563;
}

/* ===================================
   POPULAR ROUTES SECTION
   =================================== */
.popular-routes {
    padding: 60px 0;
    background-color: #FBFAFB;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.route-card {
    background: #000000;
    border-radius: 24px;
    padding: 24px 16px 16px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.route-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.route-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.route-card:hover .route-image img {
    transform: scale(1.1);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, #00130d 70%, #018C5F 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    padding-bottom: 60px;
    align-items: start;
}

.footer-info h3 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.footer-info p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
}

/* Footer tag with white background */
.footer .section-tag {
    background-color: #ffffff36;
    color: var(--white);
}


.footer-info-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.footer-location-info,
.footer-contact-info {
    margin-top: 0;
}

.footer-location-info h4,
.footer-contact-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    opacity: 0.7;
    color: var(--white);
}

.footer-location-info p,
.footer-contact-info p {
    font-size: 0.9375rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-map {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.interactive-map {
    width: 100%;
    height: 100%;
}

/* Leaflet Map Custom Styling - Modern Theme with Purple Tint */
.interactive-map .leaflet-tile-pane {
    filter: saturate(0.9) brightness(1.05) contrast(1.05) hue-rotate(-5deg);
    opacity: 0.95;
}

.interactive-map .leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.interactive-map .leaflet-control-zoom a {
    background: var(--white) !important;
    color: var(--dark-purple) !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.interactive-map .leaflet-control-zoom a:hover {
    background: var(--purple) !important;
    color: var(--white) !important;
    transform: scale(1.05);
}

.interactive-map .leaflet-popup-content-wrapper {
    background: var(--white) !important;
    color: var(--dark-purple) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    padding: 0 !important;
    border: 1px solid rgba(120, 59, 250, 0.1) !important;
}

.interactive-map .leaflet-popup-tip {
    background: var(--white) !important;
    border: 1px solid rgba(120, 59, 250, 0.1) !important;
}

.interactive-map .leaflet-popup-close-button {
    color: var(--dark-purple) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    padding: 6px 10px 0 0 !important;
}

.interactive-map .leaflet-popup-close-button:hover {
    color: var(--purple) !important;
}

.footer-bottom {
    background-color: #ffffff0c;
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.footer-link-inline {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: underline;
}

.footer-link-inline:hover {
    opacity: 1;
    color: var(--purple);
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* About Section Tablet */
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .about-feature-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .about-feature-card:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .about-feature-card:nth-child(3) {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .about-feature-card:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .about-feature-card:nth-child(5) {
        grid-column: 1 / 3;
        grid-row: 4;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        gap: 40px;
    }
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE
   =================================== */
@media (max-width: 768px) {

    /* Navigation */
    /* Navigation - Modern Dropdown */
    .nav-menu {
        position: absolute;
        top: 80px;
        right: 20px;
        left: auto;
        width: 260px;
        height: auto;
        background: rgba(0, 19, 13, 0.85);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 16px;
        gap: 8px;
        border-radius: 20px;
        border: 1px solid rgba(1, 140, 95, 0.25);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(1, 140, 95, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        align-items: stretch;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        left: auto;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
        border-radius: 12px;
        transition: background 0.2s ease;
        text-align: left;
        font-size: 1rem;
    }

    .nav-link:hover {
        background: rgba(1, 140, 95, 0.12);
        color: var(--purple);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        grid-template-columns: auto 1fr auto;
    }

    .nav-cta {
        display: none;
    }

    /* Hero Section */
    .hero {
        padding: 160px 0 80px;
    }

    .hero::before {
        width: 100%;
        left: 0;
        background: radial-gradient(circle at bottom center, rgba(120, 59, 250, 0.3), transparent 70%);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem !important;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-form-card {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Sections */
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }

    .about-header-content {
        flex-direction: column;
        gap: 20px;
    }

    .about-badge {
        font-size: 0.875rem;
        padding: 8px 16px;
        margin-top: 0;
    }

    .about-main-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.2;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-feature-card {
        padding: 32px;
    }

    .about-feature-card.purple-gradient {
        min-height: 550px;
    }

    .about-feature-card:nth-child(1),
    .about-feature-card:nth-child(2),
    .about-feature-card:nth-child(3),
    .about-feature-card:nth-child(4),
    .about-feature-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    .about-feature-tag {
        font-size: 1.125rem;
    }

    .about-feature-stat {
        font-size: 4rem;
    }

    .about-feature-title {
        font-size: 1.5rem;
    }

    .about-feature-description {
        font-size: 0.9375rem;
    }

    .about-feature-icon-top svg {
        width: 36px;
        height: 36px;
    }

    .about-feature-icon-bottom svg {
        width: 64px;
        height: 64px;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-main-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }

    .services-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        min-height: 200px;
        padding: 28px 24px;
    }

    .service-card-header {
        margin-bottom: 36px;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-image-box {
        height: 350px;
        order: -1;
    }

    .cta-image {
        width: 100%;
        height: 100%;
    }

    /* Testimonials */
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
        padding: 40px 28px;
        min-height: 320px;
    }

    .testimonial-text {
        font-size: 1.125rem;
        line-height: 1.4;
        padding-top: 40px;
    }

    .testimonial-icon {
        top: 24px;
        right: 24px;
        width: 32px;
        height: 32px;
    }

    .testimonial-footer {
        margin-top: 32px;
    }

    .testimonial-author {
        font-size: 1.125rem;
    }

    .testimonial-role {
        font-size: 0.875rem;
    }

    .testimonial-stars {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    /* Final CTA */
    .final-cta {
        padding: 60px 0;
    }

    .final-cta .container {
        padding: 40px 24px;
        border-radius: 0;
    }

    .final-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .final-cta-content .section-title {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-map {
        height: 350px;
    }

    .footer-info h3 {
        font-size: 2rem;
    }

    .footer-info-sections {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-location-info,
    .footer-contact-info {
        margin-top: 0;
    }

    .footer-bottom-content {
        text-align: center;
    }

    /* Contact Page Mobile */
    .contact-grid {
        display: block;
    }

    .contact-content {
        padding: 0;
        /* Remove vertical padding from section */
    }

    /* Remove specific side padding from container inside contact page to allow full width */
    .contact-content .container {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 40px 24px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 0;
        margin-bottom: 0;
        box-shadow: none;
        /* Optional: Cleaner look for edge-to-edge */
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        /* Separator */
    }

    .contact-info-card {
        background: var(--white);
        margin-bottom: 0;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .about-main-title {
        font-size: 1.5rem;
    }

    .about-feature-card {
        padding: 24px;
    }

    .about-feature-stat {
        font-size: 3.5rem;
    }

    .about-feature-title {
        font-size: 1.25rem;
    }

    .hero-form-card {
        padding: 20px;
    }

    .form-card-title {
        font-size: 1.5rem;
    }

    .testimonial-card {
        min-width: 280px;
    }

    .final-cta-content .section-title {
        font-size: 2rem;
    }

    /* Contact Page Small Mobile */
    .contact-info-card,
    .contact-form-card {
        padding: 24px 20px;
    }

    .page-title {
        font-size: 2rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   COOKIE POPUP
   =================================== */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 400px;
    background: rgba(10, 0, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-popup.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    background: rgba(120, 59, 250, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(3144%) hue-rotate(251deg) brightness(99%) contrast(98%);
}

.cookie-text h3 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-cookie-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cookie-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-cookie-accept {
    background: var(--purple);
    border: none;
    color: var(--white);
    padding: 12px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cookie-accept:hover {
    background: #5B2BC9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(120, 59, 250, 0.3);
}

@media (max-width: 480px) {
    .cookie-popup {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        padding: 24px;
    }

    .cookie-buttons {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PAGE LOADER
   =================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-purple);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 64px;
    height: 64px;
    z-index: 2;
    position: relative;
    animation: loaderLogo 2s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(255, 174, 0, 0.5));
}

.loader-pulse {
    display: none;
}

.loader-logo-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    z-index: 1;
    opacity: 0.6;
    animation: ghostRipple 2s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes loaderLogo {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 174, 0, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(255, 174, 0, 0.8));
    }
}

@keyframes ghostRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* ===================================
   COMPACT HERO FORM (NEW DESIGN)
   =================================== */
.hero-form-card.compact-form {
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-top: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Tabs */
.form-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    background: #00130d;
    /* Dark Green bg */
    padding: 6px;
    border-radius: 8px;
}

.form-tab {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.form-tab:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.form-tab.active {
    background: var(--yellow);
    color: var(--dark-purple);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Compact Inputs */
.form-group.compact {
    margin-bottom: 12px;
}

.form-row.compact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Default 2 columns */
    gap: 12px;
    margin-bottom: 12px;
}

/* Nested Grid for perfect alignment inside columns */
.nested-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-label-sm {
    display: block;
    font-size: 0.75rem;
    color: var(--dark-purple);
    margin-bottom: 6px;
    font-weight: 600;
}

.form-input-sm {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.9rem;
    background: #F3F4F6;
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--dark-purple);
    transition: all 0.2s ease;
    height: 42px;
    /* Fixed height for consistency */
}

.form-input-sm:focus {
    background: var(--white);
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(1, 140, 95, 0.1);
}

/* Input Icons */
.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-right: 32px;
}

.input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    pointer-events: none;
    width: 18px;
    height: 18px;
}

/* Hide default browser icons for date and time inputs */
.form-input-sm[type="date"]::-webkit-calendar-picker-indicator,
.form-input-sm[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.form-input-sm[type="date"]::-webkit-inner-spin-button,
.form-input-sm[type="time"]::-webkit-inner-spin-button {
    display: none;
}

.form-input-sm[type="date"]::-webkit-clear-button,
.form-input-sm[type="time"]::-webkit-clear-button {
    display: none;
}

/* Custom Dropdown Styling for Compact Form */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown-selected {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.9rem;
    background: #F3F4F6;
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--dark-purple);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    height: 42px;
    /* Fixed height matching inputs */
}

.custom-dropdown-selected:hover {
    background-color: var(--white);
    border-color: var(--purple);
}

.custom-dropdown.active .custom-dropdown-selected {
    background-color: var(--white);
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(1, 140, 95, 0.1);
}

.custom-dropdown-arrow {
    font-size: 0.7rem;
    color: var(--gray);
    transition: transform 0.3s ease;
}

.custom-dropdown.active .custom-dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid #E5E5E7;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
}

.custom-dropdown.active .custom-dropdown-options {
    max-height: 250px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
}

.custom-dropdown-option {
    padding: 10px 12px;
    font-size: 0.9rem;
    color: var(--dark-purple);
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-dropdown-option:hover {
    background-color: #F5F3FF;
    color: var(--purple);
}

/* Scrollbar for dropdown */
.custom-dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.custom-dropdown-options::-webkit-scrollbar-track {
    background: #F5F5F7;
    border-radius: 4px;
}

.custom-dropdown-options::-webkit-scrollbar-thumb {
    background: #DDDDDD;
    border-radius: 4px;
}

.custom-dropdown-options::-webkit-scrollbar-thumb:hover {
    background: var(--purple);
}

/* Buttons */
.btn-sm {
    padding: 14px;
    font-size: 1rem;
    background: var(--purple);
    width: 100%;
    margin-top: 8px;
}

.btn-sm:hover {
    background: #017a53;
    /* Darker Green */
}

.btn-more-options {
    background: rgba(255, 174, 0, 0.15);
    color: #b37b00;
    /* Darker yellow for text */
    font-size: 0.75rem;
    padding: 0 12px;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 42px;
    /* Match input height */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-more-options:hover {
    background: var(--yellow);
    color: var(--dark-purple);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .form-row.compact-row:last-of-type {
        grid-template-columns: 1fr 1fr;
    }

    .btn-more-options {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 4px;
    }

    .nested-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===================================
   FLEET SECTION
   =================================== */
.fleet {
    padding: 100px 0;
    background-color: #FBFAFB;
}

.fleet-header {
    margin-bottom: 40px;
}

.fleet-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.fleet-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.fleet-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--dark-purple);
    margin-bottom: 20px;
    max-width: 800px;
}

.fleet-description {
    font-size: 1.3rem;
    line-height: 1.1;
    color: var(--dark-purple);
    max-width: 600px;
    opacity: 0.9;
}

.fleet-tabs-container {
    background: #000000;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: space-between;
    align-items: center;
}

.fleet-tab {
    background: transparent;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.fleet-tab:hover {
    color: var(--yellow);
}

.fleet-tab.active {
    background: var(--yellow);
    color: #000000;
    font-weight: 600;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fleet-card {
    border-radius: 20px;
    padding: 24px;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fleet-card.green {
    background: var(--purple);
    color: var(--white);
}

.fleet-card.black {
    background: #000000;
    color: var(--white);
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-card-content {
    text-align: right;
    width: 100%;
    z-index: 2;
}

.fleet-card-title {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.fleet-card-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

.fleet-card-image-wrapper {
    position: absolute;
    bottom: 0px;
    left: -20px;
    width: 100%;
    height: auto;
    z-index: 1;
}

.fleet-card-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.fleet-book-btn {
    background: var(--white);
    color: #000000;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 2;
    transition: all 0.3s ease;
}

.fleet-book-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .fleet-tabs-container {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 8px;
    }

    .fleet-tab {
        flex: 0 0 auto;
        padding: 10px 16px;
    }

    .fleet-title {
        font-size: 2rem;
    }
}