:root {
    --primary-color: #28a745;
    --secondary-color: #20c997;
    --accent-color: #ffc107;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --gradient-secondary: linear-gradient(135deg, #ffc107 0%, #ffed4e 100%);
    --shadow-light: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-dark: 0 10px 30px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--white) !important;
    box-shadow: var(--shadow-light);
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2328a745' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}





/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* Floating Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-title .text-primary {
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
}

.hero-title .text-warning {
    background: linear-gradient(45deg, #ffc107, #fff176);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite 0.5s;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    margin: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countUp 2s ease-out 1.2s both;
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.stat-item p {
    opacity: 0.9;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Phone Mockup */
.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    animation: slideInRight 1s ease-out 0.5s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup {
    width: 280px;
    height: 480px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 auto;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: screenGlow 3s ease-in-out infinite;
}

@keyframes screenGlow {
    0%, 100% { box-shadow: inset 0 0 20px rgba(40, 167, 69, 0.1); }
    50% { box-shadow: inset 0 0 30px rgba(40, 167, 69, 0.2); }
}

.map-area {
    flex: 1;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9, #a5d6a7);
    position: relative;
    overflow: hidden;
}

.map-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mapGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(76,175,80,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23mapGrid)"/></svg>');
    opacity: 0.5;
}

.map-roads {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.road {
    position: absolute;
    background: linear-gradient(90deg, #bbb, #ddd, #bbb);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.road-1 {
    width: 80%;
    height: 4px;
    top: 30%;
    left: 10%;
    transform: rotate(-15deg);
    animation: roadPulse 4s ease-in-out infinite;
}

.road-2 {
    width: 60%;
    height: 4px;
    top: 60%;
    left: 20%;
    transform: rotate(10deg);
    animation: roadPulse 4s ease-in-out infinite 1s;
}

.road-3 {
    width: 4px;
    height: 70%;
    top: 15%;
    left: 60%;
    transform: rotate(5deg);
    animation: roadPulse 4s ease-in-out infinite 2s;
}

@keyframes roadPulse {
    0%, 100% { opacity: 0.7; transform: scale(1) rotate(var(--rotation, 0deg)); }
    50% { opacity: 1; transform: scale(1.05) rotate(var(--rotation, 0deg)); }
}

.map-markers {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.marker {
    position: absolute;
    font-size: 14px;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.marker.pickup {
    top: 25%;
    left: 20%;
    color: var(--primary-color);
    animation: markerBounce 2s ease-in-out infinite;
}

.marker.destination {
    top: 65%;
    left: 70%;
    color: #dc3545;
    animation: markerBounce 2s ease-in-out infinite 0.5s;
}

.marker.car {
    top: 45%;
    left: 45%;
    color: var(--accent-color);
    animation: carMove 4s ease-in-out infinite;
    font-size: 16px;
}

@keyframes markerBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.1); }
}

.route-line {
    position: absolute;
    top: 30%;
    left: 25%;
    width: 50%;
    height: 40%;
    border: 3px dashed var(--primary-color);
    border-radius: 20px;
    opacity: 0.8;
    z-index: 2;
    animation: routeFlow 3s ease-in-out infinite;
}

@keyframes routeFlow {
    0% { border-color: var(--primary-color); opacity: 0.8; }
    50% { border-color: var(--secondary-color); opacity: 1; }
    100% { border-color: var(--primary-color); opacity: 0.8; }
}

@keyframes carMove {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg); 
        color: var(--accent-color);
    }
    25% { 
        transform: translateX(15px) translateY(-5px) rotate(15deg); 
        color: var(--primary-color);
    }
    50% { 
        transform: translateX(25px) translateY(10px) rotate(-10deg); 
        color: var(--secondary-color);
    }
    75% { 
        transform: translateX(10px) translateY(15px) rotate(5deg); 
        color: var(--accent-color);
    }
}

.booking-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 25px 25px 0 0;
    box-shadow: 
        0 -15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(40, 167, 69, 0.1);
    position: relative;
    z-index: 4;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
}

.booking-card h6 {
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--dark-color);
    font-size: 1rem;
    text-align: center;
    padding-top: 0.5rem;
}

.location-inputs {
    position: relative;
}

.location-inputs::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-color), #dc3545);
    border-radius: 1px;
    z-index: 1;
}

.location-inputs .form-control {
    border: 2px solid #f1f3f4;
    border-radius: 12px;
    padding: 0.8rem 0.8rem 0.8rem 3.2rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.location-inputs .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
    background: var(--white);
    transform: translateY(-1px);
}

.input-group-text {
    background: transparent;
    border: 2px solid #f1f3f4;
    border-right: none;
    padding: 0.8rem 0.5rem;
    z-index: 2;
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary-color);
}

.booking-card .btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 15px;
    padding: 0.9rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.booking-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.booking-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.booking-card .btn-primary:hover::before {
    left: 100%;
}

.booking-card .btn-primary:active {
    transform: translateY(0);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: none;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.service-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 16px;
}

.service-card.featured .service-features i {
    color: var(--white);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

.features-content {
    padding-right: 2rem;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-content p {
    color: #6c757d;
    margin: 0;
}

.features-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-showcase {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--dark-color);
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.phone-content {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.app-header h6 {
    font-weight: 700;
    color: var(--primary-color);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.ride-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ride-type {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ride-type.active {
    border-color: var(--primary-color);
    background: rgba(108, 92, 231, 0.1);
}

.ride-type i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.ride-type span {
    font-weight: 500;
}

/* Download Section */
.download-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.download-content {
    padding-right: 2rem;
}

.download-section .section-title {
    color: var(--white);
}

.download-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.download-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.download-btn img {
    width: 30px;
    height: 30px;
    margin-right: 1rem;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.download-btn strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1rem;
}

.feature-badge i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.download-phones {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-group {
    position: relative;
}

.phone {
    width: 200px;
    height: 400px;
    background: var(--dark-color);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.phone-1 {
    position: relative;
    z-index: 2;
}

.phone-2 {
    position: absolute;
    right: -50px;
    top: 50px;
    z-index: 1;
    transform: scale(0.9);
}

.phone .phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
}

.screen-content {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.welcome-text {
    font-size: 0.9rem;
    color: var(--dark-color);
    text-align: center;
}

.map-view {
    flex: 1;
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.ride-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
}

.driver-info {
    display: flex;
    align-items: center;
}

.driver-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-right: 1rem;
}

.driver-details h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.driver-details p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 2rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

.contact-form .form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    z-index: 2;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    margin-top: 4rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item p {
    color: #6c757d;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    padding-top: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--light-color);
}

.text-danger {
    color: #e74c3c !important;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-widget a {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-widget a:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
        transform: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-content,
    .download-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .phone-2 {
        display: none;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .navbar-collapse {
        background: var(--white);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: var(--shadow-light);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        color: var(--dark-color) !important;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link:hover {
        color: var(--primary-color) !important;
    }
    
    .nav-link i {
        color: var(--primary-color);
    }
}

@media (min-width: 769px) {
    .nav-link i {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature-item,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* About Page Styles */
.about-hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-card {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.stat-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.mission-section {
    padding: 100px 0;
    background: var(--light-color);
}

.mission-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.team-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.values-section {
    padding: 100px 0;
    background: var(--light-color);
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.value-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.value-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* About Page Animations */
.animated-scene {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(40, 167, 69, 0.2);
}

.road-animation {
    position: absolute;
    width: 100%;
    height: 100%;
}

.road-line {
    position: absolute;
    background: #ddd;
    border-radius: 2px;
}

.road-line-1 {
    width: 80%;
    height: 4px;
    top: 30%;
    left: 10%;
    animation: roadMove1 4s ease-in-out infinite;
}

.road-line-2 {
    width: 60%;
    height: 4px;
    top: 60%;
    left: 20%;
    animation: roadMove2 5s ease-in-out infinite;
}

.road-line-3 {
    width: 4px;
    height: 70%;
    top: 15%;
    left: 70%;
    animation: roadMove3 3s ease-in-out infinite;
}

.car-animation {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
    top: 25%;
    left: 15%;
    animation: carDrive 6s ease-in-out infinite;
}

.delivery-animation {
    position: absolute;
    font-size: 1.5rem;
    color: var(--accent-color);
    top: 55%;
    left: 25%;
    animation: deliveryMove 8s ease-in-out infinite;
}

.location-pins {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pin {
    position: absolute;
    font-size: 1.2rem;
    animation: pinPulse 2s ease-in-out infinite;
}

.pin-1 {
    top: 20%;
    left: 10%;
    color: var(--primary-color);
}

.pin-2 {
    top: 70%;
    right: 15%;
    color: #dc3545;
    animation-delay: 1s;
}

@keyframes carDrive {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(100px) translateY(-10px); }
    50% { transform: translateX(200px) translateY(50px); }
    75% { transform: translateX(150px) translateY(80px); }
}

@keyframes deliveryMove {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    33% { transform: translateX(80px) translateY(-20px) rotate(10deg); }
    66% { transform: translateX(160px) translateY(30px) rotate(-5deg); }
}

@keyframes roadMove1 {
    0%, 100% { opacity: 0.7; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

@keyframes roadMove2 {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 0.9; transform: scaleX(1.05); }
}

@keyframes roadMove3 {
    0%, 100% { opacity: 0.8; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes pinPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--light-color);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: var(--white);
    color: var(--dark-color);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
    color: #6c757d;
    line-height: 1.7;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s ease;
}

/* QR Codes */
.qr-codes {
    padding: 1rem 0;
}

.qr-code {
    text-align: center;
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 2rem;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.qr-code small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

/* Trust Badges */
.trust-badges {
    padding: 2rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    margin: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Hero Section Enhancements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: floatingIcon 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes floatingIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 193, 7, 0.2);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.feature-tag {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-tag i {
    margin-right: 0.4rem;
    font-size: 0.9rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    font-size: 1rem;
}

.stat-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

/* Phone Interface Enhancements */
.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.05);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-color);
}

.status-right {
    display: flex;
    gap: 0.3rem;
}

.live-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 5;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    margin-right: 0.4rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.map-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 5;
}

.map-btn {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: var(--white);
    transform: scale(1.05);
}

.ride-options {
    display: flex;
    gap: 0.5rem;
}

.ride-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.6rem;
    border: 2px solid #f1f3f4;
    border-radius: 10px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    font-weight: 600;
}

.ride-option.active {
    border-color: var(--primary-color);
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
}

.ride-option i {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: inherit;
}

.ride-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .floating-elements {
        display: none;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
        text-align: center;
    }
    
    .feature-tag,
    .trust-item {
        font-size: 0.75rem;
    }
    
    .phone-mockup {
        width: 260px;
        height: 450px;
    }
}

@media (max-width: 576px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-warning {
    color: var(--accent-color) !important;
}

