* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: #111111;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.content {
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(42, 128, 85, 0.4));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.coming-soon {
    font-size: 4rem;
    font-weight: 700;
    color: #2a8055;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    animation: slideInDown 1s ease-out, pulse 2s ease-in-out infinite 1s;
}

.coming-soon-wrap {
    margin-bottom: 2rem;
    animation: slideInDown 1s ease-out;
}

.coming-soon-gif {
    width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;

}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.title {
    font-size: 2.5rem;
    color: #111111;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.description {
    font-size: 1.3rem;
    color: #444444;
    line-height: 1.6;
}

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    background: linear-gradient(135deg, #2a8055 0%, #1f5f3f 100%);
    color: #ffffff;
    padding: 1.2rem 3.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(42, 128, 85, 0.5), 0 0 20px rgba(42, 128, 85, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both, bounce 2s ease-in-out infinite 1.6s;
    z-index: 1;
    border: 2px solid rgba(42, 128, 85, 0.5);
}

.call-button .call-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 0.8rem;
    border-radius: 50%;
    overflow: hidden;
}

.call-button .call-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.call-button .button-text {
    display: inline-block;
    margin-right: 0.4rem;
}

.call-button .phone-number {
    display: inline-block;
    opacity: 0.95;
}

.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(42, 128, 85, 0.6), 0 0 30px rgba(42, 128, 85, 0.4);
    background: linear-gradient(135deg, #32a065 0%, #2a8055 100%);
}

.call-button:active {
    transform: translateY(-1px);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.button-text {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.phone-number {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.button-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(42, 128, 85, 0.4);
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(42, 128, 85, 0.2);
    animation: float 20s infinite ease-in-out;
    border: 1px solid rgba(42, 128, 85, 0.3);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }

    .coming-soon-gif {
        width: min(380px, 100%);
    }
    
    .coming-soon {
        font-size: 2.5rem;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .call-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .button-text {
        font-size: 1.2rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
    }

    .coming-soon-gif {
        width: min(320px, 100%);
        border-radius: 12px;
    }
    
    .coming-soon {
        font-size: 2rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .call-button {
        padding: 0.9rem 1.5rem;
    }
}
