countdown/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    min-height: 100vh;
    position: relative;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    top: 10%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Header */
.header {
    padding: 2rem 0;
    text-align: center;
}

.logo-container {
    display: inline-block;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 220, 220, 0.5);
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.logo-placeholder i {
    font-size: 2rem;
    color: #e74c3c;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    color: #f8f9fa;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.main-title .highlight {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: #ecf0f1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.description {
    font-size: 1.2rem;
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Contact Info */
.contact-info {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.contact-info h3 {
    color: #f8f9fa;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 220, 220, 0.5);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.contact-item i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    display: block;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-details a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.contact-details a:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    transform: translateX(5px);
}

/* PHP Messages */
.php-message {
    margin: 1rem 0 2rem 0;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    animation: slideInDown 0.5s ease-out;
}

.php-message.success {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.php-message.error {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.php-message.info {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.php-message i {
    font-size: 1.2rem;
}

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

/* Countdown Timer */
.countdown-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.countdown-container h3 {
    color: #f8f9fa;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 220, 220, 0.5);
    min-width: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.time-unit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.time-unit .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}

.time-unit .label {
    display: block;
    font-size: 1rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Newsletter */
.newsletter-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.newsletter-container h3 {
    color: #f8f9fa;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 220, 220, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: #2c3e50;
    font-size: 1rem;
    outline: none;
    border-radius: 50px;
}

.input-group input::placeholder {
    color: #7f8c8d;
}

.input-group button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

/* Social Media */
.social-media {
    animation: fadeInUp 1s ease-out 1s both;
}

.social-media h3 {
    color: #f8f9fa;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 220, 220, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.social-link[data-platform="facebook"]:hover {
    background: #1877f2;
}

.social-link[data-platform="instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link[data-platform="twitter"]:hover {
    background: #1da1f2;
}

.social-link[data-platform="linkedin"]:hover {
    background: #0077b5;
}

.social-link[data-platform="youtube"]:hover {
    background: #ff0000;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-contact {
    margin-bottom: 1rem;
}

.footer-contact p {
    color: #ecf0f1;
    font-size: 1rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-contact i {
    color: #e74c3c;
    margin-right: 0.5rem;
}

.footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #e74c3c;
}

.footer-content > p {
    color: white !important;
    font-size: 0.9rem;
    margin: 0;
}

.footer-content > p a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content > p a:hover {
    color: #e74c3c !important;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.success-message.show {
    transform: translateX(0);
}

.success-message i {
    font-size: 1.2rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .contact-items {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-item {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time-unit {
        padding: 1.5rem 1rem;
        min-width: 100px;
    }
    
    .time-unit .number {
        font-size: 2.5rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .input-group input,
    .input-group button {
        border-radius: 10px;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .success-message {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        text-align: center;
    }
    
    .footer-contact p {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .countdown {
        flex-direction: column;
        align-items: center;
    }
    
    .time-unit {
        width: 100%;
        max-width: 200px;
    }
}