/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.4);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(234, 88, 12, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); /* Lighter orange gradient */
    color: white;
    border-radius: 0 0 20px 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    animation: fadeInDown 1s ease-out;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(30deg);
    animation: float 20s infinite linear;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.logo-image img {
    width:  500px;
    height: 80px;
    object-fit: contain;
    animation: pulse 2s infinite;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: bold;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.tagline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* App Download Section */
.app-download-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.download-options {
    flex: 1;
    min-width: 300px;
    animation: slideInLeft 1s ease-out;
}

.download-options h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.store-button {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    max-width: 300px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.store-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.store-button:hover::before {
    left: 100%;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.android {
    background-color: #f97316; /* Lighter orange */
    color: white;
}

.ios {
    background-color: #000000;
    color: white;
}

.store-button i {
    font-size: 2rem;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.store-button:hover i {
    transform: scale(1.2);
}

.button-text {
    display: flex;
    flex-direction: column;
}

.small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.large {
    font-size: 1.2rem;
}

.both-stores {
    display: flex;
    gap: 20px;
}

.hidden {
    display: none;
}

.phone-preview {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

.phone-frame {
    width: 250px;
    height: 500px;
    border: 15px solid #333;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: float 4s ease-in-out infinite;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #333;
    border-radius: 0 0 15px 15px;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); /* Lighter orange gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.screen-content img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    animation: pulse 3s infinite;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #ea580c);
}

.features-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    display: inline-block;
}

.features-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #f97316;
    border-radius: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    padding: 30px;
    border-radius: 15px;
    background-color: #f8f9fa;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-card:hover::before {
    transform: scale(1.5);
    opacity: 0.1;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f97316, #ea580c); /* Lighter orange gradient */
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #f97316; /* Lighter orange */
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    color: #fff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #fff;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #fff;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #ea580c);
}

.social-media {
    text-align: center;
    margin-bottom: 30px;
}

.social-media h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #555;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f97316; /* Lighter orange */
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.facebook:hover {
    background-color: #3b5998 !important;
}

.tiktok:hover {
    background-color: #69C9D0 !important;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.copyright p {
    font-size: 1rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .app-download-section {
        flex-direction: column;
    }
    
    .both-stores {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
    
    .hero-section {
        padding: 60px 20px 40px;
    }
}