/* ===== GLOBAL ===== */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #eef7f6;
  color: #2f3e3e;
}

body {
  font-family: "Segoe UI", "Cairo", sans-serif;
}
.ar {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", sans-serif;
  color: #2f3e3e;
}

/* ===== NAVBAR ===== */
.nav{
  position: sticky;
  top: 0;
  z-index: 999;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 14px 34px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(63,167,161,0.15);
}

.nav-right a{
  margin-left: 22px;
  text-decoration:none;
  color:#3fa7a1;
  font-weight:600;
  letter-spacing: 0.2px;
}

.nav-right a:hover{
  opacity: 0.75;
}

.logo{
  height: 56px;
}

/* ===== HERO ===== */
.hero{
  position: relative;
  margin: 22px auto 0;
  max-width: 1200px;
  border-radius: 26px;
  padding: 110px 24px;
  text-align: center;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 20%, rgba(63,167,161,0.22), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(63,167,161,0.16), transparent 40%),
    linear-gradient(180deg, rgba(63,167,161,0.16), rgba(238,247,246,1));
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  border: 1px solid rgba(63,167,161,0.18);
}

/* Soft “pattern” overlay */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(rgba(63,167,161,0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
  pointer-events:none;
}

/* Keep text above overlay */
.hero *{
  position: relative;
  z-index: 1;
}
.hero h1{
  margin: 0;
  font-size: 64px;
  color: #2f6f6c;
  letter-spacing: 0.6px;
}

.hero p{
  margin-top: 14px;
  font-size: 18px;
  color: #2f3e3e;
  opacity: 0.85;
}
.signature{
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #2f6f6c;
  opacity: 0.75;
}


/* ===== SECTIONS ===== */
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h1,
.section h2 {
  color: #3fa7a1;
  text-align: center;
}

.subtitle {
  text-align: center;
  color: #6f8f8f;
  margin-top: 10px;
}

/* ===== PRICE LIST ===== */
.price-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  margin-bottom: 12px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.price-list span {
  font-weight: bold;
  color: #3fa7a1;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 25px;
  background: #ffffff;
  color: #6f8f8f;
  margin-top: 50px;
}
 .service-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 70px;
}

.service-block img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .service-block {
    grid-template-columns: 1fr;
  }
}
/* ===== CONTACT PAGE ===== */
.contact-section {
  background: linear-gradient(
    rgba(63,167,161,0.08),
    rgba(63,167,161,0.08)
  );
  border-radius: 30px;
  padding: 70px 30px;
}

.booking-form {
  max-width: 420px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-form input,
.booking-form select {
  padding: 14px 18px;
  border-radius: 25px;
  border: none;
  font-size: 15px;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
  box-shadow: 0 0 0 2px rgba(63,167,161,0.4);
}
/* ===== CONTACT PAGE BACKGROUND (LIGHT GREEN + LOGO WATERMARK) ===== */
body.contact-page {
  background-color: #eef7f6; /* light green */
  position: relative;
}

/* Watermark logo */
body.contact-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 420px;
  opacity: 0.06;           /* watermark strength */
  pointer-events: none;    /* so user can still click form */
  z-index: 0;
}

/* Make sure content stays above watermark */
body.contact-page .nav,
body.contact-page .section,
body.contact-page .footer {
  position: relative;
  z-index: 1;
}

/* Optional: make the form card pop */
body.contact-page .contact-section {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  border-radius: 30px;
  padding: 70px 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* ===== SCROLL ANIMATIONS ===== */
/* ===== SAFE SCROLL ANIMATIONS ===== */
.animate {
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.animate.hidden {
  opacity: 0;
  transform: translateY(30px);
}
.animate.show {
  opacity: 1;
  transform: translateY(0);
}


.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.btn{
  display:inline-block;
  margin-top: 26px;
  padding: 14px 30px;
  background: #3fa7a1;
  color:#fff;
  text-decoration:none;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 30px rgba(63,167,161,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(63,167,161,0.32);
  opacity: 0.95;
}
.section{
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
}
.map-container{
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
/* ===== MOBILE NAVBAR ===== */
@media (max-width: 768px) {
  .nav {
    padding: 12px 18px;
  }

  .nav-right a {
    margin-left: 14px;
    font-size: 15px;
  }

  .logo {
    height: 48px;
  }
}
/* ===== MOBILE HERO ===== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 18px;
    margin: 14px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .signature {
    font-size: 14px;
  }

  .hero p {
    font-size: 16px;
  }
}
/* ===== MOBILE BUTTONS ===== */
@media (max-width: 768px) {
  .btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    border-radius: 40px;
  }
}
/* ===== MOBILE SERVICES ===== */
@media (max-width: 768px) {
  .service-block {
    display: block;
    margin-bottom: 60px;
  }

  .service-block img {
    margin-bottom: 20px;
  }

  .price-list li {
    font-size: 15px;
    padding: 14px 16px;
  }
}
/* ===== MOBILE FORMS ===== */
@media (max-width: 768px) {
  input,
  select {
    font-size: 16px; /* prevents zoom on iPhone */
    padding: 16px;
  }
}
/* ===== STICKY MOBILE BOOK BUTTON ===== */
@media (max-width: 768px) {
  .mobile-book {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 999;
  }
}
.section-divider{
  display: flex;
  justify-content: center;
  margin: 80px 0;
}

.section-divider span{
  width: 120px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(
    to right,
    transparent,
    #3fa7a1,
    transparent
  );
}
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.gallery-grid img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover{
  transform: scale(1.03);
}
/* ===== GALLERY PREVIEW SECTION ===== */
.gallery-preview{
  text-align: center;
  background: #eef7f6;
  border-radius: 26px;
  padding: 80px 20px;
  margin: 70px auto;
  max-width: 1200px;
  border: 1px solid rgba(63,167,161,0.16);
}

.gallery-preview-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.gallery-preview-grid img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.gallery-preview-grid img:hover{
  transform: scale(1.04);
}

.gallery-btn{
  margin-top: 20px;
}
@media (max-width: 768px){
  .gallery-preview{
    padding: 50px 18px;
  }

  .gallery-preview-grid img{
    height: 200px;
  }
}
@media (max-width: 768px) {
  .hero .btn {
    width: calc(100% - 20px); /* 🔥 key fix */
    margin: 0 auto;
    display: block;
  }
}
  .hero {
    overflow: hidden;
}

