/**
 * Vertex Hire Logistics - Enhanced Styles
 * ================================
 * Complete styling for all enhanced sections
 */

/* ==========================================
   HERO SECTION STYLES
   ========================================== */

.hero-section-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 78, 137, 0.95) 0%,
        rgba(26, 101, 158, 0.85) 50%,
        rgba(11, 120, 224, 0.75) 100%
    );
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, #6EC1FF, #0B78E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-track-widget {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.track-widget-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.track-widget-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.track-input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.track-input-enhanced {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-display);
    transition: all 0.3s ease;
}

.track-input-enhanced:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 120, 224, 0.1);
}

.btn-track-hero {
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 120, 224, 0.3);
}

.btn-track-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(11, 120, 224, 0.4);
}

.tracking-error {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-mono);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 0.85rem;
    opacity: 0.8;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 24px;
        opacity: 0.3;
    }
}

/* ==========================================
   SERVICES 3D SECTION STYLES
   ========================================== */

.services-3d-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-3d {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card-3d.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(11, 120, 224, 0.15);
}

.service-card-3d:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(11, 120, 224, 0.3);
}

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-icon-3d {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.express-icon {
    background: linear-gradient(135deg, #6EC1FF, #0B78E0);
    color: white;
}

.standard-icon {
    background: linear-gradient(135deg, #4ECDC4, #1A659E);
    color: white;
}

.economy-icon {
    background: linear-gradient(135deg, #95E1D3, #004E89);
    color: white;
}

.price-badge {
    display: inline-block;
    background: rgba(11, 120, 224, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.service-features i {
    color: var(--success);
    font-size: 1rem;
}

.delivery-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(46, 204, 113, 0.1);
    color: var(--success);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.delivery-time::before {
    content: '⏱️';
}

.request-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 120, 224, 0.3);
}

.service-card-3d:hover .request-quote-btn {
    opacity: 1;
    transform: translateY(0);
}

.request-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(11, 120, 224, 0.4);
}

/* ==========================================
   FEATURES MAP SECTION STYLES
   ========================================== */

.features-map-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.map-container {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.world-map-wrapper {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.map-stats-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.live-counter-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-mono);
}

.coverage-stats {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.coverage-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.coverage-item strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.coverage-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

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

.map-feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.map-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.map-feature-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.map-feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.map-feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

/* ==========================================
   STATS ANIMATED SECTION STYLES
   ========================================== */

.stats-animated-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #6EC1FF);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(360deg);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.stat-icon {
    animation: float 3s ease-in-out infinite;
}

.stat-card:nth-child(1) .stat-icon {
    animation-delay: 0s;
}

.stat-card:nth-child(2) .stat-icon {
    animation-delay: 0.5s;
}

.stat-card:nth-child(3) .stat-icon {
    animation-delay: 1s;
}

.stat-card:nth-child(4) .stat-icon {
    animation-delay: 1.5s;
}

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

/* ==========================================
   TRACKING DEMO SECTION STYLES
   ========================================== */

.tracking-demo-section {
    padding: 6rem 0;
    background: #F8F9FA;
}

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

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(11, 120, 224, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.demo-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.demo-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
}

.demo-feature i {
    color: var(--success);
    font-size: 1.25rem;
}

.btn-demo-track {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 120, 224, 0.3);
}

.btn-demo-track:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(11, 120, 224, 0.4);
}

.demo-visual {
    position: relative;
}

.demo-device {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 8px solid #1a1a1a;
}

.device-header {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    padding: 1.5rem;
    text-align: center;
    position: relative;
    color: white;
}

.device-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
}

.device-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.device-content {
    padding: 1.5rem;
    max-height: 500px;
    overflow-y: auto;
}

.demo-tracking-number {
    background: linear-gradient(135deg, rgba(11, 120, 224, 0.1), rgba(26, 101, 158, 0.1));
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tracking-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.tracking-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-mono);
    margin-bottom: 0.75rem;
}

.tracking-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--success);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.demo-timeline {
    position: relative;
}

.demo-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--success) 0%, #E0E0E0 100%);
}

.timeline-step {
    position: relative;
    padding-left: 3.5rem;
    padding-bottom: 2rem;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.step-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.timeline-step.completed .step-marker {
    background: var(--success);
}

.timeline-step.active .step-marker {
    background: var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(11, 120, 224, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(11, 120, 224, 0);
    }
}

.step-content {
    background: #F8F9FA;
    padding: 1rem;
    border-radius: 12px;
}

.step-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.step-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.step-time {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ==========================================
   CTA DUAL SECTION STYLES
   ========================================== */

.cta-dual-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.geometric-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -50px;
    animation-delay: 10s;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.cta-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-display);
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 120, 224, 0.1);
}

.btn-cta-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(11, 120, 224, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(11, 120, 224, 0.4);
}

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

.app-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.app-feature i {
    color: var(--success);
    font-size: 1.25rem;
}

.app-store-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    background: #000;
    transform: translateX(5px);
}

.app-store-btn i {
    font-size: 2rem;
}

.app-store-btn small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.app-store-btn strong {
    display: block;
    font-size: 1.1rem;
}

/* ==========================================
   HOW IT WORKS SECTION STYLES
   ========================================== */

.how-it-works-section {
    padding: 6rem 0;
    background: white;
}

.steps-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(11, 120, 224, 0.3);
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(11, 120, 224, 0.1), rgba(26, 101, 158, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
    position: relative;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--primary);
    opacity: 0;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: scale(1.1) rotate(360deg);
}

.step-item:hover .step-icon::before {
    opacity: 0.3;
    transform: rotate(-360deg);
}

.step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

.step-connector {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(11, 120, 224, 0.3) 100%);
    margin-top: 50px;
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: -10px;
    color: var(--primary);
    font-size: 1.5rem;
}

.cta-center {
    text-align: center;
    position: relative;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(11, 120, 224, 0.3);
    position: relative;
}

.btn-get-started:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(11, 120, 224, 0.4);
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

@media (max-width: 1024px) {
    .demo-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-content {
        padding-right: 0;
    }
    
    .demo-features {
        grid-template-columns: 1fr;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .step-item {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .step-connector {
        display: none;
    }
    
    .map-stats-overlay {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .coverage-stats {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero-section-enhanced,
    .services-3d-section,
    .features-map-section,
    .stats-animated-section,
    .tracking-demo-section,
    .cta-dual-section,
    .how-it-works-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .track-input-group {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-3d {
        padding: 2rem;
    }
    
    .request-quote-btn {
        opacity: 1;
        transform: translateY(0);
    }
    
    .map-container {
        padding: 1.5rem;
    }
    
    .world-map-wrapper {
        min-height: 300px;
    }
    
    .map-stats-overlay {
        flex-direction: column;
    }
    
    .coverage-stats {
        flex-direction: column;
    }
    
    .map-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .demo-title {
        font-size: 2rem;
    }
    
    .device-content {
        padding: 1rem;
        max-height: 400px;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .geometric-shape {
        display: none;
    }
    
    .steps-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .step-item {
        flex: 1;
        max-width: 300px;
        margin-bottom: 2rem;
    }
    
    .step-item:last-child {
        margin-bottom: 0;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .step-number {
        position: relative;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-description {
        max-width: 100%;
    }
    
    .btn-get-started {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .stat-card .stat-number {
        font-size: 2rem;
    }
    
    .stat-card .stat-label {
        font-size: 1.1rem;
    }
}