/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Container and layout */
.container {
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        180deg,
        #1a1a2e 0%,
        #16213e 30%,
        #0f3460 70%,
        #1a1a2e 100%
    );
    position: relative;
}

.safe-area {
    width: 100%;
    height: 100%;
    padding: 20px 0;
}

.content-wrapper {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSlide 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

.scroll-container {
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.main-content {
    min-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    gap: 30px;
}

/* Logo styles */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-placeholder {
    text-align: center;
}

.logo-text {
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Pulse animation for logo */
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Title styles */
.title-container {
    display: flex;
    justify-content: center;
}

.title-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 16px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.title-text {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-align: center;
    display: block;
}

/* Content card styles */
.content-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.construction-icon {
    margin-bottom: 20px;
}

.construction-icon .material-icons {
    font-size: 48px;
    color: #ffb74d;
}

.service-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.service-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.thank-you-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    padding: 12px 16px;
    border-radius: 25px;
    display: inline-block;
}

.thank-you-badge span {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

/* Contact information styles */
.contact-container {
    background: rgba(33, 150, 243, 0.2);
    border: 1px solid rgba(33, 150, 243, 0.5);
    border-radius: 15px;
    padding: 16px 20px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.contact-icon {
    margin-bottom: 8px;
}

.contact-icon .material-icons {
    font-size: 24px;
    color: #64b5f6;
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.4;
}

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

/* Responsive design */
@media (min-width: 600px) {
    .main-content {
        padding: 0 32px;
    }
    
    .app-logo {
        width: 110px;
        height: 110px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .title-text {
        font-size: 22px;
    }
    
    .service-title {
        font-size: 17px;
    }
    
    .service-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .contact-text {
        font-size: 14px;
    }
}

@media (min-width: 900px) {
    .main-content {
        padding: 0 48px;
    }
    
    .app-logo {
        width: 120px;
        height: 120px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .title-text {
        font-size: 24px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 16px;
    }
    
    .contact-text {
        font-size: 15px;
    }
}

/* Smooth scrolling */
.scroll-container {
    scroll-behavior: smooth;
}

/* Additional visual enhancements */
.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.content-card:hover::before {
    opacity: 1;
}

/* Loading animation for better UX */
.container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    z-index: 1000;
    animation: hideLoader 0.5s ease-out 2s forwards;
}

@keyframes hideLoader {
    to {
        opacity: 0;
        visibility: hidden;
    }
}
