:root {
    /* Color Palette */
    --color-black: #050505;
    --color-dark: #121212;
    --color-darker: #0a0a0a;
    --color-grey: #2a2a2a;
    --color-light-grey: #a0a0a0;
    --color-white: #ffffff;
    --color-gold: #FFD700;
    --color-gold-hover: #e6c200;
    --color-gold-light: rgba(255, 215, 0, 0.1);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;

    /* Spacing & Sizes */
    --container-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utility */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

.text-gold {
    color: var(--color-gold);
}

.text-center {
    text-align: center;
}

span {
    color: var(--color-gold);
}

/* Layout Utility */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.py-xl {
    padding: 120px 0;
}

.bg-darker {
    background-color: var(--color-darker);
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-gold);
}

.btn-secondary:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Glassmorphism Classes */
.glass-card {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Header Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-white);
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--color-light-grey);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--color-black), transparent);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-gold-light);
    color: var(--color-gold);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-light-grey);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-mockup {
    max-width: 320px;
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
    animation: float 6s ease-in-out infinite;
    border-radius: 36px;
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 5s ease-in-out infinite alternate;
}

.avatar-ph {
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    border-radius: 50%;
}

.floating-card strong {
    display: block;
    font-size: 0.9rem;
}

.floating-card span {
    font-size: 0.8rem;
    color: var(--color-gold);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Features Section */
.section-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-light-grey);
    max-width: 600px;
    margin: 0 auto 60px;
}

.feat-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--color-gold-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--color-light-grey);
    font-size: 1rem;
}

/* Commitments Section */
.commitments-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.commitment-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--color-dark);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.commitment-card.reverse {
    direction: rtl;
}

.commitment-card.reverse>* {
    direction: ltr;
}

.commit-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.eco-bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: var(--color-white);
}

.commit-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.big-emoji {
    font-size: 3rem;
    margin-bottom: 24px;
}

.commit-content h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.commit-content p {
    font-size: 1.1rem;
    color: var(--color-light-grey);
}

/* Hub Section */
.hub-grid {
    align-items: stretch;
}

.hub-left-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.weather-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(18, 18, 18, 0.8) 100%);
    padding: 30px;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.weather-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.date-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.weather-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.temp-big {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-gold);
}

.weather-details p {
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: var(--color-light-grey);
}

.mb-4 {
    margin-bottom: 24px;
}

.news-card {
    padding: 30px;
    flex: 1;
}

.news-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.news-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-list li {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.news-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.news-tag.highlight {
    background: var(--color-gold-light);
    color: var(--color-gold);
}

.news-list p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.hub-right-col {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.traffic-header {
    padding: 30px 30px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.traffic-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.traffic-status {
    font-size: 0.8rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.traffic-desc {
    padding: 0 30px 20px;
    font-size: 0.95rem;
    color: var(--color-light-grey);
}

.map-container {
    flex: 1;
    min-height: 300px;
}

/* Events Section */
.events-grid {
    margin-top: 40px;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
}

.event-date {
    background: var(--color-black);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    min-width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.event-date .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.event-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.event-info p {
    font-size: 0.9rem;
    color: var(--color-light-grey);
}

/* Responsive Design enhancements */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .commitment-card {
        grid-template-columns: 1fr;
    }

    .commit-image {
        min-height: 300px;
    }

    .hub-grid {
        grid-template-columns: 1fr;
    }

    .weather-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    section {
        padding: 60px 0;
    }

    .py-xl {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

/* Factor Plus & QR Banner */
.qr-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.qr-content {
    text-align: center;
    width: 100%;
}

.qr-codes {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: var(--color-white);
    border-radius: 12px;
    padding: 10px;
    position: relative;
}

.qr-placeholder::after {
    content: 'QR';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-black);
    font-weight: bold;
    font-size: 2rem;
}

/* FAQs Accordion */
.faqs-container {
    max-width: 100%;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-size: 1.2rem;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
}

.accordion-header:hover {
    color: var(--color-gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding-bottom: 24px;
    color: var(--color-light-grey);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active .icon {
    transform: rotate(45deg);
    color: var(--color-gold);
}

.icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

/* Estimator Form */
.estimator-form {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-light-grey);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-primary);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.w-100 {
    width: 100%;
}

.fare-result {
    margin-top: 24px;
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fare-result.hidden {
    display: none;
}

.estimated-price {
    font-size: 2rem;
    font-weight: 800;
}

/* Allies Club */
.allies-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.ally-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    border-radius: 100px;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--color-gold);
}

/* Footer */
.footer {
    background: var(--color-black);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a,
.social-links a {
    color: var(--color-light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.social-links a:hover {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .qr-codes {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}