/* ====================================
   iMali Digital Money App - Main Styles
   ==================================== */

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-red: #dc143c;
    --primary-burgundy: #8b0000;
    --accent-red: #c92a2a;
    --light-pink: #fff5f5;
    --light-bg: #f8f9fa;
    
    /* Neutral Colors */
    --dark-text: #1a1a1a;
    --gray-text: #666666;
    --light-gray: #e0e0e0;
    --white: #ffffff;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================================
   Navigation Bar
   ==================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.logo img {
    height: 65px;
    width: auto;
}

/* Navigation Menu - Centered Pill Container */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 10px 25px;
    border-radius: 50px;
    display: block;
}

.nav-menu a:hover {
    color: var(--primary-red);
    background: rgba(220, 20, 60, 0.05);
}

.nav-menu a.active {
    color: var(--primary-red);
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-login {
    padding: 10px 25px;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--light-bg);
}

.btn-signup {
    padding: 10px 25px;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ====================================
   Hero Section
   ==================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 140px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 245, 245, 0.9) 0%, rgba(255, 240, 240, 0.95) 100%), 
                url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: end;
    position: relative;
    z-index: 2;
}

/* ====================================
   Hero Text Content
   ==================================== */
.hero-text {
    max-width: 600px;
}

/* App Ratings */
.app-ratings {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
}

.rating-source {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-text);
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-text);
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary {
    padding: 16px 35px;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(220, 20, 60, 0.4);
}

/* ====================================
   Hero Image / Phone Mockup
   ==================================== */
.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 700px;
    transform: scale(1.2);
    margin-bottom: 0;
}

.phone-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ====================================
   Partner Logos Section
   ==================================== */
.partner-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #c9c9c9;
    padding: 35px 0;
    z-index: 10;
}

.partner-title {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: none;
}

/* ====================================
   About Section
   ==================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* About Text */
.about-text {
    max-width: 550px;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-description {
    font-size: 1.05rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    min-width: 50px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    padding: 0 12px;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-text);
}

/* Laptop Mockup */
.about-video {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.laptop-screen {
    position: relative;
    width: 100%;
    padding-top: 62.5%; /* 16:10 aspect ratio */
    background: #1a1a1a;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 8px solid #2d2d2d;
}

.laptop-base {
    position: relative;
    width: 120%;
    height: 15px;
    background: linear-gradient(to bottom, #3d3d3d 0%, #2d2d2d 100%);
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    left: -10%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.laptop-notch {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 0 0 8px 8px;
    z-index: 1;
}

/* Video Placeholder */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(139, 0, 0, 0.15) 100%),
                url('../assets/images/video-thumbnail.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(139, 0, 0, 0.2) 100%),
                url('../assets/images/video-thumbnail.jpg') center/cover no-repeat;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.play-button {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(220, 20, 60, 0.3));
}

.video-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* ====================================
   Features Section - 5 Rapid Highlights
   ==================================== */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.85) 0%, rgba(243, 229, 245, 0.85) 50%, rgba(255, 243, 224, 0.85) 100%), url('../assets/images/skyscraper-building-in-hong-kong-city-view-in-blu-2026-01-09-09-11-03-utc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Feature Cards */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 35px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.feature-card:nth-child(1) {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.feature-card:nth-child(4) {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.feature-card:nth-child(5) {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(30px);
}

/* Card Icons */
.card-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.icon-box {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Icon Colors - for Phosphor Icons */
.icon-green {
    color: #10b981;
}

.icon-orange {
    color: #f59e0b;
}

.icon-purple {
    color: #8b5cf6;
}

.icon-blue {
    color: #3b82f6;
}

.feature-card:hover .icon-box {
    transform: scale(1.05);
}

/* Card Content */
.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-description {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Card Badge */
.card-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .card-badge {
    background: rgba(220, 20, 60, 0.15);
}

/* Card Favorite Button */
.card-favorite {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: var(--gray-text);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-favorite:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

/* ====================================
   Statistics Section
   ==================================== */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Stats Text */
.stats-text {
    max-width: 500px;
}

.stats-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.stats-description {
    font-size: 1.05rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 32px;
}

.btn-stats {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
}

.btn-stats:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.4);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-text);
    font-weight: 500;
}

/* ====================================
   Modals - Login & Registration
   ==================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary-red);
    transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--gray-text);
    margin: 0;
}

/* Modal Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.form-icon-box.icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.form-icon-box.icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.form-icon-box.icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.form-icon-box.icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.form-icon-box i {
    color: var(--white);
}

.form-input-modal {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.form-input-modal[type="password"] {
    padding-right: 48px;
}

.form-input-modal:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
}

.form-input-modal::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--gray-text);
    transition: color 0.3s ease;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--primary-red);
}

/* Form Row */
.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--dark-text);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-red);
}

.checkbox-terms {
    margin-top: 8px;
}

.checkbox-terms a {
    color: var(--primary-red);
    text-decoration: none;
}

.checkbox-terms a:hover {
    text-decoration: underline;
}

.forgot-link {
    font-size: 0.9rem;
    color: var(--primary-red);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.forgot-link:hover {
    opacity: 0.8;
}

/* Modal Buttons */
.btn-modal-primary {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
}

.btn-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.4);
}

/* Modal Divider */
.modal-divider {
    position: relative;
    text-align: center;
    margin: 24px 0;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.modal-divider::before {
    left: 0;
}

.modal-divider::after {
    right: 0;
}

.modal-divider span {
    display: inline-block;
    padding: 0 16px;
    background: var(--white);
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* Social Login */
.social-login {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-social:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(220, 20, 60, 0.05);
}

.btn-social i {
    font-size: 20px;
}

/* Modal Footer */
.modal-footer-text {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-text);
    margin: 16px 0 0;
}

.modal-footer-text a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.modal-footer-text a:hover {
    text-decoration: underline;
}

/* ====================================
   Responsive Design
   ==================================== */

/* Tablet */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .app-ratings {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        align-items: center;
    }
    
    .phone-mockup {
        max-width: 600px;
        transform: scale(1.1);
        margin-bottom: 0;
    }
    
    .partner-logos {
        gap: 40px;
    }
    
    .partner-logo {
        height: 35px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-text {
        max-width: 100%;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.4rem;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .laptop-mockup {
        max-width: 500px;
    }
    
    .features-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Stats Section Tablet */
    .stats-content {
        gap: 50px;
    }
    
    .stats-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Footer Tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding-bottom: 50px;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
    
    /* Testimonials Tablet */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Download Section Tablet */
    .download-content {
        gap: 40px;
    }
    
    .download-title {
        font-size: 2.5rem;
    }
    
    .download-description {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        transform: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 12px 20px;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-buttons {
        gap: 10px;
    }
    
    .btn-login {
        padding: 8px 18px;
        font-size: 14px;
    }
    
    .btn-signup {
        padding: 8px 18px;
        font-size: 14px;
    }
    
    .hero-section {
        padding: 100px 0 120px;
        background-attachment: scroll;
        overflow: hidden;
    }
    
    .hero-image {
        align-items: center;
    }
    
    .phone-mockup {
        max-width: 450px;
        transform: scale(1.05);
        margin-bottom: 0;
    }
    
    .partner-section {
        padding: 25px 0;
    }
    
    .partner-logos {
        gap: 30px;
    }
    
    .partner-logo {
        height: 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .app-ratings {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .laptop-mockup {
        max-width: 400px;
    }
    
    .video-text {
        font-size: 0.95rem;
    }
    
    .features-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 25px;
        min-height: auto;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .icon-box {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    /* Stats Section Mobile */
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .stats-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .btn-stats {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 24px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact {
        gap: 14px;
    }
    
    .footer-contact li {
        font-size: 0.9rem;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-btn {
        width: 100%;
        height: 48px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .payment-icon {
        height: 24px;
    }
    
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-header {
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 28px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-location {
        font-size: 0.85rem;
    }
    
    /* Download Section Mobile */
    .download-section {
        padding: 60px 0;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .download-text {
        max-width: 100%;
    }
    
    .download-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .download-description {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }
    
    .download-badges {
        justify-content: center;
        margin-bottom: 32px;
        gap: 12px;
    }
    
    .store-badge img {
        height: 45px;
    }
    
    .download-stats {
        justify-content: center;
        gap: 32px;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .phone-frame {
        max-width: 250px;
    }
    
    /* Modals Mobile */
    .modal-content {
        padding: 32px 24px;
        max-height: 95vh;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
    }
    
    .modal-form {
        gap: 16px;
    }
    
    .input-wrapper {
        gap: 8px;
    }
    
    .form-icon-box {
        width: 44px;
        height: 44px;
    }
    
    .form-icon-box i {
        font-size: 18px !important;
    }
    
    .form-input-modal {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .form-input-modal[type="password"] {
        padding-right: 44px;
    }
    
    .password-toggle {
        right: 12px;
    }
    
    .form-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .social-login {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   Testimonials Section
   ==================================== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef5f5 0%, #ffffff 100%);
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Star Rating */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 28px;
    flex-grow: 1;
    font-style: italic;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.author-location {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
}

/* ====================================
   Download App CTA Section
   ==================================== */
.download-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Download Text */
.download-text {
    max-width: 550px;
}

.download-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.download-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Store Badges */
.download-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 5px;
    overflow: hidden;
}

.store-badge img {
    display: block;
    height: 50px;
    width: auto;
}

.store-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Download Stats */
.download-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Download Image */
.download-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.app-screen {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer About Column */
.footer-about {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-red);
}

/* Newsletter */
.footer-newsletter {
    max-width: 300px;
}

.newsletter-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-red);
}

.newsletter-btn {
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    border: none;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: var(--primary-burgundy);
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-icon {
    height: 28px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

/* Footer Responsive */
    .hero-title {
        font-size: 1.8rem;
    }
}