/* Variable Definitions & Reset */
:root {
    --primary-blue: #0A1E3C;
    /* Divine Deep Blue */
    --accent-blue: #00D4FF;
    /* Bluebird Electric */
    --accent-red: #D80027;
    /* Canadian Red */
    --dark-bg: #050A10;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #FFFFFF;
    --text-muted: #A0AAB5;
    --font-heading: 'Russo One', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-blue);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-blue);
    transition: width 0.2s, height 0.2s;
}

/* Typography Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--accent-blue);
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(5, 10, 16, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-blue);
}

.btn-primary-sm {
    background: var(--accent-red);
    padding: 8px 20px;
    border-radius: 4px;
    color: white !important;
    opacity: 1 !important;
    border: 1px solid transparent;
}

.btn-primary-sm:hover {
    background: transparent;
    border-color: var(--accent-red);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    to {
        transform: scale(1);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 10, 16, 0.3) 0%, rgba(5, 10, 16, 0.8) 100%),
        linear-gradient(90deg, rgba(5, 10, 16, 0.8) 0%, rgba(5, 10, 16, 0) 60%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    margin-top: 60px;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary,
.btn-main {
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary,
.btn-main {
    background: var(--accent-blue);
    color: var(--primary-blue);
    border: 2px solid var(--accent-blue);
}

.btn-primary:hover,
.btn-main:hover {
    background: transparent;
    color: var(--accent-blue);
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-secondary:hover {
    border-color: white;
    background: white;
    color: var(--primary-blue);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--primary-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-blue);
}

.stat-symbol {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
}

/* Services */
.services {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.05);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(90deg, #07101a 0%, #050a10 100%);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 0px rgba(0, 212, 255, 0.1);
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent-red);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(216, 0, 39, 0.4);
}

.exp-badge .years {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
}

.exp-badge .text {
    font-size: 0.8rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li::before {
    content: '✓';
    color: var(--accent-blue);
    font-weight: bold;
}

.btn-text {
    color: var(--accent-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    display: inline-block;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Marquee */
.marquee-section {
    background: var(--accent-blue);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Careers */
.careers {
    position: relative;
    padding: 150px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 16, 0.85);
    z-index: -1;
}

.career-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
}

.career-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.career-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ddd;
}

/* Contact */
.contact {
    padding: 120px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--accent-blue);
}

.info-item h4 {
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 700;
}

.contact-form {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 4px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.btn-main {
    width: 100%;
}

/* Footer */
footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

/* Animations Classes */
.reveal-text,
.reveal-delay,
.reveal-delay-2,
.fadeIn,
.slideUp,
.reveal-left,
.reveal-right,
.fadeRight,
.fadeLeft {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.active.reveal-text,
.active.reveal-delay,
.active.reveal-delay-2,
.active.fadeIn,
.active.slideUp,
.active.fadeRight,
.active.fadeLeft {
    opacity: 1;
    transform: translateY(0);
}

.active.reveal-left {
    opacity: 1;
    transform: translateX(0);
}

.reveal-left {
    transform: translateX(-50px);
}

.active.reveal-right {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    transform: translateX(50px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-img {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Technology Section */
.technology {
    padding: 100px 0;
    background: var(--dark-bg);
}

.tech-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-img {
    position: relative;
}

.tech-img img {
    width: 100%;
    border-radius: 8px;
    opacity: 0.8;
}

.tracking-widget {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary-blue);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--accent-blue);
    width: 300px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.tracking-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.track-input-group {
    display: flex;
    gap: 10px;
}

.track-input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px;
    color: white;
    border-radius: 4px;
}

.track-input-group button {
    background: var(--accent-blue);
    border: none;
    color: var(--primary-blue);
    font-weight: bold;
    padding: 0 15px;
    border-radius: 4px;
    cursor: pointer;
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background: #070e15;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Team Section */
.team {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-content: center;
}

.team-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.team-role {
    font-size: 0.9rem;
    color: var(--accent-red);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-card h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-whatsapp {
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
}

.btn-whatsapp::before {
    content: '💬';
}

.btn-call {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
}

.btn-call:hover {
    background: white;
    color: var(--primary-blue);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--primary-blue) 0%, rgba(5, 10, 16, 1) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.testi-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.testi-card h4 {
    color: var(--accent-blue);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
}

.faq-item h4 {
    margin-bottom: 10px;
    color: white;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive updates for new sections */
@media (max-width: 768px) {
    .tech-layout {
        grid-template-columns: 1fr;
    }

    .tracking-widget {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: -50px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature Blocks (Detailed Services) */
.feature-block {
    padding: 100px 0;
}

.feature-block.alt-bg {
    background: rgba(255, 255, 255, 0.02);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-text {
    direction: ltr;
    /* Reset text direction */
}

.feature-row.reverse .feature-img {
    direction: ltr;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-text h3 {
    font-size: 1.2rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 700;
}

.feature-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Delivery List */
.delivery-list {
    padding: 80px 0;
    background: var(--dark-bg);
}

.goods-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.good-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.good-item:hover {
    background: var(--accent-blue);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.center-btn {
    text-align: center;
}

/* Why Us */
.why-us {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(5, 10, 16, 1) 0%, var(--primary-blue) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-red);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.why-card h3 {
    margin-bottom: 15px;
    color: white;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Legal / Sub-page Layouts */
.page-header {
    background: linear-gradient(rgba(5, 10, 16, 0.9), rgba(5, 10, 16, 0.8)), url('../assets/hero.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.page-header p {
    color: var(--accent-blue);
    font-size: 1.2rem;
    font-weight: 500;
}

.legal-content {
    padding: 80px 20px;
    max-width: 900px !important;
}

.legal-content section {
    margin-bottom: 50px;
}

.legal-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-content ul {
    margin-left: 20px;
    list-style-type: disc;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    /* Reset for mobile stack */
}

.feature-block.alt-bg {
    background: rgba(255, 255, 255, 0.02);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-text {
    direction: ltr;
    /* Reset text direction */
}

.feature-row.reverse .feature-img {
    direction: ltr;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-text h3 {
    font-size: 1.2rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 700;
}

.feature-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Delivery List */
.delivery-list {
    padding: 80px 0;
    background: var(--dark-bg);
}

.goods-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.good-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.good-item:hover {
    background: var(--accent-blue);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.center-btn {
    text-align: center;
}

/* Why Us */
.why-us {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(5, 10, 16, 1) 0%, var(--primary-blue) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-red);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.why-card h3 {
    margin-bottom: 15px;
    color: white;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    /* Reset for mobile stack */
}