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

:root {
    /* Orange and White Theme */
    --primary-orange: #ff6b35;
    --primary-dark: #e85a2a;
    --primary-light: #ff8c61;
    --secondary-orange: #ff9966;
    --accent-orange: #ffb347;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --gray: #e0e0e0;
    --dark-gray: #666666;
    --text-dark: #2d2d2d;
    --text-muted: #757575;

    /* Gradients */
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ff9966 100%);
    --gradient-warm: linear-gradient(135deg, #ff8c61 0%, #ffb347 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(255, 107, 53, 0.1);
    --shadow-md: 0 4px 6px rgba(255, 107, 53, 0.15);
    --shadow-lg: 0 10px 25px rgba(255, 107, 53, 0.2);
    --shadow-xl: 0 20px 40px rgba(255, 107, 53, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Construction Page Layout */
.construction-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.construction-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Background Gradients */
.bg-gradient {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.bg-gradient-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-orange);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.bg-gradient-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-warm);
    bottom: -150px;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

.bg-gradient-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-orange);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Brand/Logo */
.brand {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
}

.logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.2));
}

.logo-icon {
    font-size: 36px;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin: 0 auto 40px;
    display: flex;
    width: fit-content;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease-out;
}

.badge-icon {
    font-size: 18px;
}

/* Main Title */
.main-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.gradient-text {
    display: block;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

/* Description */
.description {
    font-size: 20px;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Progress Section */
.progress-section {
    max-width: 600px;
    margin: 0 auto 80px;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.progress-percent {
    color: var(--primary-orange);
    font-size: 18px;
}

.progress-bar {
    height: 12px;
    background: var(--gray);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: var(--gradient-orange);
    border-radius: 50px;
    animation: progressFill 2s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
}

.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;
}

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

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

/* Coming Features */
.coming-features {
    margin-bottom: 80px;
    animation: fadeInUp 1.4s ease-out 0.4s both;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--gray);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

/* Notify Section */
.notify-section {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
    animation: fadeInUp 1.6s ease-out 0.5s both;
}

.notify-description {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 16px;
}

.notify-form {
    width: 100%;
}

.form-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.email-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--gray);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.email-input::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    padding: 16px 40px;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
}

/* Office Locations */
.offices-section {
    margin-bottom: 80px;
    animation: fadeInUp 1.6s ease-out 0.5s both;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.office-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
    text-align: center;
}

.office-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.office-flag {
    font-size: 48px;
    margin-bottom: 16px;
}

.office-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.office-address {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 15px;
}

.office-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.office-contact:hover {
    background: var(--light-gray);
    transform: translateX(4px);
}

/* Contact Info */
.contact-info {
    margin-bottom: 60px;
    animation: fadeInUp 1.8s ease-out 0.6s both;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.contact-column {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--gray);
}

.contact-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 8px;
}

.contact-link:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 20px;
}

.business-hours {
    color: var(--text-muted);
    line-height: 1.8;
}

.business-hours p {
    margin-bottom: 8px;
}

.business-hours strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid var(--gray);
    animation: fadeInUp 2s ease-out 0.7s both;
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-orange);
}

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

/* Success State */
.submit-btn.success {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 42px;
    }

    .description {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid,
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-wrapper {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }

    .contact-links {
        flex-direction: column;
        gap: 16px;
    }

    .bg-gradient-1,
    .bg-gradient-2,
    .bg-gradient-3 {
        opacity: 0.1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .main-title {
        font-size: 32px;
    }

    .logo {
        font-size: 22px;
    }

    .logo-image {
        height: 40px;
    }

    .logo-icon {
        font-size: 28px;
    }

    .description {
        font-size: 16px;
    }

    .feature-item {
        padding: 24px;
    }

    .email-input,
    .submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

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

/* Loading State */
.submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.submit-btn.loading::after {
    content: '...';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% {
        content: '.';
    }
    40% {
        content: '..';
    }
    60%, 100% {
        content: '...';
    }
}
