:root {
    --primary: #12B8CD;
    /* Cyan color from mockup */
    --primary-hover: #0ea1b5;
    --primary-light: rgba(18, 184, 205, 0.1);
    --secondary: #0A1929;
    /* Dark blue for footer */
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    /* Light gray for sections */
    --white: #FFFFFF;
    --border-color: #E2E8F0;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 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-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-muted);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.default-bg {
    background-color: var(--bg-light);
}

/* Buttons and Badges */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 184, 205, 0.3);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-center {
    margin-left: auto;
    margin-right: auto;
}

/* Typography styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 24px;
}

.top-bar span,
.top-bar a {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.top-bar a:hover {
    opacity: 1;
    color: var(--primary);
}

.top-bar i {
    width: 14px;
    height: 14px;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo h2 {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-dark);
}

.logo h2 span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-light);
    border-radius: 24px;
    z-index: 1;
}

.img-placeholder {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: dashed 2px var(--border-color);
    z-index: 1;
}

.step-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: 0 0 0 8px var(--white);
}

.icon-wrapper i {
    width: 32px;
    height: 32px;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.floating-rating {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}

.star-icon {
    color: #F59E0B;
    fill: #F59E0B;
    width: 32px;
    height: 32px;
}

.rating-text strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1;
}

.rating-text span {
    font-size: 0.85rem;
}

.about-content p {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* App Section */
.app-section {
    padding: 100px 0;
    background-color: var(--white);
}

.app-container {
    display: flex;
    align-items: center;
    gap: 64px;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    border: 12px solid var(--text-dark);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background-color: var(--text-dark);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-content {
    max-width: 500px;
}

.app-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.store-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    transition: var(--transition);
}

.store-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.store-btn i {
    width: 28px;
    height: 28px;
}

.store-text small {
    display: block;
    font-size: 0.7rem;
    line-height: 1;
}

.store-text strong {
    display: block;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.qr-code-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.qr-code-box p {
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Location Section */
.location {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #E1E7EC;
    border-radius: 24px;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-inner {
    text-align: center;
    color: var(--text-dark);
}

/* Footer Section */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 80px 0 24px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.footer-links h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .app-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-links,
    .nav-action {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-md);
        text-align: center;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .store-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFF;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}