@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --brand-color: #0d9488;
    --brand-light: #2dd4bf;
    --brand-dark: #0f766e;
    --neutral-bg: #ffffff;
    --neutral-text: #1e293b;
    --neutral-secondary: #64748b;
    --neutral-border: #cbd5e1;
    --success-color: #16a34a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--neutral-bg);
    color: var(--neutral-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Header Styles */
header {
    background-color: var(--neutral-bg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-color);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.nav-links a {
    color: var(--neutral-text);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-color);
}

section {
    padding: 5rem 1rem;
    width: 100%;
    overflow: hidden;
    max-width: 100%;
}

#hero {
    text-align: center;
    padding: 8rem 2rem;
    background-color: #f8fafc;
}

h1 {
    font-size: 3.5rem;
    color: var(--brand-color);
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    color: var(--neutral-secondary);
    margin-bottom: 1.5rem;
}

.description {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button {
    background-color: var(--brand-color);
    width: fit-content;
    color: white;
    border: none;
    margin: 0 auto;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--brand-dark);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--brand-color);
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--neutral-secondary);
}

/* Testimonials Section */
#testimonials {
    background-color: #f8fafc;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quote {
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    color: var(--brand-color);
    font-weight: 600;
}

/* Footer Styles */
footer {
    background-color: var(--neutral-text);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--brand-light);
}

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

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--neutral-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .tagline {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    section {
        padding: 3rem 1rem;
    }

    .services-grid,
    .features-grid,
    .testimonials-container {
        gap: 1rem;
    }

    .feature-card,
    .testimonial {
        padding: 1.5rem;
    }

    .blob-1,
    .blob-2,
    .blob-3 {
        transform: scale(0.5);
    }

    .stats-container {
        padding: 2rem 1rem;
    }
}

/* Why Choose Us Section */
#why-choose-us {
    padding: 8rem 2rem;
    background: linear-gradient(135deg,
            rgba(13, 148, 136, 0.05) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(45, 212, 191, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    color: var(--neutral-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.15);
}

.feature-icon {
    font-size: 2rem;
    color: var(--brand-color);
    margin-bottom: 1.5rem;
    position: relative;
    width: fit-content;
}

.feature-icon::after,
.feature-icon::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.feature-card h3 {
    color: var(--brand-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--brand-color),
            var(--brand-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .card-accent {
    opacity: 1;
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--neutral-secondary);
    font-size: 1.1rem;
}

/* Enhanced Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg,
            rgba(248, 250, 252, 0.95),
            rgba(248, 250, 252, 0.85));
}

/* Enhanced Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(13, 148, 136, 0.1),
            transparent);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: translate(50%, 50%);
}

/* Enhanced Testimonials */
.testimonial {
    position: relative;
    padding: 2.5rem;
}

/* Add subtle animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.6s;
}

/* Update/Add styles for app store buttons */
.app-stores {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
}

.store-button {
    transition: transform 0.3s ease;
    display: inline-block;
}

.store-button:hover {
    transform: translateY(-3px);
}

.store-badge {
    height: 50px;
    width: auto;
    max-width: 100%;
}

/* Specific adjustments for Google Play badge */
.google-play .store-badge {
    height: 74px;
    /* Google Play badge needs to be slightly larger */
}

/* Specific adjustments for App Store badge */
.app-store .store-badge {
    height: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .app-stores {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .store-badge {
        height: 40px;
    }

    .google-play .store-badge {
        height: 60px;
    }

    .app-store .store-badge {
        height: 40px;
    }
}

/* Add modern CSS reset and smooth scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Enhanced Gradient Blobs */
.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 50%, var(--brand-color), transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 70% 50%, var(--brand-light), transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 50% 50%, var(--brand-dark), transparent 70%);
    top: 40%;
    left: 30%;
    animation: float 30s ease-in-out infinite;
}

/* Enhanced Hero Section */
#hero {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
        repeating-linear-gradient(45deg,
            rgba(13, 148, 136, 0.02) 0px,
            rgba(13, 148, 136, 0.02) 1px,
            transparent 1px,
            transparent 10px);
    backdrop-filter: blur(10px);
}

#hero h1 {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 20px rgba(13, 148, 136, 0.2);
    letter-spacing: -2px;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 1.5rem 0;
    color: var(--neutral-text);
    opacity: 0.9;
}

/* Enhanced Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 148, 136, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.15);
    border-color: var(--brand-color);
}

.service-card img {
    transform: scale(1.01);
    transition: transform 0.5s ease;
}

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

/* Enhanced Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 148, 136, 0.1);
    padding: 3rem 2rem;
}

.feature-icon {
    position: relative;
    z-index: 1;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at center,
            rgba(13, 148, 136, 0.1),
            transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon::before {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at center,
            rgba(13, 148, 136, 0.2),
            transparent 70%);
}

/* Enhanced Testimonials */
.testimonial {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 148, 136, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 148, 136, 0.1);
}

.quote::before {
    content: '"';
    font-size: 4em;
    position: absolute;
    top: -10px;
    left: 10px;
    color: var(--brand-color);
    opacity: 0.1;
}

/* Enhanced Stats Container */
.stats-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 148, 136, 0.1);
    border-radius: 30px;
    padding: 4rem 2rem;
}

.stat-number {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3.5rem;
    font-weight: 700;
}

/* Enhanced Navigation */
nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.nav-links a {
    position: relative;
}

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

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

/* Custom Scrollbar */
/* ::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(13, 148, 136, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-color);
    border-radius: 5px;
} */

/* Enhanced Button Styles */
.cta-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-color), var(--brand-dark));
    border-radius: 30px;
    padding: 1.2rem 3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
}

/* Section Headers */
h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
}

/* Add subtle animations */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -20px) rotate(2deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-2deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .gradient-blob {
        opacity: 0.3;
    }
}

/* Ensure images don't cause overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Terms of Service Page Styles */
.terms-section {
    padding: 0 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.terms-section h2 {
    text-align: center;
    margin: 2rem;
    color: var(--brand-color);
}

.section-subtitle {
    text-align: center;
    color: var(--neutral-secondary);
    margin-bottom: 3rem;
}

.terms-list {
    list-style-type: none;
    counter-reset: section;
    padding: 0;
}

.terms-list>li {
    margin-bottom: 3rem;
    counter-increment: section;
}

.terms-list>li::before {
    content: counter(section) ".";
    color: var(--brand-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.terms-list h3 {
    color: var(--brand-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: inline-block;
}

.terms-list p {
    color: var(--neutral-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-list ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

.terms-list ul li {
    color: var(--neutral-text);
    margin-bottom: 0.5rem;
}

.terms-list a {
    color: var(--brand-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .terms-section {
        padding: 3rem 1rem;
    }

    .terms-section h2 {
        margin-top: 0;
        font-size: 2rem;
    }
}

/* Table Styles */
.cancellation-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.cancellation-table th,
.cancellation-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--neutral-border);
}

.cancellation-table th {
    background-color: var(--brand-color);
    color: white;
    font-weight: 500;
}

.cancellation-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .cancellation-table {
        font-size: 0.9rem;
    }

    .cancellation-table th,
    .cancellation-table td {
        padding: 0.5rem;
    }
}

/* Tabbed Cabs Section Styles */
.tabbed-cabs-section {
    background: #f8f9fa;
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
}

.tabbed-cabs-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    justify-content: flex-start;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
}

.tab-link {
    background: none;
    border: none;
    font-size: 1.2em;
    padding: 8px 16px;
    cursor: pointer;
    color: #444;
}

.tab-link.active {
    color: #1976d2;
}

.tab-link-line {
    height: 4px;
    background-color: transparent;
    border-radius: 4px 4px 0px 0px;
    transition: background-color 0.2s;
}

.tab-link-line.active {
    background-color: #1976d2;
}

.tab-content {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

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

.cabs-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4px 24px;
    font-size: 0.90em;
    line-height: 1.7;
    color: #555;
    padding: 0;
    margin-bottom: 8px;
}

.cabs-links a {
    display: inline-block;
    margin-bottom: 4px;
    margin-right: 12px;
    padding: 2px 0;
    text-decoration: none !important;
    color: inherit !important;
    font-size: 0.95em;
    letter-spacing: 0.01em;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .cabs-links {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 10px 20px;
    }
}

@media (max-width: 700px) {
    .tabbed-cabs-section {
        padding: 3rem 1rem 2rem 1rem;
    }

    .cabs-links {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 8px 16px;
        font-size: 0.90em;
    }

    .cabs-links a {
        margin-right: 10px;
        font-size: 0.92em;
    }
}

@media (max-width: 480px) {
    .cabs-links {
        grid-template-columns: 1fr;
        gap: 6px 12px;
    }

    .cabs-links a {
        font-size: 0.90em;
    }
}

/* Download Page Styles */
#download-hero {
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.download-content {
    max-width: 800px;
    width: 100%;
    z-index: 1;
    position: relative;
}

.device-message {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #f0fdfa;
}

.device-message:hover {
    transform: translateY(-5px);
}

.ios-coming-soon, .android-download {
    background: linear-gradient(135deg, #115e59 0%, #042f2e 100%);
    color: white;
}

.ios-coming-soon h2, .android-download h2 {
    color: #99f6e4;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    margin: 0 auto 2rem;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.download-button {
    display: inline-block;
    background: var(--brand-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    margin: 1rem 0;
}

.download-button:hover {
    background: var(--brand-dark);
}

@media (max-width: 768px) {
    #download-hero {
        padding: 1rem;
    }

    .device-message {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }

    .app-icon {
        width: 100px;
        height: 100px;
    }

    .download-content {
        max-width: 100%;
    }
}