* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Cairo', sans-serif; 
    transition: all 0.3s ease; 
}

body { 
    background: #fff; 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    overflow-x: hidden; 
}

.visual-engine { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
    filter: blur(100px); 
}

.plasma { 
    position: absolute; 
    border-radius: 50%; 
    animation: plasmaFlow 20s infinite alternate ease-in-out; 
    opacity: 0.15; 
}

.p-1 { width: 600px; height: 600px; background: #002366; top: -10%; left: -5%; }
.p-2 { width: 550px; height: 550px; background: #E65100; bottom: -10%; right: -5%; animation-delay: -5s; }
.p-3 { width: 400px; height: 400px; background: #00d2ff; top: 30%; left: 20%; animation-duration: 15s; }

@keyframes plasmaFlow { 
    0% { transform: translate(0,0) scale(1) rotate(0deg); } 
    100% { transform: translate(120px, 90px) scale(1.1) rotate(45deg); } 
}

@keyframes fadeInCascading {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.fade-in-v {
    opacity: 0;
    animation: fadeInCascading 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.main-wrapper { 
    width: 92%; 
    max-width: 1200px; 
    margin: 60px 0 200px 0; 
    display: flex; 
    flex-direction: column; 
    gap: 35px; 
    z-index: 10; 
}

.map-container { 
    width: 100%; 
    height: 380px; 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.05); 
    border: 1px solid rgba(0,0,0,0.05); 
}

.map-container iframe { width: 100%; height: 100%; filter: saturate(1.2); }

.content-split { 
    display: flex; 
    gap: 35px; 
    width: 100%; 
    align-items: flex-start; 
}

body[dir="rtl"] .content-split {
    flex-direction: row-reverse;
}

body[dir="rtl"] .contact-box {
    text-align: right;
}

body[dir="rtl"] label {
    left: auto;
    right: 0;
}


.contact-box {
    flex: 7; 
    margin-top: -35px !important; 
    background: rgba(255, 255, 255, 0.7); 
    backdrop-filter: blur(25px); 
    padding: 45px; 
    border-radius: 20px; 
    border: 1px solid rgba(255,255,255,0.4); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.02); 
    text-align: left; 
    margin-bottom: 100px; 
}
.header-section h1 { font-weight: 200; color: #002366; font-size: 2.2rem; }
.header-section h1 span { color: #E65100; font-weight: 700; }
.header-section p { font-weight: 300; color: #888; margin-bottom: 35px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.field { position: relative; margin-bottom: 30px; }

input, textarea { 
    width: 100%; 
    padding: 12px 0; 
    background: transparent; 
    border: none; 
    border-bottom: 1.5px solid #eee; 
    font-size: 1rem; 
    outline: none; 
}

label { 
    position: absolute; 
    left: 0; 
    top: 12px; 
    color: #bbb; 
    pointer-events: none; 
    transition: 0.3s; 
    font-weight: 300; 
}

input:focus ~ label, 
input:not(:placeholder-shown) ~ label, 
textarea:focus ~ label, 
textarea:not(:placeholder-shown) ~ label { 
    top: -20px; 
    font-size: 0.75rem; 
    color: #E65100; 
    font-weight: 700; 
}

input:focus { border-bottom: 2px solid #002366; }

.prime-send-btn {
    width: 100%; 
    padding: 18px;
    background: linear-gradient(135deg, rgba(0, 35, 102, 0.6), rgba(0, 0, 0, 0.3));
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(0, 35, 102, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.prime-send-btn:hover {
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.8), rgba(255, 157, 0, 0.4));
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.2), 0 5px 15px rgba(0, 210, 255, 0.1);
}

.info-sidebar { 
    flex: 3; 
    display: grid !important; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
    align-content: start;
}

.sidebar-block { 
    background: rgba(255,255,255,0.65); 
    padding: 15px 20px; 
    border-radius: 20px; 
    border: 1px solid rgba(0,0,0,0.03); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.02); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 110px; 
}

.sidebar-block h4 { 
    color: #002366; 
    font-size: 0.9rem; 
    margin-bottom: 12px; 
    border-bottom: 2.5px solid #E65100; 
    display: inline-block; 
    padding-bottom: 3px; 
    width: fit-content;
}

@media (max-width: 900px) {
    .content-split { 
        flex-direction: column !important; 
    }
    
    .info-sidebar { 
        display: grid !important; 
        grid-template-columns: 1fr; 
        gap: 15px; 
        width: 100%;
        margin-top: 20px;
    }

    .sidebar-block {
        padding: 20px;
        min-height: auto; 
        margin-top: 0 !important;
    }
}

@media (max-width: 600px) {
    .info-sidebar {
        grid-template-columns: 1fr;
    }
    .whatsapp-quick-box {
        grid-column: span 1;
    }
}


@media (max-width: 500px) {
    .info-sidebar {
        grid-template-columns: 1fr !important; 
        gap: 12px;
    }

    .sidebar-block {
        padding: 15px;
    }

    body[dir="ltr"] .location-detail { justify-content: flex-start; text-align: left; }
    body[dir="rtl"] .location-detail { justify-content: flex-start; text-align: right; }

    .sidebar-block h4 { font-size: 1rem; }
    .location-detail p { font-size: 0.9rem; }
}

.interactive-link { text-decoration: none; color: inherit; display: block; }
.interactive-link:hover { transform: translateX(8px); }
.interactive-link:hover p { color: #E65100; font-weight: 700; }

.location-detail { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    color: #555; 
    font-weight: 300; 
    font-size: 0.95rem; 
}

.location-detail i { color: #E65100; font-size: 1.2rem; }

.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.social-grid a { color: #0b0b0b; font-size: 1.5rem; text-align: center; }
.social-grid a:hover { color: #E65100; transform: translateY(-5px); }

.bottom-bar { 
    position: fixed; 
    bottom: 0; 
    width: 100%; 
    background: rgba(255,255,255,0.9); 
    padding: 25px; 
    border-top: 1px solid #f3f3f3; 
    text-align: center; 
    z-index: 100; 
}

.copyright-center p { font-size: 0.85rem; color: #aaa; font-weight: 300; letter-spacing: 0.5px; }

@media (max-width: 900px) {
    .content-split { flex-direction: column; }
    .form-grid { grid-template-columns: 1fr; }
    .main-wrapper { margin-top: 30px; }
}
.swal2-icon.swal2-success {
    border-color: #ff8c00 !important;
    color: #ff8c00 !important;
}
.swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #ff8c00 !important;
}
.swal2-icon.swal2-success .swal2-success-ring {
    border: .25em solid rgba(255, 140, 0, .3) !important;
}
.swal2-title, .swal2-html-container {
    font-family: 'Cairo', sans-serif !important;
}
.interactive-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}
.interactive-link:hover {
    opacity: 0.8;
}

.swal2-icon.swal2-success {
      border-color: #ff8c00 !important;
      color: #ff8c00 !important;
    }
    .swal2-icon.swal2-success [class^='swal2-success-line'] {
      background-color: #ff8c00 !important;
    }
    .swal2-icon.swal2-success .swal2-success-ring {
      border: .25em solid rgba(255, 140, 0, .3) !important;
    }
    .swal2-title, .swal2-html-container {
      font-family: 'Cairo', sans-serif !important;
    }

    .contact-header-section {
      width: 100%;
      text-align: center;
      padding: 60px 5% 30px 5%;
    }

.contact-header-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #002366; 
  margin-bottom: 10px;
  position: relative;
}

.contact-header-section .section-title span {
  color: #E65100; 
}

    .contact-header-section .section-title::after {
      content: '';
      display: block;
      width: 120px;
      height: 5px;
      margin: 15px auto 25px auto;
      border-radius: 3px;
      background: linear-gradient(90deg, #ED771B, #002366);
    }

    .contact-header-section .section-subtitle {
      font-size: 1.2rem;
      color: #555;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .interactive-link {
      text-decoration: none;
      color: inherit;
      transition: opacity 0.3s;
    }
    .interactive-link:hover {
      opacity: 0.8;
    }

    @media (max-width: 768px) {
      .contact-header-section {
        padding: 40px 5% 20px 5%;
      }
      .contact-header-section .section-title {
        font-size: 2.2rem;
      }
    }

 .swal2-icon.swal2-success {
            border-color: #ff8c00 !important;
            color: #ff8c00 !important;
        }
        .swal2-icon.swal2-success [class^='swal2-success-line'] {
            background-color: #ff8c00 !important;
        }
        .swal2-icon.swal2-success .swal2-success-ring {
            border: .25em solid rgba(255, 140, 0, .3) !important;
        }
        .swal2-title, .swal2-html-container {
            font-family: 'Cairo', sans-serif !important;
        }
        .interactive-link {
            text-decoration: none;
            color: inherit;
            transition: opacity 0.3s;
        }
        .interactive-link:hover {
            opacity: 0.8;
        }

  
#footer {
  width: 100%;
  height: 100px;
  margin: 0;
  padding: 0; 
  position: relative; 
  z-index: 100;
  background: #f7f7f7;
  border-top: 1px solid #eaeaea;
}

.footer-container {
  padding: 0 5%; 
  height: 100%; 
  direction: ltr;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer-logo img.footer-img {
  height: 45px; 
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo span {
  font-family: 'Cairo', sans-serif;
  font-weight: 400; 
  font-size: 1.25rem; 
  color: #222;
  margin-left: 10px; 
  line-height: 1;
}

.footer-copy {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem; 
  font-weight: 400; 
  color: #222;
  line-height: 1;
}



body[dir="rtl"] .footer-container {
  direction: rtl; 
}

body[dir="rtl"] .footer-logo span {
  margin-left: 0;
  margin-right: 10px;
}


@media (max-width: 992px) {
  #footer {
    height: auto; 
  }
  
  .footer-container {
    flex-direction: column; 
    justify-content: center;
    padding: 20px 5%;
    gap: 15px;
  }

  .footer-logo span {
    margin: 0 10px; 
  }
}


.whatsapp-quick-box {
    grid-column: span 2; 
    margin-top: 10px;
}

.whatsapp-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(230, 81, 0, 0.05); 
    border: 1px dashed #E65100;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-card:hover {
    background: rgba(230, 81, 0, 0.1);
    transform: translateY(-3px);
    border-style: solid;
}

.wa-icon-pulse {
    width: 45px;
    height: 45px;
    background: #E65100;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.4);
    animation: wa-pulse 2s infinite;
}

.wa-info p {
    font-size: 13px;
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
}

.wa-info span {
    font-size: 11px;
    color: #E65100;
    font-weight: 700;
    text-transform: uppercase;
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(230, 81, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 81, 0, 0); }
}





.content-split {
    display: flex;
    align-items: center;
    gap: 50px; 
}

.map-container {
    margin-bottom: 20px;
}


/* ============================================================
   ============================================================ */
.full-width-white-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    
    background: #ffffff;
padding: 80px 0; 
margin-bottom: 20px !important; 
    overflow: hidden;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.tech-grid-bg {
    position: absolute;
    top: -10%; 
    left: -10%;
    width: 120%; 
    height: 120%;
    background-image: 
        linear-gradient(rgba(55, 59, 60, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 210, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    
    animation: liquidGridMove 15s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
    transform-origin: center;
}

@keyframes liquidGridMove {
    0% {
        transform: scale(1) skew(2deg) rotate(0deg);
        background-position: 0 0;
    }
    50% {
        transform: scale(1.1) skew(-3deg) rotate(1deg);
        background-position: 40px 40px;
    }
    100% {
        transform: scale(1) skew(4deg) rotate(-1deg);
        background-position: -20px 60px;
    }
}

@keyframes gridFlow {
    from { background-position: 0 0; }
    to { background-position: 50px 50px; }
}

.full-width-white-section .content-split {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

body[dir="rtl"] .full-width-white-section .content-split {
    flex-direction: row-reverse !important;
}

.location-image-wrapper {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.location-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #002366; 
    font-size: 1.6rem;
    margin-bottom: 25px; 
    text-align: center;
    line-height: 1.6; 
}

.location-title span {
    color: #E65100; 
}


body[dir="rtl"] .location-title {
    font-family: 'Cairo', sans-serif;
    font-size: 1.8rem; 
}

.image-and-pin-container {
    position: relative; 
    display: inline-block;
}

@media (max-width: 600px) {
    .location-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
        padding: 0 10px;
    }
}

.location-image-wrapper {
    flex: 0 0 55%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.fog-glow {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

@keyframes fogBreath {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.location-3d-img {
    width: 100%;
    max-width: 450px; 
    height: auto;
    display: block;
    transform: none !important; 
    
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
                        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-composite: source-in;
    
    mask-image: linear-gradient(to right, transparent 0%, black 25%, black 70%, transparent 100%),
                linear-gradient(to bottom, transparent 0%, black 20%, black 85%, transparent 100%);
    mask-composite: intersect;
    
    box-shadow: none !important; 
    background: transparent !important;
    border: none !important;
    border-radius: 0;
}


.location-pin {
    position: absolute;
    top: 15%; 
    left: 34%; 
    transform: translateX(-50%); 
    z-index: 10;
    color: #E65100;
    font-size: 2.5rem;
    filter: drop-shadow(0 8px 10px rgba(0,0,0,0.3));
    animation: pinBounceFlat 3s ease-in-out infinite; 
    pointer-events: none;
}

@keyframes pinBounceFlat {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-12px) scale(1.05);
    }
}

.info-sidebar {
    flex: 0 0 40%;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.sidebar-block {
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
}

.sidebar-block:hover {
    transform: translateY(-5px);
    border-color: #E65100 !important;
}

.whatsapp-quick-box {
    grid-column: span 2; 
}

@media (max-width: 992px) {
body[dir="rtl"] .content-split,
    body[dir="rtl"] .full-width-white-section .content-split {     
           flex-direction: column !important;
        gap: 40px;
    }
    .location-image-wrapper {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .location-3d-img {
        max-width: 280px; 
    }
    .location-pin {
        font-size: 2rem;
        top: 12%;
    }
}

