/* ===== CSS Variables ===== */
:root {
    --primary: #E53E2E;
    --primary-dark: #C62828;
    --primary-light: #FF6F5E;
    --secondary: #4CAF50;
    --secondary-dark: #388E3C;
    --accent: #FFC107;
    --accent-dark: #FFA000;
    --dark: #1A1A1A;
    --dark-grey: #424242;
    --grey: #8E8E8E;
    --light-grey: #E8E8E8;
    --bg: #F7F7F7;
    --white: #FFFFFF;
    --black: #000000;
    --shadow: 0 2px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(229, 62, 46, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline.gold {
    color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.btn-outline.gold:hover {
    background: var(--accent-dark);
    color: var(--white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 48px;
    font-size: 18px;
}

/* ===== Header Top Bar ===== */
.header-top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    padding: 6px 0;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    display: flex;
}

.top-bar-social a:hover {
    color: var(--primary-light);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: var(--transition);
}

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

.header.scrolled .header-top-bar {
    margin-top: -36px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 52px;
    width: auto;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey);
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 14px;
    left: 14px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    font-weight: 700;
    font-size: 13px;
    color: var(--dark-grey);
    padding: 7px 16px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1.5px solid var(--light-grey);
}

.lang-toggle:hover {
    background: var(--bg);
    color: var(--primary);
    border-color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
    padding-top: 140px;
    padding-bottom: 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 40%, #0F3460 100%);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: pulseShape 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation: pulseShape 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    top: 40%;
    left: 30%;
    animation: pulseShape 6s ease-in-out infinite;
}

@keyframes pulseShape {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-bottom: 100px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1.2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229,62,46,0.15);
    color: var(--primary-light);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    border: 1px solid rgba(229,62,46,0.25);
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 22px;
    color: var(--white);
}

.hero-content h1 .highlight {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 0;
    left: 0;
    height: 10px;
    background: rgba(229,62,46,0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.9;
    max-width: 520px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Store Badges */
.store-badges {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 32px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}

.store-badge:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.store-badge svg {
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-text small {
    font-size: 10px;
    opacity: 0.7;
}

.badge-text strong {
    font-size: 15px;
    font-weight: 700;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    width: fit-content;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-number {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
}

/* Hero Image / Mascot */
.hero-image {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascot-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(229,62,46,0.2) 0%, rgba(229,62,46,0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero-mascot {
    max-width: 400px;
    max-height: 480px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: mascotFloat 4s ease-in-out infinite;
}

@keyframes mascotFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.95);
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    z-index: 2;
    white-space: nowrap;
    animation: floatBounce 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-card-1 {
    top: 40px;
    right: -30px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 100px;
    left: -40px;
    animation-delay: 1s;
}

.floating-card-3 {
    top: 55%;
    left: -20px;
    animation-delay: 2s;
}

html[dir="ltr"] .floating-card-1 {
    right: auto;
    left: -30px;
}

html[dir="ltr"] .floating-card-2 {
    left: auto;
    right: -40px;
}

html[dir="ltr"] .floating-card-3 {
    left: auto;
    right: -20px;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ===== Services ===== */
.services {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-card p {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
}

/* ===== Section Subtitle ===== */
.section-subtitle {
    text-align: center;
    color: var(--grey);
    font-size: 17px;
    margin-top: -32px;
    margin-bottom: 48px;
    line-height: 1.8;
}

/* ===== Coverage ===== */
.coverage {
    padding: 80px 0;
    background: var(--bg);
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.city-tag {
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-grey);
    transition: var(--transition);
    cursor: pointer;
}

.city-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.city-tag.hidden-city {
    display: none;
}

.city-tag.hidden-city.show {
    display: block;
}

.show-more-btn {
    display: block;
    margin: 0 auto;
    background: none;
    border: none;
    color: var(--primary);
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 16px;
    transition: var(--transition);
}

.show-more-btn:hover {
    color: var(--primary-dark);
}

/* ===== Membership ===== */
.membership {
    padding: 80px 0;
    background: var(--white);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.membership-card {
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.plus-card {
    background: linear-gradient(135deg, #FFF5F4 0%, #FFE8E5 100%);
    border: 1px solid rgba(229, 62, 46, 0.15);
}

.rewards-card {
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF3D0 100%);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.membership-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.membership-badge.gold {
    background: var(--accent-dark);
}

.membership-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.membership-card p {
    font-size: 15px;
    color: var(--dark-grey);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* ===== Partners ===== */
.partners {
    padding: 80px 0;
    background: var(--bg);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.partner-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.partner-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.partner-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.partner-card p {
    font-size: 15px;
    color: var(--grey);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* ===== About ===== */
.about {
    padding: 80px 0;
    background: var(--bg);
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1.2;
}

.about-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.4;
    color: var(--dark);
}

.about-content > p {
    font-size: 16px;
    color: var(--dark-grey);
    line-height: 1.9;
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--white);
    border-radius: 14px;
    transition: var(--transition);
}

.about-feature:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.about-feature p {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.5;
}

.about-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.about-visual {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229,62,46,0.08) 0%, rgba(76,175,80,0.08) 100%);
    border: 2px dashed rgba(229,62,46,0.15);
    animation: spin 30s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-logo-img {
    max-width: 180px;
    z-index: 1;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--light-grey);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(229,62,46,0.2);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(229,62,46,0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    gap: 16px;
    text-align: inherit;
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--grey);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--dark-grey);
    line-height: 1.9;
}

/* ===== Terms & Privacy ===== */
.terms-privacy {
    padding: 60px 0;
    background: var(--bg);
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.legal-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.legal-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.legal-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.legal-card p {
    font-size: 14px;
    color: var(--dark-grey);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ===== Contact ===== */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg);
    border-radius: 14px;
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

html[dir="ltr"] .contact-card:hover {
    transform: translateX(-4px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 14px;
    color: var(--grey);
}

.contact-form-wrapper {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--light-grey);
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229,62,46,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
}

/* ===== Download ===== */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.download-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.download-content {
    flex: 1;
}

.download-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.download-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.8;
}

.download-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.download-mascot {
    max-width: 320px;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 16px 40px rgba(0,0,0,0.3));
    animation: mascotFloat 4s ease-in-out infinite;
}

.download .store-badge {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.download .store-badge:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 24px;
    background: var(--dark);
    color: rgba(255,255,255,0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--primary-light);
}

/* Footer Vision */
.footer-vision-col {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.vision-logo {
    height: 50px;
    width: auto;
    opacity: 0.35;
    transition: opacity 0.3s;
    padding: 8px 14px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
}

.vision-logo:hover {
    opacity: 0.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.powered-by {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.powered-by:hover {
    color: var(--primary-light);
}

/* ===== LTR (English) ===== */
html[dir="ltr"] .service-link {
    direction: ltr;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .header-top-bar {
        display: none;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        z-index: 999;
    }

    .nav.open {
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-link::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-mascot {
        max-width: 300px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-inner {
        flex-direction: column;
    }

    .about-image {
        order: -1;
    }

    .about-visual {
        width: 240px;
        height: 240px;
    }

    .about-logo-img {
        max-width: 130px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 90px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-stats {
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .store-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-mascot {
        max-width: 260px;
    }

    .hero-glow {
        width: 300px;
        height: 300px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .membership-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-content h3 {
        font-size: 26px;
    }

    .download-inner {
        flex-direction: column;
        text-align: center;
    }

    .download-content h2 {
        font-size: 28px;
    }

    .download .store-badges {
        justify-content: center;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .header-inner {
        height: 60px;
    }

    .logo img {
        height: 40px;
    }

    .btn-sm {
        padding: 6px 14px;
        font-size: 12px;
    }

    .lang-toggle {
        font-size: 12px;
        padding: 6px 10px;
    }

    .header-actions .btn {
        display: none;
    }

    .vision-badge {
        padding: 10px 20px;
    }

    .vision-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-stats {
        gap: 14px;
        padding: 14px 16px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
    }

    .hero-mascot {
        max-width: 220px;
    }

    .services,
    .coverage,
    .membership,
    .partners,
    .about,
    .contact,
    .download {
        padding: 60px 0;
    }

    .service-card,
    .membership-card,
    .partner-card {
        padding: 24px;
    }

    .store-badge {
        padding: 8px 14px;
    }

    .badge-text strong {
        font-size: 13px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
}
