/* Color Variables */
:root {
    --main-blue: #263391;
    --main-blue-dark: #1a235f;
    --main-blue-light: #3d4fa3;
    --yellow: #fbbf24;
    --yellow-dark: #f59e0b;
    --yellow-light: #fcd34d;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-light: #f8fafc;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Modern Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(38, 51, 145, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(38, 51, 145, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-blue);
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    color: var(--yellow);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--main-blue);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--main-blue-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-book {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--main-blue);
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-book:hover {
    background: linear-gradient(135deg, var(--yellow-dark) 0%, var(--yellow) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--main-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Modern Design */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-blue-dark) 50%, #0f1430 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(38, 51, 145, 0.3) 100%);
    border-radius: 30px;
    filter: blur(40px);
    z-index: -1;
}

.hero-image img {
    max-width: 100%;
    max-height: 420px;
    border-radius: 24px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-image i {
    font-size: 15rem;
    opacity: 0.8;
    color: var(--yellow);
    animation: float 6s ease-in-out infinite;
}

/* Buttons - Modern Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--main-blue);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--yellow-dark) 0%, var(--yellow) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 30px auto 60px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* About Section - Modern */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--yellow);
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--main-blue), var(--main-blue-light));
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(38, 51, 145, 0.2);
}

.feature span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(38, 51, 145, 0.08);
    border: 1px solid rgba(38, 51, 145, 0.05);
}

.stat:hover {
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-blue-light) 100%);
    color: white;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(38, 51, 145, 0.2);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--main-blue);
    transition: color 0.3s ease;
}

.stat:hover h3 {
    color: var(--yellow);
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.stat:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: #f8fafc;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--main-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--main-blue);
    box-shadow: 0 0 0 3px rgba(38, 51, 145, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Section - Modern */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(38, 51, 145, 0.08);
    border: 1px solid rgba(38, 51, 145, 0.05);
}

.contact-item:hover {
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-blue-light) 100%);
    color: white;
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(38, 51, 145, 0.2);
}

.contact-item i {
    font-size: 2rem;
    color: var(--main-blue);
    min-width: 45px;
    transition: color 0.3s ease;
}

.contact-item:hover i {
    color: var(--yellow);
}

.contact-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item:hover h3 {
    color: white;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-item:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(38, 51, 145, 0.08);
    border: 1px solid rgba(38, 51, 145, 0.05);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--main-blue);
    box-shadow: 0 0 0 3px rgba(38, 51, 145, 0.1);
}

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

/* Problem Section - Modern Glassmorphism */
.problem {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 
        0 4px 6px rgba(38, 51, 145, 0.05),
        0 10px 40px rgba(38, 51, 145, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(38, 51, 145, 0.05);
    backdrop-filter: blur(10px);
}

.problem-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(38, 51, 145, 0.15),
        0 0 0 1px rgba(38, 51, 145, 0.1);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--main-blue), var(--main-blue-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--yellow);
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(38, 51, 145, 0.3);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: rotate(0deg) scale(1.1);
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--main-blue);
    font-weight: 700;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Solution Section - Modern Glassmorphism */
.solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    position: relative;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 
        0 4px 6px rgba(251, 191, 36, 0.05),
        0 10px 40px rgba(251, 191, 36, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(10px);
}

.solution-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(251, 191, 36, 0.2),
        0 0 0 1px rgba(251, 191, 36, 0.2);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--main-blue);
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: rotate(0deg) scale(1.1);
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #065f46;
    font-weight: 700;
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Senders Section - Modern */
.senders {
    padding: 100px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    position: relative;
}

.senders-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.senders-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--main-blue), var(--main-blue-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(38, 51, 145, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(38, 51, 145, 0.35);
}

.feature-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--main-blue);
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.senders-cta {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 
        0 4px 6px rgba(38, 51, 145, 0.05),
        0 20px 50px rgba(38, 51, 145, 0.1);
    text-align: center;
    border: 1px solid rgba(38, 51, 145, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.senders-cta:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 12px rgba(38, 51, 145, 0.08),
        0 30px 60px rgba(38, 51, 145, 0.15);
}

.senders-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--main-blue);
    font-weight: 700;
}

.senders-cta p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Drivers Section - Modern */
.drivers {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    position: relative;
}

.drivers-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.drivers-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.drivers-cta {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 
        0 4px 6px rgba(251, 191, 36, 0.05),
        0 20px 50px rgba(251, 191, 36, 0.1);
    text-align: center;
    border: 1px solid rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.drivers-cta:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 12px rgba(251, 191, 36, 0.08),
        0 30px 60px rgba(251, 191, 36, 0.15);
}

.drivers-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--main-blue);
    font-weight: 700;
}

.drivers-cta p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Mobile App Section - Modern Dark */
.mobile-app {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mobile-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(38, 51, 145, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.app-feature:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 191, 36, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.app-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-blue);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    transition: transform 0.3s ease;
}

.app-feature:hover .app-icon {
    transform: scale(1.1) rotate(-5deg);
}

.app-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.app-feature p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-size: 0.95rem;
}

.app-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.app-mockup {
    font-size: 14rem;
    color: var(--yellow);
    margin-bottom: 30px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(251, 191, 36, 0.2));
}

.app-info h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.app-info p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 400px;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 280px;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.app-badge i {
    font-size: 2.2rem;
    color: var(--yellow);
    transition: transform 0.3s ease;
}

.app-badge:hover i {
    transform: scale(1.1);
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-text small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.badge-text strong {
    font-size: 1rem;
    font-weight: 600;
}

.app-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    min-width: 90px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.stat-item strong {
    font-size: 1.7rem;
    color: var(--yellow);
    font-weight: 700;
}

.stat-item i {
    color: var(--yellow);
    font-size: 1rem;
}

.stat-item span {
    font-size: 0.85rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

/* App Download CTA Section - Modern */
.app-download-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-blue-dark) 50%, #0f1430 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.app-download-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    color: white;
    margin-bottom: 25px;
    font-size: 3rem;
    font-weight: 800;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.2rem;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 0;
}

.cta-feature i {
    color: var(--yellow);
    font-size: 1.4rem;
    width: 32px;
    height: 32px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-feature span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-action {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cta-action h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--yellow);
    font-weight: 700;
}

.cta-action p {
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.cta-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.cta-badges .app-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 24px;
    border-radius: 14px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.cta-badges .app-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-badges .app-badge i {
    font-size: 2.2rem;
    color: var(--yellow);
    transition: transform 0.3s ease;
}

.cta-badges .app-badge:hover i {
    transform: scale(1.1);
}

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

.app-qr p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.qr-placeholder {
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3.5rem;
    color: var(--main-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.qr-placeholder:hover {
    transform: scale(1.05);
}

/* Registration Section */
.register {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.register-tabs {
    max-width: 800px;
    margin: 50px auto 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(38, 51, 145, 0.1);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-blue-dark) 100%);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
}

.tab-btn:hover {
    color: white;
}

.tab-content {
    padding: 40px;
    display: none;
}

.tab-content.active {
    display: block;
}

.register-form {
    max-width: 100%;
}

.register-form h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--main-blue);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked {
    accent-color: var(--yellow);
}

/* Footer - Modern */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, var(--main-blue-dark) 50%, var(--main-blue) 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(251, 191, 36, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 3px 0;
}

.footer-section ul li a:hover {
    color: var(--yellow);
    transform: translateX(5px);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--yellow);
}

.footer-logo i {
    margin-right: 12px;
    font-size: 2rem;
    color: var(--yellow);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--yellow);
    color: var(--main-blue);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--yellow);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--yellow-light);
    text-decoration: underline;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .senders-content,
    .drivers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .senders-features,
    .drivers-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mobile-app-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .app-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .app-mockup {
        font-size: 8rem;
    }

    .app-stats {
        gap: 20px;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-action {
        padding: 30px;
    }

    .qr-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .register-tabs {
        margin: 30px 20px 0;
    }

    .tab-content {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .booking-form {
        padding: 1.5rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.legal-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 30px;
    box-shadow: 
        0 4px 6px rgba(38, 51, 145, 0.05),
        0 10px 40px rgba(38, 51, 145, 0.08);
    border: 1px solid rgba(38, 51, 145, 0.05);
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--main-blue);
    margin-bottom: 25px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--yellow);
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--main-blue-light);
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section ul li {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
}

.legal-section ul li::marker {
    color: var(--yellow);
    font-size: 1.2rem;
}

.legal-section strong {
    color: var(--main-blue);
    font-weight: 600;
}

.legal-section a {
    color: var(--main-blue);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid var(--yellow);
    transition: all 0.3s ease;
}

.legal-section a:hover {
    background: var(--yellow);
    color: var(--main-blue);
    padding: 2px 6px;
    border-radius: 4px;
}

.legal-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(38, 51, 145, 0.1);
}

/* Responsive Legal Pages */
@media screen and (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-section {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
}
