/* Index/Home Page Styles */
:root { --space-sm: 10px; --space-md: 20px; --space-lg: 60px; }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
.hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; color: var(--text-white); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; background: rgba(201, 162, 39, 0.15); border: 1px solid rgba(201, 162, 39, 0.4); border-radius: 50px; font-size: 0.9rem; margin-bottom: 25px; color: var(--primary-color); font-weight: 500; backdrop-filter: blur(10px); }
.hero-badge svg { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero-title { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 25px; line-height: 1.15; font-weight: 700; }
.hero-title .highlight { color: var(--primary-color); position: relative; display: inline-block; }
.hero-title .highlight::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary-color), transparent); border-radius: 2px; }
.hero-subtitle { font-size: 1.15rem; opacity: 0.9; margin-bottom: 35px; line-height: 1.8; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 800px; margin: 0 auto; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 25px 20px; background: rgba(255, 255, 255, 0.05); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); transition: var(--transition); }
.stat-item:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-5px); border-color: var(--primary-color); }
.stat-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 5px; }
.stat-icon svg { width: 24px; height: 24px; color: var(--secondary-color); }
.stat-content { text-align: center; }
.stat-number { font-size: 2.2rem; font-weight: 700; color: var(--primary-color); font-family: 'Playfair Display', serif; display: block; }
.stat-label { font-size: 0.9rem; opacity: 0.85; color: rgba(255, 255, 255, 0.9); }

/* About Preview */
.about-preview { background: var(--bg-secondary); }
.about-content { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image-placeholder { width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); border-radius: 24px; display: flex; align-items: center; justify-content: center; box-shadow: 0 25px 50px rgba(201, 162, 39, 0.2); }
.about-image-placeholder::before { content: ''; position: absolute; top: -15px; left: -15px; right: 15px; bottom: 15px; border: 3px solid var(--primary-color); border-radius: 24px; z-index: -1; opacity: 0.3; }
.about-image-placeholder svg { width: 60%; height: 60%; color: var(--secondary-color); opacity: 0.25; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 20px; line-height: 1.8; }
.about-features { display: flex; flex-wrap: wrap; gap: 15px; margin: 25px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; padding: 10px 18px; background: var(--bg-color); border-radius: 25px; font-size: 0.9rem; box-shadow: var(--shadow-sm); }
.about-feature svg { width: 18px; height: 18px; color: var(--primary-color); flex-shrink: 0; }

/* Services Grid */
.services-preview { background: var(--bg-color); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.service-card { text-align: center; padding: 35px 25px; border-radius: 20px; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); transform: scaleX(0); transition: transform 0.3s ease; }
.service-card:hover::before { transform: scaleX(1); }
.card-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); border-radius: 18px; padding: 18px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.card-icon svg { width: 100%; height: 100%; color: var(--secondary-color); }
.service-card:hover .card-icon { transform: scale(1.1) rotate(5deg); }
.card-title { font-size: 1.15rem; margin-bottom: 12px; }
.card-text { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* Mobile Apps Section */
.mobile-apps { background: var(--bg-secondary); }
.mobile-apps-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.mobile-apps-info h2 { margin-bottom: 20px; }
.mobile-apps-info > p { color: var(--text-light); margin-bottom: 25px; line-height: 1.8; }
.mobile-apps-features { margin-bottom: 30px; }
.mobile-apps-features li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-color); font-weight: 500; }
.mobile-apps-features li:last-child { border-bottom: none; }
.mobile-apps-features svg { width: 22px; height: 22px; color: var(--primary-color); flex-shrink: 0; }
.app-stores { display: flex; gap: 15px; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; background: var(--secondary-color); color: var(--text-white); border-radius: 12px; font-weight: 500; transition: var(--transition); }
.store-badge:hover { background: var(--bg-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.store-badge svg { width: 24px; height: 24px; }
.mobile-apps-visual { display: flex; justify-content: center; align-items: center; }
.phone-mockup { width: 280px; height: 500px; background: linear-gradient(145deg, var(--secondary-color), var(--bg-dark)); border-radius: 40px; padding: 15px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(201, 162, 39, 0.2); position: relative; }
.phone-mockup::before { content: ''; position: absolute; top: 25px; left: 50%; transform: translateX(-50%); width: 80px; height: 25px; background: #000; border-radius: 20px; }
.phone-screen { width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); border-radius: 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.phone-screen svg { width: 80px; height: 80px; color: var(--secondary-color); opacity: 0.4; }
.phone-screen p { color: var(--secondary-color); font-weight: 600; font-size: 1.1rem; opacity: 0.6; }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%); color: var(--text-white); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 50%); animation: rotate 20s linear infinite; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-content h2 { margin-bottom: 15px; }
.cta-content > p { opacity: 0.9; margin-bottom: 30px; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; }
.btn-light { background: rgba(255, 255, 255, 0.1); color: var(--text-white); border: 2px solid rgba(255, 255, 255, 0.3); }
.btn-light:hover { background: rgba(255, 255, 255, 0.2); border-color: var(--text-white); }

/* Partners */
.partners-section { background: var(--bg-color); }
.partners-grid { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.partner-item { padding: 20px 30px; background: var(--bg-secondary); border-radius: 12px; font-weight: 600; color: var(--text-light); transition: var(--transition); }
.partner-item:hover { color: var(--primary-color); box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
    .about-image-placeholder { max-width: 350px; margin: 0 auto; }
    .mobile-apps-content { grid-template-columns: 1fr; }
    .mobile-apps-visual { order: -1; }
    .phone-mockup { width: 220px; height: 400px; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; gap: 15px; }
    .stat-item { flex-direction: row; gap: 20px; padding: 20px; }
    .stat-icon { margin-bottom: 0; }
    .stat-content { text-align: left; }
    .app-stores { flex-direction: column; }
    .cta-buttons { flex-direction: column; }
}
@media (max-width: 480px) {
    .hero-badge { font-size: 0.8rem; padding: 8px 18px; }
    .card-icon { width: 60px; height: 60px; padding: 15px; }
}