* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Tahoma", "Arial", sans-serif;
  background: #07140f;
  color: #ffffff;
  line-height: 1.9;
  direction: rtl;
  overflow-x: hidden;
}

.hero {
  width: 100%;
  min-height: 100vh;
  padding: clamp(24px, 6vw, 80px) 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(53, 226, 122, 0.18), transparent 35%),
    linear-gradient(135deg, #07140f, #0b2518);
}

.video-box {
  width: 100%;
  padding: clamp(7px, 1.5vw, 12px);
  border-radius: clamp(18px, 3vw, 30px);
  background: linear-gradient(
    145deg,
    rgba(53, 226, 122, 0.45),
    rgba(255, 255, 255, 0.08)
  );
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.video-box video {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  object-fit: cover;
  border-radius: clamp(14px, 2vw, 22px);
  display: block;
  background: #000;
}

.content {
  width: 100%;
  padding: clamp(24px, 5vw, 48px);
  border-radius: clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.content h1 {
  font-size: clamp(32px, 6vw, 60px);
  line-height: 1.25;
  margin-bottom: 22px;
  color: #35e27a;
}

.content h2 {
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.35;
  margin: 30px 0 18px;
  color: #35e27a;
}

.content p {
  font-size: clamp(16px, 2vw, 20px);
  color: #d7e7dd;
  margin-bottom: 16px;
}

.whatsapp {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 50px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 800;
  transition: 0.3s ease;
}

.whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-left: 6%;
    padding-right: 6%;
    text-align: center;
  }

  .video-box,
  .content {
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding: 28px 5%;
    gap: 28px;
  }

  .content {
    text-align: right;
  }

  .whatsapp {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero {
    padding: 22px 4%;
  }

  .content {
    padding: 22px;
  }

  .content h1 {
    font-size: 31px;
  }

  .content p {
    font-size: 16px;
  }
}
/* ================= CONTACT ================= */

.contact-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
    background:
    radial-gradient(circle at top right,rgba(53,226,122,.18),transparent 35%),
    linear-gradient(135deg,#07140f,#0b2518);
}

.contact-card{
    width:100%;
    max-width:650px;
    padding:50px 40px;
    text-align:center;
    border-radius:28px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.contact-card h1{
    font-size:clamp(34px,5vw,52px);
    color:#35e27a;
    margin-bottom:20px;
}

.contact-card p{
    color:#d7e7dd;
    font-size:18px;
    margin-bottom:35px;
}

.contact-btn{
    display:inline-flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:100%;
    max-width:420px;
    margin:auto;
    padding:18px;
    border-radius:18px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    font-weight:700;
    transition:.3s;
    box-shadow:0 15px 40px rgba(37,211,102,.35);
}

.contact-btn:hover{
    background:#1fb85b;
    transform:translateY(-3px);
}

@media(max-width:768px){

.contact-card{
    padding:35px 25px;
}

.contact-btn{
    font-size:20px;
}

}

@media(max-width:480px){

.contact-card{
    padding:28px 18px;
}

.contact-card h1{
    font-size:34px;
}

.contact-card p{
    font-size:16px;
}

.contact-btn{
    font-size:18px;
    padding:16px;
}

}