* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0f2847;
    --primary-blue: #1a3a5c;
    --accent-blue: #6ba3d4;
    --light-blue: #a8c9e8;
    --gradient-start: #0f2847;
    --gradient-end: #1a4570;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --shadow: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    transition: font-family 0.3s ease;
}

body[dir="ltr"] {
    font-family: 'Poppins', sans-serif;
}

.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    background: rgba(107, 163, 212, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 50px;
    border: 2px solid rgba(107, 163, 212, 0.3);
}

body[dir="ltr"] .language-switcher {
    right: auto;
    left: 20px;
}

.lang-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(107, 163, 212, 0.2);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    color: var(--primary-dark);
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.blueprint-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(107, 163, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 163, 212, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: blueprintMove 20s linear infinite;
}

@keyframes blueprintMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(107, 163, 212, 0.1);
    border: 2px solid rgba(107, 163, 212, 0.2);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    transform: rotate(45deg);
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: float 12s ease-in-out infinite 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    animation: float 18s ease-in-out infinite 1s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 20%;
    border-radius: 50%;
    animation: float 14s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.header {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.logo-container {
    animation: fadeInDown 1s ease-out;
}

.site-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.site-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.site-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.site-icon:hover svg {
    transform: scale(1.05);
}

.site-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.company-name {
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.name-main {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: glow 3s ease-in-out infinite;
}

.name-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--light-blue);
    letter-spacing: 2px;
}

.site-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--accent-blue);
}

.site-url {
    font-weight: 600;
}

.site-phone {
    font-weight: 500;
}

.site-divider {
    color: var(--light-blue);
    opacity: 0.5;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(107, 163, 212, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(107, 163, 212, 0.8));
    }
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.content-wrapper {
    max-width: 900px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(107, 163, 212, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(107, 163, 212, 0.4);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.5s both;
}

.badge-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-blue);
}

.badge-divider {
    color: var(--accent-blue);
    opacity: 0.5;
}

.badge-text-secondary {
    font-size: 1rem;
    font-weight: 500;
    color: var(--light-blue);
}

body[dir="ltr"] .badge-text-secondary {
    font-family: 'Poppins', sans-serif;
}

.main-title {
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out 0.7s both;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.title-sub {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: var(--light-blue);
    letter-spacing: 1px;
}

body[dir="ltr"] .title-sub {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.description {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.9s both;
}

.subtitle {
    font-size: 1.8rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.85s both;
}

.trust-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(107, 163, 212, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(107, 163, 212, 0.2);
    animation: fadeIn 1s ease-out 1s both;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
}

.trust-item svg {
    width: 32px;
    height: 32px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.trust-item:hover svg {
    color: var(--light-blue);
    transform: scale(1.1);
}

.trust-item span {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
}

.reconstruction-section {
    background: linear-gradient(135deg, rgba(107, 163, 212, 0.1) 0%, rgba(168, 201, 232, 0.05) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(107, 163, 212, 0.25);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out 1.4s both;
}

.reconstruction-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(107, 163, 212, 0.02) 10px,
        rgba(107, 163, 212, 0.02) 20px
    );
    animation: slidePattern 20s linear infinite;
    z-index: 0;
}

@keyframes slidePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

.reconstruction-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.reconstruction-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 10px rgba(107, 163, 212, 0.3));
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.reconstruction-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.reconstruction-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.coming-soon-message {
    text-align: center;
    padding: 2rem;
    margin-bottom: 3rem;
    background: rgba(107, 163, 212, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(107, 163, 212, 0.3);
    animation: fadeIn 1s ease-out 1.5s both;
}

.coming-soon-message p {
    font-size: 1.2rem;
    color: var(--light-blue);
    font-weight: 500;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}



.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 1.3s both;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 1.1s both;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(107, 163, 212, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 2px solid rgba(107, 163, 212, 0.3);
    min-width: 100px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(107, 163, 212, 0.3);
}

.countdown-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.countdown-divider {
    font-size: 2rem;
    color: var(--accent-blue);
    font-weight: 300;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 1.2s both;
}

.project-image {
    background: rgba(107, 163, 212, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgba(107, 163, 212, 0.2);
    padding: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.project-image:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(107, 163, 212, 0.3);
}

.project-image svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.service-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(107, 163, 212, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgba(107, 163, 212, 0.2);
    transition: all 0.3s ease;
}

.service-icon:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    background: rgba(107, 163, 212, 0.2);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.service-icon:hover svg {
    transform: scale(1.1);
    color: var(--light-blue);
}

.service-icon span {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.notify-section {
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 1.5s both;
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(107, 163, 212, 0.3);
    background: rgba(107, 163, 212, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    text-align: right;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: var(--text-muted);
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(107, 163, 212, 0.15);
}

.notify-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    border: none;
    border-radius: 50px;
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 163, 212, 0.4);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: fadeIn 1s ease-out 1.7s both;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(107, 163, 212, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(107, 163, 212, 0.2);
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-color: var(--accent-blue);
    background: rgba(107, 163, 212, 0.2);
    transform: translateY(-2px);
}

.contact-link svg {
    width: 20px;
    height: 20px;
    color: var(--accent-blue);
}

.footer {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeIn 1s ease-out 1.9s both;
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .name-main {
        font-size: 2.5rem;
    }

    .name-sub {
        font-size: 1rem;
    }

    .site-icon {
        width: 60px;
        height: 60px;
    }

    .site-info {
        gap: 1rem;
    }

    .site-contact {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 1rem 1rem;
        min-width: 70px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-line {
        gap: 1rem;
        padding: 1rem;
    }

    .trust-item {
        padding: 0.75rem;
    }

    .trust-item svg {
        width: 28px;
        height: 28px;
    }

    .trust-item span {
        font-size: 0.85rem;
    }

    .reconstruction-section {
        padding: 2rem 1.5rem;
    }

    .reconstruction-icon {
        width: 60px;
        height: 60px;
    }

    .reconstruction-title {
        font-size: 1.5rem;
    }

    .reconstruction-text {
        font-size: 1rem;
    }

    .coming-soon-message {
        padding: 1.5rem;
    }

    .coming-soon-message p {
        font-size: 1rem;
    }

    .services-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-icon {
        padding: 1rem;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
    }

    .service-icon span {
        font-size: 0.85rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 0.3rem;
    }

    body[dir="ltr"] .language-switcher {
        left: 10px;
    }

    .lang-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .name-main {
        font-size: 2rem;
    }

    .name-sub {
        font-size: 0.9rem;
    }

    .countdown-item {
        padding: 0.75rem 0.75rem;
        min-width: 60px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .lang-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .name-main {
        font-size: 2rem;
    }

    .name-sub {
        font-size: 0.9rem;
    }

    .countdown-item {
        padding: 0.75rem 0.75rem;
        min-width: 60px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-divider {
        font-size: 1.5rem;
    }
}