:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --neon-green: #39FF14;
    --neon-hover: #32d613;
    --text-white: #ffffff;
    --text-gray: #a1a1a1;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neon-text {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--neon-green);
}

.nav-cta {
    border: 2px solid var(--neon-green);
    padding: 8px 20px;
    color: var(--neon-green) !important;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--neon-green);
    color: black !important;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.line {
    width: 28px;
    height: 3px;
    background: white;
    margin: 5px;
    transition: 0.3s;
}

/* Hero Grid Section - Compact */
.hero-grid {
    min-height: 100vh;
    padding: 140px 20px 60px;

    background: linear-gradient(
            rgba(10, 10, 10, 0.75),
            rgba(10, 10, 10, 0.75)
        ),
        url('images/bg-hero.png');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}


.hero-header {
    text-align: center;
    margin-bottom: 35px;
}

.badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.badge {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    /* border: 2px solid var(--neon-green);
    background: var(--neon-green);
    color: black; */
    padding: 8px 18px;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 50px;
    letter-spacing: 1.5px;
}

.hero-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-header p {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Compact Thumbnail Grid - 2x2 */
.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 700px;
    margin: 0 auto 35px;
}

.thumbnail-card {
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.thumbnail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--neon-green);
    transform: scaleY(0);
    transition: 0.3s;
    transform-origin: bottom;
}

.thumbnail-card:hover::before {
    transform: scaleY(1);
}

.thumbnail-card:hover {
    transform: translateY(-3px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.15);
    background: #1a1a1a;
}

.card-icon {
    font-size: 2rem;
    color: var(--neon-green);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
    min-width: 0;
}

.thumbnail-card h2 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thumbnail-card p {
    color: var(--text-gray);
    font-size: 0.8rem;
    line-height: 1.3;
}

.card-arrow {
    font-size: 1rem;
    color: var(--neon-green);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    flex-shrink: 0;
}

.thumbnail-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Quick Contact Bar - Compact */
.quick-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-btn {
    /* background: rgba(57, 255, 20, 0.08); */
border: 2px solid var(--neon-green);
    
    background: var(--neon-green);
    color: black;
    /* color: var(--neon-green); */
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-btn:hover {
    background: var(--neon-green);
    color: black;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    transform: translateY(-2px);
}

.contact-btn i {
    font-size: 1.1rem;
}

/* Detail Pages */
.detail-page {
    display: none;
    min-height: 100vh;
    padding: 120px 20px 50px;
    background: var(--bg-dark);
    animation: fadeIn 0.4s ease;
}

.detail-page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-btn {
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    background: var(--neon-green);
    color: black;
    transform: translateX(-3px);
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Grid Cards (for What We Buy page) */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: var(--bg-card);
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--neon-green);
    transform: scaleY(0);
    transition: 0.3s;
    transform-origin: bottom;
}

.card:hover::before {
    transform: scaleY(1);
}

.card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.icon-box i {
    font-size: 2rem;
    color: var(--neon-green);
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Sell Content */
.sell-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.sell-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--neon-green);
}

.check-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list i {
    color: var(--neon-green);
    font-size: 1rem;
}

.info-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(57, 255, 20, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    margin-top: 30px;
}

.info-highlight i {
    font-size: 2rem;
    color: var(--neon-green);
}

.info-highlight strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 3px;
}

.info-highlight span {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Glass Form */
.glass-form {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-form h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--neon-green);
}

.input-box {
    position: relative;
    margin-bottom: 35px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: 0.3s;
    resize: none;
}

.input-box label {
    position: absolute;
    top: 15px;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: 0.3s;
    font-size: 1rem;
}

.input-box input:focus~label,
.input-box input:not(:placeholder-shown)~label,
.input-box textarea:focus~label,
.input-box textarea:not(:placeholder-shown)~label {
    top: -12px;
    font-size: 0.8rem;
    color: #39ff14;
}

.input-box input:focus,
.input-box textarea:focus {
    border-bottom: 2px solid #39ff14;
}

.btn-submit-glow {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: 2px solid #39ff14;
    background: transparent;
    color: #39ff14;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.btn-submit-glow:hover {
    background: #39ff14;
    color: #000;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.6);
    transform: translateY(-2px);
}

.form-success-message {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
    margin-top: 20px;
}

.form-success-message i {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}

/* Pickup Content
.detail-page {
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
}

.back-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    background: var(--neon-green);
    color: var(--dark-bg);
    border-color: var(--neon-green);
    transform: translateX(-5px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-green), #2ecc71);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.3);
}

.header-badge i {
    font-size: 2.5rem;
    color: var(--dark-bg);
}

.page-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.neon-text {
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Main Content Grid */
.pickup-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

/* Info Card */
.pickup-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.pickup-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-green), transparent);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--neon-green);
}

.pickup-info-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-white);
    font-weight: 700;
}

.description {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(57, 255, 20, 0.05);
    border-color: var(--neon-green);
    transform: translateY(-3px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--neon-green);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-white);
    font-weight: 600;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(57, 255, 20, 0);
    }
}

.cta-icon i {
    font-size: 1.8rem;
    color: var(--dark-bg);
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-white);
    font-weight: 700;
}

.cta-content>p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--neon-green);
    letter-spacing: 0.5px;
}

.btn-neon {
    background: var(--neon-green);
    color: var(--dark-bg);
}

.btn-neon:hover {
    background: transparent;
    color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 8px;
}

.availability {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.benefit-item i {
    font-size: 1.2rem;
    color: var(--neon-green);
}

.benefit-item span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .pickup-content {
        grid-template-columns: 1fr;
    }

    .page-header h2 {
        font-size: 2.5rem;
    }

    .pickup-info-card {
        padding: 35px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .detail-page {
        padding: 110px 15px 40px;
    }

    .back-btn {
        top: 15px;
        left: 15px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .page-header h2 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .pickup-info-card,
    .cta-card {
        padding: 25px;
    }

    .pickup-info-card h3 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
}

/* .pickup-content {
    max-width: 700px;
    margin: 0 auto;
}

.pickup-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--neon-green);
}

.pickup-info>p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    transition: 0.3s;
    display: inline-block;
}

.btn-neon {
    background: var(--neon-green);
    color: black;
    border: 2px solid var(--neon-green);
}

.btn-neon:hover {
    background: transparent;
    color: var(--neon-green);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.4);
    transform: translateY(-2px);
} */
.cta-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Clearing Content */
.clearing-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Make the WhatsApp icon inside buttons look beefy */
.btn-large-icon i {
    font-size: 1.4rem;
    /* Makes the icon noticeably bigger */
    margin-right: 10px;
    /* Gives it space from the text */
    vertical-align: middle;
    /* Keeps it centered with the text */
}

/* Optional: Add a slight pulse to the icon to make it 'pop' */
.btn-large-icon:hover i {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

.btn-neon {
    background: var(--neon-green);
    color: black;
    border: 2px solid var(--neon-green);
}

.btn-neon:hover {
    background: transparent;
    color: var(--neon-green);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.4);
    transform: translateY(-2px);
}

.clearing-info .intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-box {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(57, 255, 20, 0.15);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.15);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-box p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.clearing-info .cta-group {
    justify-content: center;
}

/* Footer */
footer {
    background: black;
    text-align: center;
    padding: 30px;
    color: #757575;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

footer a {
    text-decoration: underline;
    color: var(--neon-green);
}

/* WhatsApp Float */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #39FF14;
    color: rgb(0, 0, 0);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.4);
    transition: 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-grid {
        padding: 110px 15px 30px;
    }

    .hero-header h1 {
        font-size: 1.8rem;
    }

    .hero-header p {
        font-size: 0.9rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .thumbnail-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 400px;
    }

    .thumbnail-card {
        padding: 16px;
    }

    .card-icon {
        font-size: 1.6rem;
        width: 40px;
        height: 40px;
    }

    .thumbnail-card h2 {
        font-size: 0.85rem;
    }

    .thumbnail-card p {
        font-size: 0.75rem;
    }

    .quick-contact {
        flex-direction: column;
        gap: 10px;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .page-header h2 {
        font-size: 2rem;
    }

    .sell-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: black;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
    }

    .nav-links.active {
        right: 0;
    }

    .logo img {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .hero-header h1 {
        font-size: 1.5rem;
    }

    .glass-form {
        padding: 25px 18px;
    }

    .feature-box {
        padding: 25px 15px;
    }

    .detail-page {
        padding: 110px 15px 40px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(57, 255, 20, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(57, 255, 20, 0.5);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(57, 255, 20, 0.3) var(--bg-dark);
}
