:root {
    --background: 0 0% 100%;
    --foreground: 222 47% 11%;

    --primary: 215 100% 35%;
    --primary-foreground: 210 40% 98%;

    --secondary: 35 95% 55%;
    --secondary-foreground: 222 47% 11%;

    --muted: 210 40% 96%;
    --muted-foreground: 215 16% 47%;

    --border: 214 32% 91%;
    --radius: 0.5rem;

    /* Extra shared colors */
    --success: #22c55e;
    --success-hover: #16a34a;
}

/* ================= GLOBAL ================= */

body {
    background: hsl(var(--background));
    color: hsl(var(--foreground));
}

/* Shared hover transition */
.btn-primary,
.btn-whatsapp,
.arya-btn-primary,
.arya-btn-support,
.market-card,
.business-card {
    transition: all 0.3s ease;
}

/* ================= NAVBAR ================= */

.navbar {
    background: #fff;
    border-bottom: 1px solid hsl(var(--border));
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: hsl(var(--primary));
}

.navbar-brand span {
    color: hsl(var(--secondary));
}

.nav-link {
    color: hsl(var(--foreground));
    font-weight: 500;
}

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

/* Navbar spacing cleanup */
.arya-nav-links .nav-item {
    padding-right: 20px;
}

@media (max-width: 991px) {

    .arya-nav-links .nav-item {
        padding-right: 0;
        padding-bottom: 8px;
    }

    .arya-auth {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .arya-auth .btn {
        width: 100%;
    }
}


/* ================= BUTTONS ================= */

.btn-primary,
.arya-btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
}

.btn-primary:hover {
    background: hsl(var(--secondary));
    border-color: hsl(var(--secondary));
    color: #000;
}

.arya-btn-primary:hover {
    background: hsl(var(--primary) / 0.9);
}

.btn-whatsapp,
.arya-btn-support {
    background: var(--success);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
}

.btn-whatsapp:hover,
.arya-btn-support:hover {
    background: var(--success-hover);
    color: #fff;
}

/* ================= FOOTER ================= */

footer {
    background: linear-gradient(180deg, #0b132b, #020617);
    color: #cbd5e1;
}

footer h6 {
    color: #fff;
    font-weight: 600;
}

footer a,
.social-icons a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
}

footer a:hover,
.social-icons a:hover {
    color: #fff;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a {
    font-size: 1.2rem;
    margin-left: 12px;
}

/* ================= HERO ================= */

.hero-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff, #f8fafc);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff4e6;
    color: black;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #ffe0b2;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
}

.hero-title span {
    color: hsl(var(--primary));
}

.hero-description {
    color: hsl(var(--muted-foreground));
    font-size: 1.05rem;
    max-width: 520px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: 1.25rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    max-width: 100%;
}
.seller-image{
    height: 30px;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--success);
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}




/* ================= MARKET ================= */

.market-section {
    padding: 4rem 1.5rem;
}

.market-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.market-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.market-header p {
    color: hsl(var(--muted-foreground));
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: auto;
}

.market-card {
    position: relative;
    height: 360px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.market-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.25),
            transparent);
}

.market-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.card-label {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    font-weight: 600;
    color: hsl(var(--primary-foreground));
}

/* ================= WHY ARYA ================= */

.why-arya-section {
    padding: 5rem 1.5rem;
}

.why-arya-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-arya-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.why-arya-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.why-arya-list {
    list-style: none;
    padding: 0;
}

.why-arya-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.why-arya-list .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: hsl(var(--primary) / 0.12);
    color: hsl(var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.why-arya-list p {
    font-size: 0.95rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* ================= BUSINESS ================= */

.business-section {
    padding: 5rem 1.5rem;
    background: hsl(var(--primary));
    color:black;
}

.business-wrapper {
    max-width: 1200px;
    margin: auto;
}

.business-wrapper h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.business-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(4px);
}

.business-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.14);
}

.business-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    color: hsl(var(--primary-foreground));
}

.business-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 0.6rem;
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

/* ================= CTA ================= */

.arya-cta-title {
    color: hsl(var(--foreground));
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
}

.arya-cta-subtitle {
    color: hsl(var(--muted-foreground));
    font-size: 1.05rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
    .market-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
    .business-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .why-arya-wrapper { grid-template-columns: 1fr; }
    .why-arya-image { order: -1; }
}

@media (max-width: 768px) {
    .market-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .business-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .market-grid { grid-template-columns: 1fr; }
}
