@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    direction: rtl;
    background: linear-gradient(135deg, #14532d 0%, #166534 50%, #15803d 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

/* Background Pattern */
.background-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.circle {
    position: absolute;
    border: 2px solid white;
    border-radius: 50%;
}

.circle-1 {
    top: 80px;
    left: 80px;
    width: 128px;
    height: 128px;
}

.circle-2 {
    top: 160px;
    right: 128px;
    width: 96px;
    height: 96px;
}

.circle-3 {
    bottom: 128px;
    left: 160px;
    width: 160px;
    height: 160px;
}

.circle-4 {
    bottom: 80px;
    right: 80px;
    width: 112px;
    height: 112px;
}

/* Content */
.content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1024px;
    width: 100%;
}

/* Flag Section */
.flag-section {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.flag-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-green {
    width: 64px;
    height: 40px;
    background-color: #16a34a;
    border-radius: 4px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
}

.flag-white {
    width: 64px;
    height: 40px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sword {
    color: #16a34a;
    font-size: 18px;
    font-weight: bold;
}

/* Header Section */
.header-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo-bg {
    background-color: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.logo-icon {
    width: 48px;
    height: 48px;
    color: #15803d;
}

.company-info {
    text-align: right;
}

.company-name {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.company-type {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: #bbf7d0;
    font-weight: 600;
}

.company-english {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #fed7aa;
    margin-top: 8px;
}

/* Saudi Badge */
.saudi-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.saudi-flag {
    font-size: 32px;
    margin-left: 12px;
}

.badge-text {
    font-size: 18px;
    font-weight: 600;
}

/* Coming Soon Section */
.coming-soon-section {
    margin-bottom: 48px;
}

.coming-soon-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.clock-icon {
    width: 32px;
    height: 32px;
    color: #fb923c;
}

.coming-soon-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fb923c;
}

.coming-soon-description {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    color: #dcfce7;
    line-height: 1.6;
    max-width: 512px;
    margin: 0 auto 16px;
}

.coming-soon-english {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #bbf7d0;
}

/* Countdown Section */
.countdown-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 20px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.25);
}

.countdown-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fb923c;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(251, 146, 60, 0.3);
    }
    50% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(251, 146, 60, 0.6);
    }
}

.countdown-label {
    font-size: 16px;
    color: #bbf7d0;
    font-weight: 700;
    margin-bottom: 4px;
}

.countdown-english {
    font-size: 13px;
    color: #dcfce7;
    font-weight: 500;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    margin-bottom: 48px;
}

.services-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
    color: #bbf7d0;
}

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

.service-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
}

.service-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.service-title {
    font-weight: 900;
    color: white;
    margin-bottom: 4px;
    font-size: 16px;
}

.service-desc {
    font-size: 14px;
    color: #bbf7d0;
}

/* Contact Section */
.contact-section {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 32px;
}

.contact-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
    color: #fb923c;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-phone {
    background-color: #ea580c;
}

.contact-phone:hover {
    background-color: #dc2626;
    transform: scale(1.05);
}

.contact-location {
    background-color: #3b82f6;
}

.contact-location:hover {
    background-color: #2563eb;
    transform: scale(1.05);
}

.contact-email {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #dcfce7;
}

.contact-info {
    text-align: right;
}

.contact-label {
    font-weight: 900;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 14px;
    color: #dcfce7;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
    backdrop-filter: blur(8px);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 48px;
}

.newsletter-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #fb923c;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 384px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

.newsletter-input::placeholder {
    color: #bbf7d0;
}

.newsletter-input:focus {
    outline: none;
    ring: 2px;
    ring-color: #fb923c;
}

.newsletter-button {
    background-color: #ea580c;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
}

.newsletter-button:hover {
    background-color: #dc2626;
}

/* Footer */
.footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-text {
    color: #bbf7d0;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-vision {
    color: #dcfce7;
    font-size: 12px;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.floating-1 {
    top: 40px;
    right: 40px;
    width: 16px;
    height: 16px;
    background-color: #fb923c;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.floating-2 {
    bottom: 40px;
    left: 40px;
    width: 24px;
    height: 24px;
    background-color: white;
    opacity: 0.4;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-section {
        flex-direction: column;
        text-align: center;
    }
    
    .company-info {
        text-align: center;
    }
    
    .countdown-section {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 16px 12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .countdown-section {
        gap: 8px;
    }
    
    .countdown-item {
        padding: 12px 8px;
        min-width: 80px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 20px;
    }
}