:root {
    --pink: #ff00ff;
    --magenta: #ff1493;
    --purple: #8b008b;
    --black: #000000;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --gradient: linear-gradient(135deg, #ff00ff 0%, #ff1493 50%, #8b008b 100%);
    
    /* Light theme (default) - with darker colors */
    --pink: #b800b8;
    --magenta: #b0106a;
    --purple: #5a005a;
    --gradient: linear-gradient(135deg, #b800b8 0%, #b0106a 50%, #5a005a 100%);
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --text-primary: #171717;
    --text-secondary: #525252;
    --text-tertiary: #737373;
    --border-color: #e5e5e5;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --card-bg: #fafafa;
    --footer-bg: #171717;
    --footer-text: #ffffff;
    --logo-filter: none;
}

[data-theme="dark"] {
    /* Dark theme - keep original bright colors */
    --pink: #ff00ff;
    --magenta: #ff1493;
    --purple: #8b008b;
    --gradient: linear-gradient(135deg, #ff00ff 0%, #ff1493 50%, #8b008b 100%);
    --bg-primary: #0a0a0a;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #141414;
    --text-primary: #ffffff;
    --text-secondary: #d4d4d4;
    --text-tertiary: #a3a3a3;
    --border-color: #262626;
    --nav-bg: rgba(0, 0, 0, 0.95);
    --card-bg: #141414;
    --footer-bg: #0a0a0a;
    --footer-text: #ffffff;
    --logo-filter: brightness(0) invert(1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.over-hero {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.over-content {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .navbar.over-hero {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .navbar.over-content {
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

.logo-img {
    height: 200px;
    width: auto;
    max-width: none;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    margin: -50px 0;
    padding: 0;
}

.navbar.over-content .logo-img {
    filter: var(--logo-filter) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

[data-theme="dark"] .navbar.over-content .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-img:hover {
    transform: scale(1.05);
}

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

.nav-menu a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar.over-content .nav-menu a {
    color: var(--text-secondary);
    text-shadow: none;
}

.navbar.over-content .nav-menu a:hover {
    color: var(--pink);
}

[data-theme="dark"] .nav-menu a {
    color: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] .navbar.over-content .nav-menu a {
    color: var(--text-secondary);
}

.nav-menu a:hover {
    color: var(--pink);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

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

.theme-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    padding: 0;
    backdrop-filter: blur(10px);
}

.navbar.over-content .theme-toggle {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
}

[data-theme="dark"] .theme-toggle {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .navbar.over-content .theme-toggle {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

.theme-toggle:hover {
    background: var(--card-bg);
    transform: scale(1.1);
}

.theme-icon {
    display: block;
    transition: opacity 0.3s ease;
}

.theme-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.theme-icon-moon svg {
    stroke: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.navbar.over-content .theme-icon-moon svg {
    stroke: var(--text-secondary);
    filter: none;
}

.theme-icon-sun svg {
    stroke: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.navbar.over-content .theme-icon-sun svg {
    stroke: var(--white);
    filter: none;
}

[data-theme="dark"] .theme-icon-sun svg {
    stroke: var(--white);
}

.nav-apply-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    position: relative;
    z-index: 1001;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 0, 255, 0.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--pink);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/background-highway.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(0px) brightness(1);
    transform: scale(1.05);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.5) 100%
    ),
    linear-gradient(
        135deg,
        rgba(184, 0, 184, 0.25) 0%,
        rgba(176, 16, 106, 0.2) 50%,
        rgba(90, 0, 90, 0.25) 100%
    );
    z-index: 1;
}

[data-theme="dark"] .hero::before {
    filter: blur(3px) brightness(0.4);
}

[data-theme="dark"] .hero::after {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.6) 100%
    ),
    linear-gradient(
        135deg,
        rgba(255, 0, 255, 0.3) 0%,
        rgba(255, 20, 147, 0.25) 50%,
        rgba(139, 0, 139, 0.3) 100%
    );
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(5deg); }
}

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

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

.hero-container {
    max-width: 1400px;
    margin-left: 150px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 700px;
    text-align: left !important;
    width: auto;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 255, 0.2);
    color: #ff6bff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 0, 255, 0.5);
    box-shadow: 0 0 0 1px rgba(255, 0, 255, 0.2) inset, 0 2px 8px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    letter-spacing: -2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: left !important;
    position: relative;
    z-index: 3;
    mix-blend-mode: normal;
}

.hero-title .hero-title-line1 {
    white-space: nowrap;
    display: inline-block;
}

.hero-title .highlight {
    color: #ff00ff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ff00ff;
    background-clip: unset;
    display: inline-block;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: none;
}

.hero-description {
    font-size: 1.25rem;
    color: #ffffff !important;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
    mix-blend-mode: normal;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.3);
}

.btn-hero-secondary {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-hero-secondary:hover {
    color: var(--pink);
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6bff 0%, #ff1493 50%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff !important;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 3;
    mix-blend-mode: normal;
}


/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-primary);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 255, 0.1);
    color: var(--pink);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.service-item {
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-item:hover .service-icon::before {
    width: 100px;
    height: 100px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 0, 255, 0.3);
}

.service-item:hover .service-icon svg {
    transform: scale(1.1);
}

.service-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.service-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
    color: var(--purple);
}

/* Hidden service items */
.service-item.service-item-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    transform: translateY(-30px);
    transition: max-height 3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s,
                transform 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s,
                padding-top 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding-bottom 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding-left 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                margin-top 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                margin-bottom 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.services-grid.show-all .service-item.service-item-hidden {
    max-height: 500px;
    opacity: 1;
    margin-top: 0;
    margin-bottom: 0;
    padding: 2.5rem;
    transform: translateY(0);
    pointer-events: auto;
    transition: max-height 3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s,
                transform 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s,
                padding-top 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding-bottom 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding-left 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                margin-top 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                margin-bottom 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Show More Button */
.services-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    transition: margin-top 0.5s ease;
}

.services-grid.show-all + .services-toggle-wrapper {
    margin-top: 2rem;
}

.btn-show-more {
    background: none;
    color: var(--pink);
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.btn-text {
    transition: color 0.3s ease;
}

.btn-show-more:hover .btn-text {
    color: var(--purple);
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--pink);
}

.btn-show-more:hover .btn-arrow {
    color: var(--purple);
    transform: translateY(3px);
}

.arrow-down {
    transform: rotate(0deg);
}

.arrow-up {
    transform: rotate(180deg);
}

.btn-arrow svg {
    width: 20px;
    height: 20px;
}

/* Desktop: Always show all 6 service cards in "What We Offer" section */
@media (min-width: 769px) {
    .service-item.service-item-hidden {
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 2.5rem !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }

    .services-toggle-wrapper {
        display: none !important;
    }
}

/* About Section */
.about {
    padding: 120px 0 60px;
    background: var(--bg-secondary);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    max-width: 600px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-text {
    margin: 2rem 0;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.feature:hover {
    transform: translateY(-5px);
    background: var(--bg-tertiary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.feature:hover .feature-icon::before {
    width: 100px;
    height: 100px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 0, 255, 0.4);
}

.feature:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-image {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-image-img {
    width: 90%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image-img:hover {
    transform: scale(1.02);
}

/* Driver Banner Section */
.driver-banner {
    padding: 70px 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.driver-banner::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    background-image: url('assets/images/image.png');
    background-size: 150%;
    background-position: 50% 60%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(4px) brightness(0.5);
    opacity: 0.7;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.driver-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
    z-index: 0;
}

.driver-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.driver-banner-content {
    color: var(--white);
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInFromLeft 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.driver-banner-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
}

.driver-banner-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.driver-banner-action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInFromRight 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.btn-driver-apply {
    background: var(--white);
    color: var(--pink);
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-driver-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0 120px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(1px) brightness(0.5) saturate(0.9);
    opacity: 0.4;
    z-index: 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 139, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
    z-index: 0;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    width: 100%;
    max-width: 800px;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    flex-grow: 1;
    font-style: italic;
    text-align: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.author-avatar svg {
    width: 24px;
    height: 24px;
}

.testimonial-author {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    justify-content: center;
}

.author-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    text-align: left;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin: 0;
    text-align: left;
}

/* Carousel Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--pink);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dots .dot:hover {
    background: var(--pink);
    transform: scale(1.2);
}

.carousel-dots .dot.active {
    background: var(--pink);
    width: 32px;
    border-radius: 6px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-primary);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    max-width: 500px;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 1.5rem 0 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.detail-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-detail-item:hover .detail-icon::before {
    width: 100px;
    height: 100px;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-detail-item:hover .detail-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 0, 255, 0.4);
}

.contact-detail-item:hover .detail-icon svg {
    transform: scale(1.1);
}

.detail-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.detail-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

.detail-content a {
    color: var(--pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-content a:hover {
    color: var(--purple);
}

.contact-form-section {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.contact-form,
.apply-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 0, 255, 0.1);
}

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

.btn-submit {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 255, 0.3);
}

/* Checkbox styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: var(--pink);
}

.checkbox-text {
    flex: 1;
}

.privacy-link {
    color: var(--pink);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--purple);
}

/* Privacy Policy Modal Content */
.privacy-content {
    padding: 1rem 0;
}

.privacy-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.privacy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), var(--magenta), transparent);
    opacity: 0.3;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 20, 147, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 450px;
}

.footer-logo {
    height: auto;
    max-width: 100%;
    width: auto;
    max-height: 200px;
    margin-bottom: 1.5rem;
    filter: var(--logo-filter);
    object-fit: contain;
}

.footer-tagline {
    color: var(--text-tertiary);
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--footer-text);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-column a:hover {
    color: var(--pink);
    padding-left: 12px;
}

.footer-column a:hover::before {
    width: 6px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

.footer-legal {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-legal p {
    margin-bottom: 0.5rem;
    color: var(--text-tertiary);
}

.footer-legal strong {
    color: var(--footer-text);
    font-weight: 600;
}

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

.footer-legal a:hover {
    color: var(--magenta);
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    animation: slideUp 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: var(--card-bg);
    color: var(--text-primary);
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 300px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .driver-banner-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .driver-banner-action {
        justify-content: center;
    }

    .driver-banner-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: var(--bg-primary);
        width: 100%;
        height: 100vh;
        padding: 100px 2rem 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        border-top: none;
        z-index: 1000;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(255, 20, 147, 0.05) 100%);
        z-index: -1;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-primary) !important;
        text-shadow: none !important;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0.25rem 0;
    }

    .nav-menu a:hover {
        background: rgba(255, 0, 255, 0.1);
        color: var(--pink) !important;
        padding-left: 2rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu .theme-toggle {
        margin: 1rem 1.5rem;
        width: auto;
        height: auto;
        padding: 1rem;
    }

    .nav-menu .nav-apply-btn {
        margin: 1rem 1.5rem;
        width: calc(100% - 3rem);
        padding: 1rem;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navbar {
        position: relative;
        z-index: 1001;
    }

    .navbar.over-hero {
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(15px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    [data-theme="dark"] .navbar.over-hero {
        background: rgba(0, 0, 0, 0.2) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .navbar.over-content.menu-open {
        background: var(--bg-primary) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .navbar.menu-open .mobile-menu-toggle {
        background: rgba(255, 0, 255, 0.15);
        backdrop-filter: blur(10px);
    }

    .navbar.menu-open .mobile-menu-toggle:hover {
        background: rgba(255, 0, 255, 0.25);
    }

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

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

    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: space-between;
        padding-top: 1.5rem;
    }

    .stat {
        flex: 1;
        text-align: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-visual {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-container {
        margin-left: 0;
    }

    .hero-actions {
        margin-bottom: 2.5rem;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-item.service-item-hidden {
        max-height: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
        transform: translateY(-20px) !important;
    }

    .services-grid.show-all .service-item.service-item-hidden {
        max-height: 600px !important;
        padding: 2.5rem 1.5rem !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .testimonials-carousel {
        max-width: 100%;
        padding: 0 1rem;
    }

    .testimonials-slider {
        min-height: auto;
        height: auto;
    }

    .testimonial-card {
        padding: 2.5rem 1.5rem;
        max-width: 100%;
        position: relative !important;
        opacity: 0;
        display: none;
    }

    .testimonial-card.active {
        display: flex;
        opacity: 1;
        position: relative !important;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .testimonial-author {
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .driver-banner-title {
        font-size: 1.75rem;
    }

    .driver-banner-text {
        font-size: 1rem;
    }

    .btn-driver-apply {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .about-image-img {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .contact-form-section {
        padding: 2rem 1.5rem;
    }
}
