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

:root {
    --primary-color: #00ab44;
    --secondary-color: #013369;
    --tertiary-color: #000000;
    --quaternary-color: #ffffff;
    --muted-color: #f1f5f9;
    --muted-foreground: #64748b;
    --border-color: #e2e8f0;
    --text-primary: #0a0a0a;
    --text-secondary: #64748b;
    --radius: 0.5rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

@media (min-width: 640px) {
    .logo {
        height: 3rem;
    }
}

/* Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

@media (max-width: 1023px) {
    .desktop-nav {
        display: none;
    }
}

.nav-item {
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.dropdown {
    position: relative;
}

.dropdown.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.chevron-down {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4rem;
    height: 2.25rem;
}

.btn-outline {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--quaternary-color);
    border-color: var(--primary-color);
}

.btn.disabled,
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

@media (min-width: 640px) {
    .btn {
        font-size: 0.875rem;
        height: 2.25rem;
        min-width: 5rem;
    }
}

@media (min-width: 768px) {
    .btn {
        font-size: 1rem;
        height: 2.5rem;
        min-width: 5rem;
    }
}

/* Main Content */
.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, 
        rgba(0, 171, 68, 0.05) 0%, 
        rgba(1, 51, 105, 0.05) 50%, 
        rgba(0, 171, 68, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 171, 68, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.content .container {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.content h1::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Status Indicator */
.status-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(0, 171, 68, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    animation: loading-progress 2s ease-in-out infinite;
}

@keyframes loading-progress {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.status-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.8;
}

@media (max-width: 640px) {
    .content h1 {
        font-size: 2rem;
    }
    
    .content p {
        font-size: 1rem;
    }
}

/* Construction Icon */
.content::after {
    content: '🚧';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 4rem;
    opacity: 0.3;
    animation: bounce 2s infinite;
    z-index: 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Decorative Elements */
.content .container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 3s infinite;
}

.content .container::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 3s infinite 1.5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

/* Footer */
.footer {
    background: var(--tertiary-color);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

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

.footer-logo-img {
    height: 1.5rem;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    cursor: default;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.social-icon:hover:not(.disabled) {
    background: rgba(0, 171, 68, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.2s ease;
    cursor: default;
}

.footer-link.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.contact-icon {
    font-size: 0.875rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--primary-color);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.75rem;
    opacity: 0.8;
    margin: 0;
}

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

/* Loading Animation */
.content h1::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0%, 100% {
        width: 40px;
        opacity: 1;
    }
    50% {
        width: 80px;
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content::after {
        font-size: 3rem;
        top: 15%;
        right: 5%;
    }
    
    .content .container::before,
    .content .container::after {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #008000;
        --secondary-color: #000080;
        --text-primary: #000000;
        --text-secondary: #333333;
    }
    
    .header {
        border-bottom: 2px solid var(--secondary-color);
    }
    
    .footer {
        border-top: 2px solid var(--secondary-color);
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
