/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1B3A57;
    --royal-blue: #2B5278;
    --sky-blue: #4A90A4;
    --bg-light: #F5F7FA;
    --text-primary: #1A1A1A;
    --text-secondary: #6B7280;
    --white: #FFFFFF;
}

@font-face {
    font-family: 'ITCBauhaus';
    src: url('./assets/fonts/ITCBauhaus.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Background Gradients & Effects */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow: hidden;
}

.bg-gradient::before, .bg-gradient::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: drift 20s infinite alternate;
}

.bg-gradient::before {
    background: var(--primary-blue);
    top: -100px;
    left: -100px;
}

.bg-gradient::after {
    background: var(--sky-blue);
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

/* Header */
header {
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    height: 48px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(27, 58, 87, 0.15);
}

.logo-container span {
    font-family: 'ITCBauhaus', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 5%;
    z-index: 10;
}

.hero-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

.hero-content {
    flex: 1;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-content h1 {
    font-family: 'ITCBauhaus', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-blue);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-content h1 span {
    color: var(--sky-blue);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Glassmorphism Phone Mockup */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
    transform: scale(0.95);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 24px 64px rgba(27, 58, 87, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), var(--sky-blue));
}

.glass-logo {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    margin-bottom: 24px;
    box-shadow: 0 16px 32px rgba(27, 58, 87, 0.15);
    transition: transform 0.3s ease;
}

.glass-card:hover .glass-logo {
    transform: translateY(-5px);
}

.glass-card h3 {
    font-family: 'ITCBauhaus', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 30px;
}

/* Playstore Button */
.playstore-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 18px;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(27, 58, 87, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.playstore-btn i {
    font-size: 24px;
}

.playstore-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.playstore-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27, 58, 87, 0.35);
    background: var(--royal-blue);
}

.playstore-btn:hover::before {
    transform: translateX(100%);
}

.features {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.feature-pill {
    background: rgba(27, 58, 87, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
}

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

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        margin: 0 auto 32px auto;
    }
}

/* Floating Support Buttons */
.support-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.support-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: bounceIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.support-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.support-btn.whatsapp {
    background: #25D366;
}

.support-btn.call {
    background: var(--primary-blue);
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.5) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 600px) {
    .support-container {
        bottom: 20px;
        right: 20px;
    }
    .support-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
