/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --dark-color: #1a252f;
    --darker-color: #0d1419;
    --light-color: #ecf0f1;
    --white-color: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-muted: #95a5a6;
    --success-color: #27ae60;
    --warning-color: #f1c40f;
    --error-color: #e74c3c;
    --info-color: #3498db;

    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Oswald', sans-serif;

    --shadow-light: 0 2px 15px rgba(255,107,53,0.1);
    --shadow-medium: 0 8px 30px rgba(255,107,53,0.2);
    --shadow-heavy: 0 15px 60px rgba(255,107,53,0.3);

    --border-radius: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--white-color);
    overflow-x: hidden;
    background: var(--gradient-dark);
    min-height: 100vh;
    position: relative;
}

/* ===== PARTICLES BACKGROUND ===== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float var(--duration) infinite ease-in-out;
    animation-delay: var(--delay);
}

.particle::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    border-radius: 50%;
    top: -3px;
    left: -3px;
    opacity: 0.5;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100vh) rotate(180deg);
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
}

/* ===== FLOATING EQUIPMENT ===== */
.floating-equipment {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.equipment-item {
    position: absolute;
    font-size: 2rem;
    color: rgba(255,107,53,0.1);
    animation: floatEquipment 20s infinite ease-in-out;
    animation-delay: var(--float-delay);
}

.equipment-item:nth-child(1) { top: 10%; left: 10%; }
.equipment-item:nth-child(2) { top: 20%; right: 15%; }
.equipment-item:nth-child(3) { bottom: 30%; left: 20%; }
.equipment-item:nth-child(4) { bottom: 20%; right: 10%; }
.equipment-item:nth-child(5) { top: 50%; left: 5%; }

@keyframes floatEquipment {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(360deg);
        opacity: 0.3;
    }
}

/* ===== MAIN CONTAINER ===== */
.coming-soon-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(45deg, rgba(26,37,47,0.9) 0%, rgba(44,62,80,0.8) 100%);
    backdrop-filter: blur(10px);
}

/* ===== LOGO SECTION ===== */
.logo-section {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
    animation: pulse 3s ease-in-out infinite;
}

.logo-icon i {
    font-size: 2.5rem;
    color: var(--white-color);
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(10px);
    animation: glow 2s ease-in-out infinite alternate;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white-color);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-text p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

/* ===== MAIN CONTENT ===== */
.main-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* ===== TITLE SECTION ===== */
.title-section {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.construction-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,107,53,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce 2s ease-in-out infinite;
}

.construction-badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line:nth-child(2) {
    animation: slideInRight 1s ease-out 0.2s both;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    animation: expandWidth 1.5s ease-out 1s both;
}

.subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    max-width: 800px;
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-section {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.countdown-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.time-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}

.time-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white-color);
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.time-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.5s ease-in-out;
    filter: drop-shadow(0 0 10px rgba(255,107,53,0.5));
}

.progress-ring::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.time-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.time-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.7;
}

/* ===== PROGRESS SECTION ===== */
.progress-section {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.progress-info {
    margin-bottom: 2rem;
}

.progress-info h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white-color);
    text-transform: uppercase;
}

.progress-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 120px;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-item span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.stat-item strong {
    font-size: 1.2rem;
    color: var(--white-color);
    font-weight: 700;
}

.progress-bar-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    position: relative;
    transition: width 2s ease-out;
    box-shadow: 0 0 20px rgba(255,107,53,0.5);
}

.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 ease-in-out infinite;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.progress-crane {
    position: absolute;
    top: -10px;
    right: -10px;
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: craneWork 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes craneWork {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(10px) rotate(5deg); }
}

/* ===== SUBSCRIPTION SECTION ===== */
.subscription-section {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.subscription-content {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: var(--shadow-medium);
}

.subscription-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white-color);
    text-transform: uppercase;
}

.subscription-content > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscription-form {
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.input-container {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.input-container input {
    width: 100%;
    padding: 18px 50px 18px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 1rem;
    color: var(--white-color);
    transition: var(--transition);
}

.input-container input::placeholder {
    color: rgba(255,255,255,0.6);
}

.input-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
    background: rgba(255,255,255,0.15);
}

.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.input-container input:focus + .input-icon {
    color: var(--primary-color);
}

.subscribe-btn {
    padding: 18px 35px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: var(--white-color);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    min-width: 150px;
    justify-content: center;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.subscribe-btn.loading {
    pointer-events: none;
}

.subscribe-btn.loading .btn-text {
    opacity: 0;
}

.subscribe-btn.loading .btn-loader {
    opacity: 1;
}

.btn-loader {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.subscription-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.benefit-item i {
    color: var(--success-color);
}

.form-message {
    text-align: center;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: rgba(39,174,96,0.2);
    color: var(--success-color);
    border: 1px solid rgba(39,174,96,0.3);
}

.form-message.error {
    background: rgba(231,76,60,0.2);
    color: var(--error-color);
    border: 1px solid rgba(231,76,60,0.3);
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.services-preview h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white-color);
    text-transform: uppercase;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-preview-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.service-preview-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-preview-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.service-preview-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white-color);
    font-weight: 600;
}

.service-preview-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    animation: fadeInUp 1s ease-out 1.8s both;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.contact-details strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 0.3rem;
}

.contact-details span {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.social-media {
    text-align: center;
}

.social-media h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white-color);
    text-transform: uppercase;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.social-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* ===== CONSTRUCTION TOOLS ===== */
.construction-tools {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 5;
    pointer-events: none;
}

.tool-item {
    position: absolute;
    color: rgba(255,107,53,0.3);
    font-size: 1.5rem;
    animation: toolFloat 4s ease-in-out infinite;
}

.tool-1 {
    animation-delay: 0s;
    bottom: 0;
    right: 0;
}

.tool-2 {
    animation-delay: 1.3s;
    bottom: 40px;
    right: 30px;
}

.tool-3 {
    animation-delay: 2.6s;
    bottom: 20px;
    right: 60px;
}

@keyframes toolFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--gradient-dark);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-heavy);
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: modalIconPulse 2s ease-in-out infinite;
}

.modal-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white-color);
    font-weight: 600;
}

.modal-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--white-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

@keyframes modalIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 1;
    visibility: visible;
    transition: var(--transition);
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.construction-loader {
    margin-bottom: 2rem;
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crane {
    color: var(--primary-color);
    font-size: 3rem;
    animation: craneMove 3s ease-in-out infinite;
}

.building-blocks {
    display: flex;
    gap: 5px;
    margin-left: 20px;
}

.block {
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: blockStack 2s ease-in-out infinite;
}

.block:nth-child(1) { animation-delay: 0s; }
.block:nth-child(2) { animation-delay: 0.5s; }
.block:nth-child(3) { animation-delay: 1s; }
.block:nth-child(4) { animation-delay: 1.5s; }

@keyframes craneMove {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(20px) rotate(5deg); }
}

@keyframes blockStack {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-20px); opacity: 1; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .main-title {
        font-size: 3.5rem;
    }

    .countdown-timer {
        gap: 1.5rem;
    }

    .progress-stats {
        gap: 2rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .coming-soon-container {
        padding: 1rem;
    }

    .company-logo {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo-text h1 {
        font-size: 2.5rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .time-circle {
        width: 100px;
        height: 100px;
    }

    .time-number {
        font-size: 2rem;
    }

    .progress-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .subscription-content {
        padding: 2rem 1.5rem;
    }

    .form-group {
        flex-direction: column;
        align-items: center;
    }

    .input-container {
        min-width: 280px;
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .benefit-item {
        justify-content: center;
    }

    .social-links {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .logo-icon i {
        font-size: 2rem;
    }

    .logo-text h1 {
        font-size: 2rem;
    }

    .logo-text p {
        font-size: 1rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .countdown-title {
        font-size: 1.5rem;
    }

    .time-circle {
        width: 80px;
        height: 80px;
    }

    .time-number {
        font-size: 1.5rem;
    }

    .subscription-content {
        padding: 1.5rem 1rem;
    }

    .subscription-content h3 {
        font-size: 1.5rem;
    }

    .input-container {
        min-width: 250px;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .construction-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}