/* @import url('https://fonts.googleapis.com/css2?family=Exile&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=BBH+Hegarty&display=swap');


.bbh-hegarty-regular {
    font-family: "BBH Hegarty", sans-serif;
    font-weight: 400;
    font-style: normal;
}


/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes countUp {
    from {
        opacity: 0.7;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color-main: #FF6647;
    --primary-color: #405FAB;
    --secondary-color: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --success: #06a77d;
    --info: #0066cc;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

svg {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    stroke-linecap: round;
    stroke-linejoin: round;
}

svg:hover {
    filter: drop-shadow(0 4px 12px rgba(255, 153, 0, 0.3));
}

/* ===== CONTAINER ===== */
.container-full {
    max-width: 1400px;
    display: grid;
    margin: 0 auto;
    padding: 16px 16px;

    flex-direction: column;
}

/* ===== HEADER & NAVIGATION ===== */
.main-header-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-header-nav.scroll-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.main-header-nav.scroll-visible {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;

}

.header-top-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.location-section {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.location-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    animation: bounce 2s ease-in-out infinite;
}

.location-icon:hover {
    animation: pulse 0.6s ease-in-out;
}

.location-dropdown {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    padding: 4px 8px;
}

.location-dropdown:focus {
    outline: 2px solid var(--primary-color);
    border-radius: 4px;
}

.toggle-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7700 100%);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;

}

.toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.5);
    background: linear-gradient(135deg, #ff8800 0%, #ff6600 100%);
}

.toggle-btn:active {
    transform: translateY(-1px);
}

.toggle-btn svg {
    width: 18px;
    height: 18px;
    animation: slideInDown 0.6s ease-out;
    stroke: white;
}

.toggle-btn:hover svg {
    animation: rotate 0.6s ease-in-out;
}

/* ===== HAMBURGER MENU ===== */
.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 200;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hamburger-menu.active .line-1 {
    transform: rotate(45deg) translateY(12px);
}

.hamburger-menu.active .line-2 {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu.active .line-3 {
    transform: rotate(-45deg) translateY(-12px);
}

.toggle-btn-desktop {
    display: none;
}

/* ===== HEADER LOGO & NAV ===== */
.header-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #80808070;
    padding: 1px 13px;
    gap: 16px;
}

.header-logo-link {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.header-logo-link:hover {
    transform: scale(1.05);
}

.logo {
    color: var(--primary-color);
    /* text-shadow: 2px 2px 0px var(--text-dark); */
    font-family: "BBH Hegarty", sans-serif;
    font-weight: 200;
    font-style: normal;
    margin: 8px;
}

.tagline {
    font-size: 0.85em;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 8px;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    gap: 24px;
    width: auto;
    justify-content: flex-end;
    transition: all 0.3s ease;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== HERO & BANNER ===== */
.hero-banner {
    position: relative;
    overflow: hidden;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 45px;
    min-height: 68vh;
    height: auto;
    border: none;
    outline: none;
    background:
        linear-gradient(to bottom right, #FF6647 0%, rgba(255, 102, 71, 0) 70%),
        linear-gradient(to bottom left, #405FAB 0%, rgba(64, 95, 171, 0) 70%);
}

/* ===== HERO CONTENT LAYOUT ===== */
.hero-inner {
    width: min(1200px, 92vw);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 32px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.hero-kicker {
    font-size: 0.95em;
    letter-spacing: 0.08em;
    /* text-transform: uppercase; */
    color: #ffffff;
    font-weight: 600;
}

.hero-title {
    margin-bottom: -15px;
    font-size: clamp(2.4rem, 3.8vw, 4rem);
    color: var(--white);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 2.05;
    /* padding-top: 0px; */
}


.auroo-right-img {
    height: auto;
    width: 50vw;
    border-radius: 25px;
}

.hero-subtitle {
    font-size: 1.1em;
    color: var(--text-light);
    max-width: 520px;
}

.hero-highlight {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff7e8;
    color: #b36100;
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: 0 8px 16px rgba(255, 153, 0, 0.15);
}

.hero-features {
    display: grid;
    gap: 14px;
}

.hero-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.hero-feature h3 {
    font-size: 1em;
    margin-bottom: 4px;
}

.hero-feature p {
    color: var(--text-light);
    font-size: 0.92em;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.12);
    color: #2e7d32;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-btn {
    display: inline-block;
    padding: 10px 37px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    background: #ffffff;
    border-radius: 13px;
    text-decoration: none;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.hero-btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 153, 0, 0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
}

.hero-btn-secondary {
    background: #fff;
    color: var(--text-dark);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.hero-btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-btn-ghost {
    background: transparent;
    color: var(--text-dark);
    border-color: rgba(0, 0, 0, 0.15);
}

.hero-btn-ghost:hover {
    transform: translateY(-2px);
}

.hero-links {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95em;
}

.city-link {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-right {
    display: flex;
    justify-content: center;
}

.sitemap-card {
    width: min(520px, 92vw);
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sitemap-title {
    font-size: 1.05em;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sitemap-subtitle {
    color: var(--text-light);
    font-size: 0.95em;
    margin-bottom: 18px;
}

.sitemap-tree {
    display: grid;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.06), rgba(76, 175, 80, 0.06));
    border-radius: 18px;
    padding: 16px;
}

.tree-diagram {
    display: grid;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.06), rgba(76, 175, 80, 0.06));
    border-radius: 18px;
    padding: 18px;
}

.tree-node {
    font-weight: 700;
    color: var(--text-dark);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 8px 12px;
    border-radius: 10px;
    width: fit-content;
    position: relative;
}

.tree-root {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 18px rgba(255, 153, 0, 0.25);
}

.tree-branch {
    position: relative;
    margin-left: 18px;
    padding-left: 16px;
    border-left: 2px dashed rgba(0, 0, 0, 0.12);
    display: grid;
    gap: 8px;
}

.tree-branch::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 18px;
    width: 16px;
    height: 2px;
    background: rgba(0, 0, 0, 0.12);
}

.tree-leaf {
    margin-left: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.85em;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
    width: fit-content;
    position: relative;
}

.tree-leaf::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    width: 14px;
    height: 2px;
    background: rgba(0, 0, 0, 0.12);
    transform: translateY(-50%);
}

.tree-leaf a {
    color: #b36100;
    font-weight: 700;
}

.sitemap-note {
    margin-top: 14px;
    color: var(--text-light);
    font-size: 0.95em;
}

/* ===== SLIDESHOW STYLES ===== */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}




.slide {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 64vh;
    object-fit: contain;
    animation: fadeInUp 0.8s ease;
    display: block;
}

.slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.fade {
    animation: fadeInUp 0.8s ease-in-out;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-content {
    text-align: center;
    animation: slideInLeft 0.8s ease;
}

.slider-content h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.slider-content p {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 24px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.slider-prev {
    top: 47%;
    left: 20px;
}

.slider-next {
    top: 47%;
    right: 20px;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    top: 67%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 60px 0;
}

.about-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 700;
}

.about-section p {
    font-size: 1.1em;
    text-align: center;
    width: 61%;
    margin: auto;
    margin-bottom: 48px;
    /* color: var(--primary-color); */
    /* font-weight: 700; */
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.about-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.about-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: 12px;
    margin: 0 auto 16px;
    border: 2px solid rgba(255, 153, 0, 0.2);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out backwards;
}

.about-card:hover .icon {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.15), rgba(76, 175, 80, 0.15));
    border-color: rgba(255, 153, 0, 0.4);
    transform: scale(1.1);
}

.about-card:nth-child(1) .icon {
    animation-delay: 0.1s;
}

.about-card:nth-child(2) .icon {
    animation-delay: 0.2s;
}

.about-card:nth-child(3) .icon {
    animation-delay: 0.3s;
}

.about-card .icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    stroke-width: 2.5;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.about-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 60px 0;
}

.how-it-works h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.how-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 10px 24px;
    background: var(--secondary-color);
    border: 2px solid transparent;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.tab-button svg {
    width: 18px;
    height: 18px;
    color: var(--text-dark);
    animation: slideInDown 0.6s ease-out backwards;
}

.tab-button.active {
    background: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.tab-button:hover {
    border-color: var(--primary-color);
}

.tab-button:hover svg {
    color: var(--primary-color);
    transform: scale(1.15);
}

.tab-button.active svg {
    color: var(--text-dark);
}

.tab-content {
    display: none;
}

.tab-content.active {
    /* display: block; */
    display: flex;
    gap: 25px;
    justify-content: space-evenly;
    animation: fadeInUp 0.5s ease;
}

.steps-grid {
    display: contents;

}

.step-card {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.05), rgba(76, 175, 80, 0.05));
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    animation: slideInRight 0.6s ease forwards;
    opacity: 0;
}

.step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) {
    animation-delay: 0.3s;
}

.step-card:nth-child(4) {
    animation-delay: 0.4s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #ff7700);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.3em;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== WHY AUROO ===== */
.why-auroo {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 153, 0, 0.05) 100%);
}

.why-auroo h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-color);
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.benefit-item:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-item:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-item:nth-child(6) {
    animation-delay: 0.6s;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #ff7700);
    border-radius: 10px;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-item:hover .benefit-number {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 153, 0, 0.3);
}

.benefit-number svg {
    color: var(--white);
    stroke-width: 2.5;
    width: 24px;
    height: 24px;
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 60px 0;
}

.features-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
}

.stats-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    animation: scaleIn 0.6s ease forwards;
    opacity: 0;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1em;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== SELLER FOCUS SECTION ===== */
.seller-focus-section {
    padding: 60px 0;
    background-color: #f8ffff;
}

.seller-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.seller-text-content h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.seller-text-content p {
    font-size: 1.05em;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.seller-benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.seller-benefits-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.6;
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
}

.seller-benefits-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.seller-benefits-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.seller-benefits-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.seller-benefits-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.seller-benefits-list li:nth-child(5) {
    animation-delay: 0.5s;
}

.seller-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3em;
}

.seller-benefits-list strong {
    color: var(--primary-color);
}

.seller-image {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seller-image svg {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    animation: slideInRight 0.8s ease;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-btn {
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: middle;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
    animation: slideInUp 0.8s ease-out backwards;
}

.cta-btn:hover svg {
    transform: scale(1.2) rotate(5deg);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 153, 0, 0.05) 100%);
}

.testimonials-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(255, 153, 0, 0.15);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff7700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.testimonial-avatar svg {
    width: 30px;
    height: 30px;
}

.testimonial-info h4 {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 3px;
    font-weight: 600;
}

.testimonial-info p {
    font-size: 0.85em;
    color: var(--text-light);
}

.star-rating {
    font-size: 1.1em;
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-stat {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(76, 175, 80, 0.1));
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

/* ===== CONNECT SECTION ===== */
.mobile-app-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
    overflow: visible;
}

.mobile-app-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.mobile-app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-app-text {
    width: 100%;
    text-align: center;
}

.mobile-app-text p {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 40px;
}

.social-connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    width: 100%;
}

.social-connect-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.social-connect-card:nth-child(1) {
    animation-delay: 0.1s;
}

.social-connect-card:nth-child(2) {
    animation-delay: 0.2s;
}

.social-connect-card:nth-child(3) {
    animation-delay: 0.3s;
}

.social-connect-card:nth-child(4) {
    animation-delay: 0.4s;
}

.social-connect-card:nth-child(5) {
    animation-delay: 0.5s;
}

.social-connect-card:nth-child(6) {
    animation-delay: 0.6s;
}

.social-connect-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.15);
}

.social-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.social-connect-card h4 {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.social-connect-card p {
    font-size: 0.9em;
    color: var(--text-light);
    margin: 0;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 153, 0, 0.05) 100%);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.newsletter-btn {
    padding: 12px 32px;
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    vertical-align: middle;
    min-width: fit-content;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.newsletter-note {
    font-size: 0.85em;
    color: var(--text-light);
    margin-top: 12px;
}

/* ===== PARTNERSHIP SECTION ===== */
.partnership-section {
    padding: 60px 0;
}

.partnership-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 48px;
}

.partnership-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    animation: slideInRight 0.6s ease forwards;
    opacity: 0;
}

.partnership-card:nth-child(1) {
    animation-delay: 0.1s;
}

.partnership-card:nth-child(2) {
    animation-delay: 0.2s;
}

.partnership-card:nth-child(3) {
    animation-delay: 0.3s;
}

.partnership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partnership-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.partnership-card h3 {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.partnership-card p {
    font-size: 0.95em;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more-btn {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    transform: translateX(4px);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #f9f9f9;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.faq-item:nth-child(1) {
    animation-delay: 0.05s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.15s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.25s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: #f9f9f9;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05em;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

.faq-question.active {
    background: var(--primary-color);
    color: white;
}

.faq-question.active svg {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 24px;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95em;
}

/* ===== PRE-REGISTRATION CTA ===== */
.pre-registration-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    text-align: center;
}

.pre-registration-cta .container-full {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pre-registration-cta h3 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.pre-registration-cta p {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 30px;
}

.seller-cta {
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 12px 40px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    vertical-align: middle;
}

.seller-cta-large-second {
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%) scale(0.98);
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.95), rgba(255, 198, 0, 0.9));
    color: #1b1b1b;
    border: 1px solid rgba(255, 153, 0, 0.5);
    min-width: 250px;
    z-index: 20;
    padding: 15px 40px !important;
    font-size: 1.1em !important;
    display: inline-block;
    box-shadow: 0 18px 30px rgba(255, 153, 0, 0.25), 0 6px 16px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.slide.active .seller-cta-large-second {
    opacity: 1;
    transform: translate(-50%, 24vh) scale(1);
}

.seller-cta:hover {
    background: #ff8800;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 34px rgba(255, 153, 0, 0.32), 0 8px 20px rgba(0, 0, 0, 0.12);
}

.seller-cta:focus-visible {
    outline: 3px solid rgba(27, 27, 27, 0.8);
    outline-offset: 3px;
}

/* ===== SELLER REGISTRATION ===== */
.seller-registration {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.05), rgba(76, 175, 80, 0.05));
}

.seller-registration h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.registration-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 48px;
}

.registration-container {
    display: grid;
}

.registration-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ===== REGISTRATION PAGE STYLES ===== */
.registration-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    color: white;
}

.registration-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/32744300_2204.q702.043.F.m005.c7.delivery%20design%20concept.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.15;
    z-index: 1;
    animation: floatBackground 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.registration-hero h1 {
    font-size: 2.8em;
    color: white;
    margin-bottom: 12px;
    font-weight: 800;
    animation: slideInDown 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.3em;
    color: rgba(27, 27, 27, 0.95);
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInScale 0.8s ease-out 0.6s both;
}

.hero-stat {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.stat-value {
    font-size: 2em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95em;
    color: var(--text-light);
    font-weight: 600;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatBackground {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Registration Wrapper for Form + Benefits */
.registration-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.registration-container {
    grid-column: 1;
}

.registration-benefits {
    grid-column: 2;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.08) 0%, rgba(76, 175, 80, 0.08) 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.registration-benefits h3 {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    margin-bottom: 25px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.benefits-list svg {
    color: var(--success);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.benefit-highlight {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    display: flex;
    gap: 15px;
}

.highlight-icon {
    font-size: 2.5em;
    line-height: 1;
}

.highlight-text strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 0.9em;
    color: var(--text-light);
    margin: 0;
}

/* Form Enhancements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.required {
    color: #e74c3c;
}

.form-section {
    margin-bottom: 30px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-icon {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    animation: slideInDown 0.6s ease-out backwards;
}

.form-section:nth-child(1) .section-icon {
    animation-delay: 0.1s;
}

.form-section:nth-child(2) .section-icon {
    animation-delay: 0.2s;
}

.form-section:nth-child(3) .section-icon {
    animation-delay: 0.3s;
}

.form-section:hover .section-icon {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 2px 6px rgba(255, 153, 0, 0.3));
}

.form-group {
    margin-bottom: 16px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.form-submit {
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* ===== REGISTRATION TESTIMONIALS ===== */
.registration-testimonials {
    background: var(--secondary-color);
    padding: 60px 0;
    margin: 60px 0;
}

.registration-testimonials h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.15);
}

.testimonial-quote {
    font-size: 1.05em;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95em;
}

/* ===== REGISTRATION FAQ ===== */
.registration-faq {
    padding: 60px 0;
}

.registration-faq h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1em;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 153, 0, 0.05);
    color: var(--primary-color);
}

.faq-question svg {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 153, 0, 0.03);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== REGISTRATION CTA ===== */
.registration-cta {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.2) 0%, rgba(76, 175, 80, 0.2) 100%);
    padding: 60px 0;
    text-align: center;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.registration-cta h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.registration-cta p {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 30px;
}

.seller-cta-large {
    padding: 15px 40px !important;
    font-size: 1.1em !important;
    display: inline-block;
}

/* ===== SUCCESS MODAL ===== */
.modal {

    width: 98vw;
    height: 98vh;
    background-color: rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideInDown 0.3s ease;
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: var(--text-dark);
}

.success-icon {
    font-size: 60px;
    margin: 20px 0;
    animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon svg {
    color: var(--success);
    width: 60px;
    height: 60px;
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--success);
}

.modal-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.confirmation-steps {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: left;
}

.confirmation-steps .step {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.confirmation-steps .step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.confirmation-steps .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.confirmation-steps .step-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 14px;
}

.confirmation-steps .step-text p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.confirmation-note {
    background: #fff9e6;
    padding: 12px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    font-size: 13px;
    margin: 10px 0;
}

.modal-btn {
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.2s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 48px 0 24px;
    margin-top: 80px;
}

footer .container-full {
    flex-direction: row;
    flex-wrap: wrap;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 1.1em;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.9em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link-item:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== ACCESSIBILITY ===== */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 999;
    border-radius: 0 0 6px 0;
}

.skip-to-main:focus {
    top: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 1023px) {
    .toggle-btn-desktop {
        display: flex;
    }

    .hamburger-menu {
        display: none;
    }

    #toggle-mode {
        display: none;
    }
}

@media (max-width: 1024px) {
    .header-bottom-row {
        gap: 12px;
        padding: 12px 16px;
    }

    .header-nav {
        gap: 16px;
    }

    .nav-link {
        font-size: 13px;
        padding: 6px 10px;
    }

    .toggle-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .toggle-btn-desktop {
        display: none;
    }

    .registration-container {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-subtitle {
        margin: 0 auto;
    }

    .hero-highlight {
        justify-content: center;
    }

    .hero-features {
        width: min(560px, 100%);
    }

    .hero-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-top-row {
        padding: 10px 16px;
    }

    .header-bottom-row {
        padding: 10px 16px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .logo {
        font-size: 1em;
    }

    .location-dropdown {
        font-size: 13px;
        padding: 4px 6px;
    }

    .toggle-btn {
        padding: 6px 12px;
        font-size: 12px;
        order: 2;
    }

    .hero-banner {
        padding: 16px 0 32px;
        min-height: auto;
    }

    .sitemap-card {
        padding: 18px;
    }

    .tree-diagram {
        padding: 14px;
    }

    .tree-leaf {
        font-size: 0.82em;
        padding: 6px 10px;
    }

    .hero-feature {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .header-logo-link {
        order: 1;
        flex: 0 0 auto;
    }

    .header-nav {
        position: absolute;
        top: 43px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        border-bottom: 1px solid var(--border-color);
        padding: 1px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        order: 3;
        width: 100%;
        z-index: 99;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .header-nav.active {
        top: 43px;
        max-height: 500px;
    }

    .nav-link {
        padding: 12px 8px;
        font-size: 14px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero-banner {
        min-height: auto;
        padding: 12px 0 8px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        width: 300px;
        max-width: wid;
        margin: 0 auto;
        animation: fadeInScale 0.8s ease-out 0.6s both;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-prev {
        top: 27%;
        left: 12px;
    }

    .slider-next {
        top: 27%;
        right: 12px;
    }

    .slider-controls {
        position: absolute;
        /* bottom: 20px; */
        left: 50%;
        top: 100vw;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
    }

    .slide.active {
        flex-direction: column;
        gap: 12px;
    }

    .slide img {
        width: 100%;
        max-height: 52vh;
        object-fit: cover;
        border-radius: 10px;
    }

    .slideshow-container {
        padding: 0 12px;
    }


    .about-section p {
        font-size: 0.85em;
        text-align: center;
        width: 102%;
        margin: auto;
        margin-bottom: 48px;
        /* color: var(--primary-color); */
        /* font-weight: 700; */
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .seller-cta-large-second {
        position: static;
        transform: none;
        opacity: 1;
        margin: 16px auto 0;
        min-width: 0;
        width: min(90%, 320px);
        display: inline-flex;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-input {
        width: 100%;
        max-width: 300px;
    }

    .newsletter-btn {
        width: 100%;
        max-width: 300px;
    }

    .seller-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .seller-image {
        min-height: 250px;
    }

    .tab-content.active {
        flex-direction: column;
    }

}

@media (max-width: 480px) {
    .header-top-row {
        padding: 8px 12px;
        gap: 8px;
    }

    .header-bottom-row {
        padding: 8px 12px;
        gap: 6px;
    }

    .logo {
        font-size: 0.9em;
    }

    .location-dropdown {
        font-size: 12px;
        padding: 3px 6px;
    }

    .toggle-btn {
        padding: 5px 10px;
        font-size: 11px;
        gap: 4px;
    }

    .hamburger-line {
        width: 20px;
    }

    .about-grid,
    .steps-grid,
    .benefits-grid,
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }

    .slider-content h1 {
        font-size: 1.8em;
    }

    .slider-content p {
        font-size: 1em;
    }

    .hero-banner {
        padding: 8px 0 6px;
        justify-content: center;
    }

    .auroo-right-img {
    height: auto;
    width: 87vw;
    border-radius: 25px;
}

    .slide img {
        max-height: 48vh;
    }

    .slide.active .seller-cta-large-second {
        opacity: 1;
        transform: translate(0%, 0%) scale(1);
    }

    /* Registration Page Mobile */
    .registration-hero h1 {
        font-size: 2em;
    }

    .registration-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .registration-container {
        grid-column: 1;
    }

    .registration-benefits {
        grid-column: 1;
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .registration-form {
        padding: 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.about-hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #eaf7f1;
}

/* Background SVG */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: floatIn 1.2s ease-out forwards;
}

/* Dark overlay for text readability */
.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.35));
    z-index: 1;
}

/* Text overlay */
.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    padding: 0 20px;
    color: #fff;
    animation: fadeUp 1s ease forwards;
}

.hero-overlay h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-overlay p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 32px;
}

/* CTA Button */
.hero-btn {
    display: inline-block;
    padding: 10px 37px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    background: #ffffff;
    border-radius: 13px;
    text-decoration: none;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}


.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
    }

    .hero-overlay p {
        font-size: 1.05rem;
    }

    .slide.active .seller-cta-large-second {
        opacity: 1;
        transform: translate(0%, 0%) scale(1);
    }
}


.form-group {
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.required {
    color: #405FAB;
}

select {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 2px solid #405FAB;
    border-radius: 8px;
    background-color: #ffffff;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover Effect */
select:hover {
    border-color: #4CAF50;
}

/* Focus Effect */
select:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Dropdown option styling */
select option {
    padding: 10px;
}
