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

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo-placeholder {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 30px 50px;
    text-align: center;
    color: #141414;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.logo-placeholder:hover {
    transform: translateY(-5px);
}

.logo-image {
    max-width: 200px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Main Content */
.main-content {
    text-align: center;
    color: #141414;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #141414;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.6;
    color: #6c757d;
}

/* Progress Bar */
.progress-container {
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 15px;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 89%;
    background: #141414;
    border-radius: 10px;
    animation: progressFill 2s ease-out 1s both;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #141414;
}

/* Contact Section */
.contact-section {
    margin: 50px 0;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-item i {
    font-size: 1.5rem;
    color: #141414;
    width: 30px;
    text-align: center;
}

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

.contact-item a:hover {
    color: #141414;
}

/* Phone Button Styles */
.phone-item {
    margin-bottom: 30px !important;
}

.phone-btn {
    background: #28a745 !important;
    color: white !important;
    padding: 15px 30px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3) !important;
    border: 2px solid #28a745 !important;
}

.phone-btn:hover {
    background: white !important;
    color: #28a745 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4) !important;
    border-color: #28a745 !important;
}

.phone-btn i {
    font-size: 1.2rem !important;
    color: inherit !important;
}


/* Footer */
.footer {
    margin-top: auto;
    padding: 20px 0;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 1.5s both;
}

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

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgb(244 27 25 / 2%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

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

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

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .logo-placeholder {
        padding: 20px 30px;
        font-size: 20px;
    }
    
    .logo-placeholder i {
        font-size: 36px;
    }
    
    .contact-item {
        font-size: 1.1rem;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo-placeholder {
        padding: 15px 20px;
        font-size: 18px;
    }
    
    .contact-item {
        font-size: 1rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .phone-btn {
        padding: 12px 25px !important;
        font-size: 1rem !important;
    }
    
    .phone-btn i {
        font-size: 1.1rem !important;
    }
}
