* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    color: #333333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    line-height: 1.6;
}

.container {
    flex: 1;
    width: 100%;
    padding: 5rem 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content {
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

.logo h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    background: linear-gradient(45deg, #FF6B35, #FFA630, #FF6B35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.25);
    animation: gradientFlow 8s ease infinite, glowPulse 3s ease-in-out infinite;
    letter-spacing: -0.02em;
}

.coming-soon h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #2C3E50, #34495E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.coming-soon p {
    font-size: 1.4rem;
    color: #555555;
    margin-bottom: 4rem;
    animation: fadeIn 1s ease-out 1s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.countdown-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    min-width: 160px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.08);
}

.countdown-item:nth-child(1) { animation-delay: 0s; }
.countdown-item:nth-child(2) { animation-delay: 1s; }
.countdown-item:nth-child(3) { animation-delay: 2s; }
.countdown-item:nth-child(4) { animation-delay: 3s; }

.countdown-item:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.15);
}

.countdown-item span {
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FF6B35, #FF8B3D);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.8rem;
    animation: gradientFlow 8s ease infinite;
    line-height: 1;
}

.countdown-item p {
    font-size: 1.1rem;
    color: #444444;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.newsletter {
    margin-bottom: 5rem;
    padding: 3.5rem;
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 1s backwards;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.08);
}

.newsletter:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.12);
}

.newsletter p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #444444;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

#notify-form {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

#notify-form input {
    flex: 1;
    padding: 1.3rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: #f8f9fa;
    color: #333333;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.03);
    transition: all 0.3s ease;
}

#notify-form input:focus {
    outline: none;
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
    background: #ffffff;
}

#notify-form input::placeholder {
    color: #888888;
    font-weight: 400;
}

#notify-form button {
    padding: 1.3rem 2.8rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(45deg, #FF6B35, #FF8B3D);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

#notify-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 107, 53, 0.25);
}

#notify-form button:active {
    transform: translateY(0);
    box-shadow: 0 8px 15px rgba(255, 107, 53, 0.18);
}

.map-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.08);
    background: #ffffff;
    padding: 1rem;
    animation: fadeInUp 1s ease-out 1.5s backwards;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.map-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 12px;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-link {
    color: #333333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    font-weight: 500;
}

.social-link:hover {
    color: #FF6B35;
}

@media (max-width: 1024px) {
    .container {
        padding: 4rem 1.5rem;
    }

    .logo h1 {
        font-size: 3.8rem;
    }

    .coming-soon h2 {
        font-size: 2.5rem;
    }

    .coming-soon p {
        font-size: 1.2rem;
    }

    .countdown {
        gap: 2rem;
    }

    .countdown-item {
        min-width: 140px;
        padding: 1.8rem;
    }

    .countdown-item span {
        font-size: 3.2rem;
    }
    
    .map-container iframe {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 3rem 1.2rem;
    }

    .logo h1 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .coming-soon h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .coming-soon p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1.2rem;
        margin-bottom: 4rem;
    }

    .countdown-item {
        min-width: calc(50% - 1.2rem);
        padding: 1.5rem;
    }

    .countdown-item span {
        font-size: 2.8rem;
    }

    .newsletter {
        padding: 2.5rem 1.8rem;
        margin-bottom: 4rem;
    }
    
    .newsletter p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    #notify-form {
        flex-direction: column;
    }

    #notify-form button {
        width: 100%;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Footer Styles */
.footer {
    background: #ffffff;
    padding: 6rem 2rem 2rem;
    width: 100%;
    border-top: 1px solid rgba(255, 107, 53, 0.08);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    color: #FF6B35;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #FF6B35;
    border-radius: 2px;
}

.footer-section h3 i {
    font-size: 1.1rem;
}

.footer-section a {
    color: #444444;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding-left: 0;
}

.footer-section a i {
    width: 16px;
    color: #FF6B35;
}

.footer-section a:hover {
    color: #FF6B35;
    transform: translateX(5px);
}

.footer-section .address {
    color: #444444;
    line-height: 1.8;
    position: relative;
    padding-left: 1.8rem;
    font-weight: 500;
}

.footer-section .address i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #FF6B35;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-top: 5rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    animation: fadeInUp 0.5s ease-out backwards;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.08);
}

.social-icon:nth-child(1) { animation-delay: 0.2s; }
.social-icon:nth-child(2) { animation-delay: 0.4s; }
.social-icon:nth-child(3) { animation-delay: 0.6s; }
.social-icon:nth-child(4) { animation-delay: 0.8s; }

.social-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FF6B35, #FF8B3D);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    transform: scale(0.8);
    border-radius: 50%;
}

.social-icon i {
    font-size: 1.3rem;
    color: #444444;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 25px rgba(255, 107, 53, 0.15);
}

.social-icon:hover:before {
    opacity: 1;
    transform: scale(1);
}

.social-icon:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 0;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.copyright p {
    color: #666666;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-section {
        margin-bottom: 0;
    }

    .footer-section h3 {
        justify-content: flex-start;
    }
    
    .footer-section h3:after {
        left: 0;
    }

    .footer-section a {
        justify-content: flex-start;
    }

    .social-media {
        margin-top: 3rem;
        padding: 2rem 0;
        gap: 1.2rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon i {
        font-size: 1.2rem;
    }
    
    .copyright {
        padding-top: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#success-message {
    animation: slideInDown 0.5s ease-out;
    color: #FF6B35;
    font-weight: 600;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.1);
    margin-top: 1rem;
}

@keyframes buttonGlow {
    0% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
    }
}

#notify-form button:disabled {
    animation: buttonGlow 1.5s ease infinite;
    opacity: 0.9;
    cursor: not-allowed;
}

html {
    scroll-behavior: smooth;
}

.typing-text {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(45deg, #2C3E50, #34495E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.typing-text-content {
    position: relative;
}

.typing-text-content::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 2px;
    background: #FF6B35;
    animation: blink 0.7s infinite;
}

.typing-text-content {
    border-right: none;
    animation: typing 3s steps(11);
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.typing-text-2 {
    font-size: 1.4rem;
    color: #444444;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 3s forwards;
    font-weight: 500;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .typing-text {
        font-size: 2.2rem;
    }
    
    .typing-text-content::after {
        height: 35px;
    }
    
    .typing-text-2 {
        font-size: 1.1rem;
    }
}

.typewriter {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.typewriter h2 {
    font-size: 3rem;
    overflow: hidden;
    border-right: 3px solid #2C3E50;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: -0.01em;
    background: linear-gradient(45deg, #2C3E50, #34495E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 
        typing 3.5s steps(11, end),
        blink-caret 0.75s step-end infinite;
    font-weight: 700;
}

@keyframes typing {
    from { width: 0 }
    to { width: 300px }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #2C3E50 }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .typewriter h2 {
        font-size: 2.2rem;
    }

    @keyframes typing {
        from { width: 0 }
        to { width: 200px }
    }
} 