:root {
    --primary-color: #2E86AB;
    --secondary-color: #48A9A6;
    --accent-color: #F18F01;
    --success-color: #28a745;
    --dark-color: #1B4B6B;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(46, 134, 171, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

/* IMPROVED HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.9rem;
    font-weight: 500;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.brand-name {
    background: linear-gradient(45deg, var(--accent-color), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 4rem;
}

.tagline {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 10px;
    opacity: 0.9;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.feature-point i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.8s both;
}

.download-btn {
    background: linear-gradient(45deg, var(--accent-color), #FF6B35);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(241, 143, 1, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(241, 143, 1, 0.6);
}

.download-btn small {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: -5px;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    animation: slideUp 0.8s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: -5px;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    z-index: 10;
    animation: slideLeft 0.8s ease-out 0.5s both;
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.phone-mockup {
    position: relative;
    margin: 0 auto;
    max-width: 320px;
}

.phone-frame {
    background: linear-gradient(145deg, #333, #000);
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 60px;
    height: 6px;
    background: #555;
    border-radius: 3px;
    transform: translateX(-50%);
}

.phone-screen {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.app-screenshot {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    color: var(--primary-color);
    padding: 12px 15px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: floatCard 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.card-1 {
    top: 20%;
    left: -20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -25%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.floating-card i {
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 20px;
    height: 30px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 2px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background: var(--light-color);
}

.vision-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.vision-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Features Section - SAME AS BEFORE */
.features-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    opacity: 0.9;
}

.feature-category {
    margin-bottom: 60px;
}

.category-title {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-top-color: var(--accent-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.feature-icon.truck-owner {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.feature-icon.driver {
    background: linear-gradient(45deg, var(--accent-color), #FF6B35);
}

.feature-icon.broker {
    background: linear-gradient(45deg, var(--secondary-color), var(--success-color));
}

.feature-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Download App Section */
.download-app-section {
    padding: 80px 0;
    background: var(--light-color);
}

.download-steps {
    margin: 30px 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-text h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.step-text p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.playstore-preview img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* How It Works */
.how-it-works-section {
    padding: 80px 0;
    background: white;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.steps-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-btn:hover,
.step-btn.active {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.step-slide {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.step-slide.active {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.phone-demo {
    text-align: center;
}

.phone-demo img {
    max-width: 280px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.step-slide h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.step-slide .lead {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.step-list i {
    width: 20px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--light-color);
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.pricing-card.popular {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.best-value {
    border: 3px solid var(--secondary-color);
}

.popular-badge,
.value-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.value-badge {
    background: var(--secondary-color);
}

.plan-header h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.plan-features {
    list-style: none;
    padding: 30px 0;
    margin: 0;
}

.plan-features li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features .fas {
    color: var(--success-color);
    width: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 20px 25px;
    font-size: 1.1rem;
    border-radius: 15px;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: white;
    padding: 20px 25px;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--light-color);
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: 100%;
}

.about-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.office-details {
    margin-top: 40px;
}

.office-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
}

.office-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.office-card p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Simple Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 0 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.copyright a {
    color: var(--accent-color);
    font-weight: 600;
}

/* Modal */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.modal-title {
    font-weight: 700;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 20px 0 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .brand-name {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .floating-card {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .steps-nav {
        gap: 10px;
    }
    
    .step-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .pricing-card.popular {
        transform: none;
        margin-top: 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        font-size: 0.9rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .phone-mockup {
        max-width: 250px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
