/* ====================================
   CSS Variables & Reset
   ==================================== */
:root {
    --primary-color: #021364;
    --secondary-color: #FF7F27;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --gradient-primary: linear-gradient(135deg, #021364 0%, #0329a8 100%);
    --gradient-secondary: linear-gradient(135deg, #FF7F27 0%, #ff9f5a 100%);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

/* ====================================
   Utility Classes
   ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(2, 19, 100, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ====================================
   Buttons
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 19, 100, 0.3);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 127, 39, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--text-dark);
    color: white;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
}

.btn-store i {
    font-size: 1.8rem;
}

.btn-store div {
    text-align: left;
}

.btn-store span {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.btn-store strong {
    font-size: 1rem;
}

.btn-store:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-store-large {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: var(--text-dark);
    color: white;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.btn-store-large i {
    font-size: 2.2rem;
}

.btn-store-large div {
    text-align: left;
}

.btn-store-large span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.btn-store-large strong {
    font-size: 1.1rem;
}

.btn-store-large:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ====================================
   Header
   ==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-text .logo-tap {
    color: var(--primary-color);
}

.logo-text .logo-on {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.desktop-only {
    display: flex;
}

.mobile-nav-cta {
    display: none;
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(2, 19, 100, 0.15);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: rgba(255, 127, 39, 0.15);
    bottom: -100px;
    right: -100px;
    animation-delay: 7s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(2, 19, 100, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.badge i {
    color: var(--secondary-color);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-lighter);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.phone-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-background-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(2, 19, 100, 0.05), rgba(255, 127, 39, 0.05));
    border-radius: 50%;
    z-index: 0;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-mockup img {
    max-width: 320px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.2));
    animation: floatPhone 3s infinite ease-in-out;
}

@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    animation: floatCard 3s infinite ease-in-out;
    z-index: 5;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.card-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.card-content p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--text-light);
    font-weight: 400;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
    border-color: rgba(34, 197, 94, 0.2);
}

.card-1 .card-icon-wrapper {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
    border-color: rgba(2, 19, 100, 0.2);
}

.card-2 .card-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), #010d47);
    color: white;
}

.card-3 {
    bottom: 15%;
    left: 5%;
    animation-delay: 2s;
    border-color: rgba(255, 127, 39, 0.2);
}

.card-3 .card-icon-wrapper {
    background: linear-gradient(135deg, var(--secondary-color), #ff6b00);
    color: white;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   How It Works
   ==================================== */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.app-only-note {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255, 127, 39, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.app-only-note i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* ====================================
   Categories
   ==================================== */
.categories {
    padding: 80px 0;
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.category-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.category-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--secondary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.new {
    background: #22c55e;
}

/* ====================================
   Why Choose
   ==================================== */
.why-choose {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ====================================
   Stats
   ==================================== */
.stats {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ====================================
   Partners
   ==================================== */
.partners {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

/* Partner Steps */
.partner-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.partner-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.partner-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.partner-step-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin: 20px 0;
}

.partner-step h3 {
    font-size: 1.2rem;
    margin: 16px 0 8px;
    color: var(--text-dark);
}

.partner-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.partner-step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Partner Benefits Grid */
.partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.partner-benefit-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.partner-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.partner-benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.partner-benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Partner CTA */
.partner-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    margin-top: 60px;
}

.partner-cta-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 16px;
}

.partner-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.partner-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
}

.partner-cta-buttons .btn-primary:hover {
    background: var(--bg-light);
}

.partner-cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.partner-cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* ====================================
   Pricing
   ==================================== */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: var(--shadow-md);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--text-light);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-badge.popular {
    background: var(--secondary-color);
}

.plan-badge.pro {
    background: var(--primary-color);
}

.plan-name {
    font-size: 1.5rem;
    margin: 20px 0;
    color: var(--text-dark);
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 24px 0;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 10px;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 20px;
}

.plan-features {
    text-align: left;
    margin: 32px 0;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i.fa-check {
    color: #22c55e;
}

.plan-features i.fa-times {
    color: #ef4444;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-note i {
    color: var(--primary-color);
    margin-right: 6px;
}

/* ====================================
   App Download
   ==================================== */
.app-download {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.download-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.download-qr {
    display: flex;
    align-items: center;
    gap: 20px;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: white;
    padding: 10px;
    border-radius: var(--border-radius);
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.download-qr p {
    font-size: 0.9rem;
    margin: 0;
}

.download-image img {
    border-radius: var(--border-radius-lg);
}

/* ====================================
   About
   ==================================== */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.value-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ====================================
   Contact
   ==================================== */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: white;
    padding: 28px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 4px 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--text-dark);
    color: white;
}

/* Newsletter Section */
.footer-top {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0329a8 100%);
    padding: 50px 0;
}

.footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.newsletter-text h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.newsletter-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 450px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-form input:focus {
    outline: none;
    background: white;
}

.newsletter-form button {
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Main Footer */
.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
}

.footer-logo .logo-tap {
    color: white;
}

.footer-logo .logo-on {
    color: var(--secondary-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-item i {
    width: 18px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 127, 39, 0.4);
}

.footer-column h4 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a i {
    font-size: 0.7rem;
    color: var(--secondary-color);
    opacity: 0;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 8px;
}

.footer-column ul li a:hover i {
    opacity: 1;
}

.download-description {
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.footer-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    margin-bottom: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-app-btn:hover {
    background: var(--primary-color);
    transform: translateX(5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(2, 19, 100, 0.3);
}

.footer-app-btn i {
    font-size: 2rem;
}

.footer-app-btn div {
    text-align: left;
}

.footer-app-btn span {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.footer-app-btn strong {
    font-size: 1rem;
}

.footer-rating {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-rating .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.footer-rating .stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.footer-rating span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Trust Badges */
.footer-trust {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Footer Bottom */
.footer-bottom {
    padding: 28px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-copyright i {
    color: #ef4444;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: white;
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

.back-to-top-btn {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 127, 39, 0.3);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.back-to-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 127, 39, 0.4);
}

/* ====================================
   Modal
   ==================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.modal-content p {
    text-align: center;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 968px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-content,
    .partners-content,
    .download-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image {
        position: relative;
    }

    .mockup-background-circle {
        width: 280px;
        height: 280px;
    }

    .phone-mockup {
        position: relative;
        z-index: 1;
    }

    .phone-mockup img {
        max-width: 250px;
    }

    .floating-cards-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 30px 5px;
        z-index: 10;
        pointer-events: none;
    }

    .floating-card {
        position: relative;
        display: flex;
        padding: 10px 12px;
        margin: 0;
        animation: none;
        max-width: 160px;
        z-index: 10;
        gap: 8px;
        pointer-events: auto;
    }

    .card-icon-wrapper {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .card-content h4 {
        font-size: 0.8rem;
    }

    .card-content p {
        font-size: 0.65rem;
    }
    
    .card-1 {
        align-self: flex-start;
        margin-left: 0px;
        order: 1;
    }
    
    .card-2 {
                margin-left: 90px;
        align-self: flex-start;
        order: 2;
    
    }
    
    .card-3 {
        align-self: flex-start;
        margin-left: 5px;
        order: 3;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 30px 20px 100px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-of-type {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
    }

    .mobile-nav-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 2px solid var(--border-color);
    }

    .mobile-nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .desktop-only {
        display: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-about {
        padding-right: 0;
    }

    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .categories-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
    }

    .partner-steps {
        flex-direction: column;
    }

    .partner-step {
        min-width: 100%;
    }

    .partner-step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .partner-benefits-grid {
        grid-template-columns: 1fr;
    }

    .partner-cta {
        padding: 40px 20px;
    }

    .partner-cta-content h3 {
        font-size: 1.5rem;
    }

    .partner-cta-buttons {
        flex-direction: column;
    }

    .download-text h2 {
        font-size: 2rem;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    /* Footer Mobile Styles */
    .footer-top {
        padding: 40px 0;
    }

    .newsletter-text h3 {
        font-size: 1.25rem;
    }

    .newsletter-text p {
        font-size: 0.85rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-content {
        gap: 16px;
    }

    .back-to-top-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ====================================
   Chatbot Widget
   ==================================== */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: inherit;
}

/* Chat Toggle Button */
.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 127, 39, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    position: relative;
    animation: pulse 2s infinite;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 127, 39, 0.5);
}

.chatbot-toggle.active {
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 127, 39, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 127, 39, 0.6);
    }
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
}

.chatbot-toggle.active .chat-badge {
    display: none;
}

/* Chat Window */
.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

.chatbot-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Chat Header */
.chatbot-header {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bot-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.bot-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.chatbot-close {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Chat Body */
.chatbot-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-light);
}

.chatbot-body::-webkit-scrollbar {
    width: 6px;
}

.chatbot-body::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

/* Chat Messages */
.chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    animation: fadeInMessage 0.3s ease-out;
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message .message-avatar {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-avatar {
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.message-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-message .message-content {
    align-items: flex-end;
}

.message-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 85%;
    box-shadow: var(--shadow-sm);
}

.user-message .message-bubble {
    background: var(--primary-color);
    color: white;
}

.message-bubble p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.message-bubble p + p {
    margin-top: 8px;
}

.message-bubble a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
}

.user-message .message-bubble a {
    color: white;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-lighter);
    padding: 0 8px;
}

/* Quick Action Buttons */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.quick-btn {
    background: white;
    border: 2px solid var(--border-color);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--text-dark);
    text-align: left;
    font-weight: 500;
}

.quick-btn i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.quick-btn:hover {
    border-color: var(--primary-color);
    background: rgba(2, 19, 100, 0.05);
    transform: translateX(4px);
}

.quick-btn:active {
    transform: scale(0.98);
}

/* Chat Footer */
.chatbot-footer {
    padding: 14px 20px;
    background: white;
    border-top: 1px solid var(--border-color);
}

/* Chat Input Container */
.chatbot-input-container {
    padding: 12px 20px;
    background: white;
    border-top: 1px solid var(--border-color);
    display: none;
    gap: 10px;
    align-items: center;
}

.chatbot-input-container input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.chatbot-input-container input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(2, 19, 100, 0.1);
}

.chatbot-input-container button {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.chatbot-input-container button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(2, 19, 100, 0.3);
}

.chatbot-input-container button:active {
    transform: scale(0.95);
}


.whatsapp-btn {
    width: 100%;
    padding: 12px 20px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.footer-note {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-note i {
    color: var(--primary-color);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.typing-indicator .message-avatar {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.typing-dots {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--text-light);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .chatbot-container {
        bottom: 15px;
        right: 15px;
    }

    .chatbot-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .chatbot-window {
        width: calc(100vw - 30px);
        height: calc(100vh - 120px);
        bottom: 75px;
        right: -7.5px;
    }

    .message-bubble {
        max-width: 90%;
    }
}

@media (max-width: 400px) {
    .chatbot-window {
        width: calc(100vw - 20px);
        right: -2.5px;
    }
}

/* ====================================
   WhatsApp Modal
   ==================================== */
.whatsapp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease-out;
}

.whatsapp-modal.active {
    display: flex;
}

.whatsapp-modal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    max-width: 450px;
    width: 100%;
    padding: 32px;
    position: relative;
    animation: modalSlideUp 0.3s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.whatsapp-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.whatsapp-close:hover {
    background: var(--border-color);
    transform: rotate(90deg);
}

.whatsapp-header {
    text-align: center;
    margin-bottom: 28px;
}

.whatsapp-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 16px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.whatsapp-header p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-field label i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #25D366;
}

.form-field textarea {
    resize: vertical;
}

.btn-whatsapp {
    width: 100%;
    padding: 14px 20px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.4rem;
}

.privacy-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-lighter);
    margin: 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.privacy-note i {
    color: #22c55e;
}

/* Mobile Responsive for WhatsApp Modal */
@media (max-width: 640px) {
    .whatsapp-modal-content {
        padding: 24px;
    }

    .whatsapp-header h3 {
        font-size: 1.3rem;
    }

    .whatsapp-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}
