:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --dark: #0f172a;
    --light: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-800: #1f2937;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Global Background Art Removed */

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--dark);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

p {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar - Floating Pill Style */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-container img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Nav Button (Contact) */
.nav-btn {
    padding: 0.6rem 1.5rem;
    background: var(--dark);
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-btn:hover {
    background: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-xl);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 120px 5% 4rem;
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.05), transparent 30%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg_art.png');
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-left: 5%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.hero-title .title-line {
    display: block;
}

.hero-title .gradient-text {
    background: linear-gradient(270deg, var(--primary), #34d399, var(--primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

.hero-subtitle {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* Slide Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-200);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(16, 185, 129, 0.05);
}

/* Hero Visual - Animated Shapes */
.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 20px;
    opacity: 0.8;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.shape:hover {
    opacity: 1;
    z-index: 10;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #34d399);
    top: 10%;
    left: 20%;
    animation: floatShape1 6s ease-in-out infinite;
    transform: rotate(15deg);
}

.shape-1:hover {
    animation-play-state: paused;
    transform: rotate(15deg) scale(1.3);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #34d399, #6ee7b7);
    top: 30%;
    right: 15%;
    animation: floatShape2 8s ease-in-out infinite;
    border-radius: 30px;
    transform: rotate(-10deg);
}

.shape-2:hover {
    animation-play-state: paused;
    transform: rotate(-10deg) scale(1.2);
    box-shadow: 0 25px 50px rgba(52, 211, 153, 0.4);
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dark), #1e293b);
    bottom: 30%;
    left: 30%;
    animation: floatShape3 7s ease-in-out infinite;
    border-radius: 15px;
}

.shape-3:hover {
    animation-play-state: paused;
    transform: scale(1.4) rotate(20deg);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.4);
}

.shape-4 {
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary);
    background: transparent;
    top: 50%;
    left: 10%;
    animation: floatShape4 9s ease-in-out infinite, spinSlow 20s linear infinite;
    border-radius: 25px;
}

.shape-4:hover {
    animation-play-state: paused;
    transform: scale(1.3);
    border-width: 5px;
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.shape-5 {
    width: 40px;
    height: 40px;
    background: var(--primary);
    bottom: 20%;
    right: 25%;
    animation: floatShape5 5s ease-in-out infinite;
    border-radius: 50%;
}

.shape-5:hover {
    animation-play-state: paused;
    transform: scale(1.5);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
}

.shape-6 {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    background: transparent;
    top: 20%;
    right: 30%;
    animation: floatShape6 10s ease-in-out infinite;
    border-radius: 40px;
    transform: rotate(45deg);
}

.shape-6:hover {
    animation-play-state: paused;
    transform: rotate(45deg) scale(1.15);
    border-color: var(--primary);
    border-width: 3px;
    background: rgba(16, 185, 129, 0.05);
}

/* New Additional Shapes */
.shape-7 {
    width: 25px;
    height: 25px;
    background: #34d399;
    top: 5%;
    right: 20%;
    animation: floatShape7 4s ease-in-out infinite;
    border-radius: 50%;
    opacity: 0.7;
}

.shape-7:hover {
    animation-play-state: paused;
    transform: scale(2);
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.8);
}

.shape-8 {
    width: 70px;
    height: 70px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.6), rgba(16, 185, 129, 0.2));
    bottom: 10%;
    left: 15%;
    animation: floatShape8 7s ease-in-out infinite;
    border-radius: 50%;
}

.shape-8:hover {
    animation-play-state: paused;
    transform: scale(1.4);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.shape-9 {
    width: 90px;
    height: 90px;
    border: 2px dashed rgba(16, 185, 129, 0.4);
    background: transparent;
    top: 65%;
    right: 10%;
    animation: floatShape9 11s ease-in-out infinite, spinSlow 30s linear infinite;
    border-radius: 20px;
}

.shape-9:hover {
    animation-play-state: paused;
    transform: scale(1.2);
    border-color: var(--primary);
    border-style: solid;
    background: rgba(16, 185, 129, 0.05);
}

.shape-10 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #059669, #10b981);
    top: 40%;
    left: 45%;
    animation: floatShape10 6s ease-in-out infinite;
    border-radius: 12px;
    transform: rotate(30deg);
}

.shape-10:hover {
    animation-play-state: paused;
    transform: rotate(30deg) scale(1.4);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.5);
}

.shape-11 {
    width: 35px;
    height: 35px;
    background: var(--dark);
    bottom: 40%;
    right: 5%;
    animation: floatShape11 5s ease-in-out infinite;
    border-radius: 8px;
    transform: rotate(-15deg);
}

.shape-11:hover {
    animation-play-state: paused;
    transform: rotate(-15deg) scale(1.5);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.5);
}

.shape-12 {
    width: 180px;
    height: 180px;
    border: 1px solid rgba(52, 211, 153, 0.2);
    background: transparent;
    bottom: 5%;
    right: 35%;
    animation: floatShape12 12s ease-in-out infinite;
    border-radius: 50%;
}

.shape-12:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    border-color: rgba(52, 211, 153, 0.5);
    border-width: 2px;
}

@keyframes floatShape7 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10px, 15px);
    }
}

@keyframes floatShape8 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(25px, -15px);
    }
}

@keyframes floatShape9 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, -10px);
    }
}

@keyframes floatShape10 {

    0%,
    100% {
        transform: translate(0, 0) rotate(30deg);
    }

    50% {
        transform: translate(15px, 20px) rotate(40deg);
    }
}

@keyframes floatShape11 {

    0%,
    100% {
        transform: translate(0, 0) rotate(-15deg);
    }

    50% {
        transform: translate(-15px, -20px) rotate(-5deg);
    }
}

@keyframes floatShape12 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10px, -10px) scale(1.05);
    }
}

/* Glowing Orb */
.hero-orb {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4), rgba(16, 185, 129, 0.1), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: orbPulse 4s ease-in-out infinite;
    position: absolute;
    z-index: 0;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.9;
    }
}

@keyframes floatShape1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(15deg);
    }

    50% {
        transform: translate(20px, -30px) rotate(25deg);
    }
}

@keyframes floatShape2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(-10deg);
    }

    50% {
        transform: translate(-25px, 20px) rotate(5deg);
    }
}

@keyframes floatShape3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(15px, -25px) rotate(15deg);
    }
}

@keyframes floatShape4 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }
}

@keyframes floatShape5 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, -15px) scale(1.2);
    }
}

@keyframes floatShape6 {

    0%,
    100% {
        transform: translate(0, 0) rotate(45deg);
    }

    50% {
        transform: translate(-15px, 25px) rotate(55deg);
    }
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Services Grid - Stylish Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #34d399);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15);
    border-color: transparent;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), #34d399);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.service-line {
    width: 40px;
    height: 3px;
    background: var(--gray-200);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.service-card:hover .service-line {
    width: 60px;
    background: linear-gradient(90deg, var(--primary), #34d399);
}

/* Responsive Services Grid */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Section - Enhanced DriveMate */
.product-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.product-subtitle {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.product-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.product-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #34d399);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-feature-card:hover::after {
    transform: scaleX(1);
}

.product-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12);
    border-color: transparent;
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.product-feature-card:hover .feature-icon-box {
    background: linear-gradient(135deg, var(--primary), #34d399);
    color: white;
    transform: scale(1.05);
}

.product-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-feature-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Benefits Section */
.product-benefits {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 2.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: left;
}

/* Organized Benefits Grid - 4x2 layout */
.benefits-grid-organized {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(16, 185, 129, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.benefit-item:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.benefit-check {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Product CTA */
.product-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Product Section */
@media (max-width: 1024px) {
    .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .product-benefits {
        padding: 2rem;
    }
}

/* Sections */
.drivemate-section {
    padding: 8rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
    background: white;
}

.drivemate-info {
    flex: 1;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--gray-800);
}

.drivemate-card {
    flex: 1;
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.drivemate-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.5s ease;
}

.drivemate-card:hover img {
    transform: scale(1.02);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    background: #ecfdf5;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

/* Tech Grid (Bento Style) */
.tech-section {
    padding: 6rem 5%;
    background: var(--gray-50);
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.tech-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: left;
}

.tech-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.tech-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.tech-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #6b7280;
}

/* Footer */
footer {
    padding: 4rem 5%;
    background: white;
    border-top: 1px solid var(--gray-200);
    text-align: center;
    color: #9ca3af;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation Delays */
.fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

.fade-in:nth-child(4) {
    transition-delay: 0.4s;
}

/* Scale In Animation */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Slide In From Left */
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In From Right */
.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Floating Animation for Hero Image */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Pulse Glow Effect */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
    }
}

.glow-effect {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient {
    background: linear-gradient(270deg, var(--primary), #34d399, var(--primary));
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Card Shine Effect */
.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.card-shine:hover::before {
    transform: rotate(45deg) translateX(100%);
}

/* Bounce Animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

/* Rotate Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin-slow {
    animation: spin 20s linear infinite;
}

/* Text Reveal Animation */
@keyframes textReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

.text-reveal {
    animation: textReveal 1s ease forwards;
}

/* Button Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Parallax-like depth effect */
.depth-effect {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.depth-effect:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

/* Underline Expand Animation */
.underline-expand {
    position: relative;
}

.underline-expand::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease, left 0.3s ease;
}

.underline-expand:hover::after {
    width: 100%;
    left: 0;
}

/* Icon Bounce on Hover */
.icon-hover:hover svg {
    animation: bounce 0.5s ease;
}

/* Background Blob Animation */
@keyframes blobMove {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.blob {
    animation: blobMove 8s ease-in-out infinite;
}

@media (max-width: 1024px) {

    .hero,
    .drivemate-section {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
        padding: 6rem 5%;
    }

    .hero {
        display: flex;
        padding-top: 120px;
    }

    .feature-list {
        text-align: left;
    }

    .nav-links {
        display: none;
    }
}

/* Footer Styles */
.site-footer {
    background: white;
    color: var(--gray-800);
    padding: 2rem 5%;
    margin-top: auto;
    border-top: 1px solid var(--gray-200);
}

.footer-simple-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-simple img {
    height: 32px;
    width: auto;
    /* Removed filter invert to keep original logo colors */
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-simple-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}