 /* ASCOTAD Coming Soon Page Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #D2691E, #FF6B6B, #87A96B);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* PARTICLES EFFECT */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Main Container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.content {
    text-align: center;
    color: white;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

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

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: #F4A460;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(244, 164, 96, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 400px;
    height: 250px;
    margin: 1.5rem auto;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    animation: fadeIn 1s ease-out 0.5s both;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg, 
        rgba(210, 105, 30, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(135, 169, 107, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image-container:hover .hero-overlay {
    opacity: 1;
}

/* Typography */
.main-title {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInLeft 1s ease-out 0.3s both;
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: #F4A460;
    margin-bottom: 2rem;
    animation: slideInRight 1s ease-out 0.6s both;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.9s both;
}

@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);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3rem;
    animation: float 3s ease-in-out infinite;
}

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

/* Progress Section */
.progress-section {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 3rem;
    animation: fadeIn 1s ease-out 1.2s both;
}

.progress-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #F4A460, #DAA520);
    border-radius: 10px;
    animation: progressFill 2s ease-out 1.5s forwards;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 75%; }
}

/* Custom Form Styling */
.signup-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    animation: scaleIn 1s ease-out 1.2s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.signup-form h3 {
    margin-bottom: 1rem;
    color: #F4A460;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    outline: none;
    border-color: #F4A460;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.submit-btn {
    background: #F4A460;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.submit-btn:hover {
    background: #DAA520;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 164, 96, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 10px;
    font-weight: 500;
    display: none;
    text-align: center;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4CAF50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
    display: block;
}


/* Contact Info */.contact-info {
    margin-top: 3rem; /* Add this if not already present */
    margin-bottom: 2rem; /* Keep existing */

    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 1.5s both;
}
.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #F4A460;
    text-decoration: underline;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    font-size: 1.2rem;
}

/* Footer Text */
.footer-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 1rem;
    animation: fadeIn 1s ease-out 2.1s both;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer a {
    color: #F4A460;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
            @media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .hero-image-container {
        width: 350px;
        height: 220px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-input {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .coming-soon-badge {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-image-container {
        width: 90%;
        height: 200px;
        max-width: 300px;
    }
    
    .signup-form {
        padding: 1.5rem;
    }
    
    .container {
        padding: 1rem;
    }
}