:root {
  --teal:       #2ABFBF;
  --teal-dark:  #1A9696;
  --teal-light: #E6F7F7;
  --gray-100:   #F4F6F7;
  --gray-200:   #E8ECEE;
  --gray-500:   #7A8F96;
  --gray-800:   #2C3E42;
  --white:      #FFFFFF;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Heebo', sans-serif; color: var(--gray-800); direction: rtl; text-align: right; }

/* TOPBAR */
.fp-topbar { background: var(--gray-800); color: #ccc; font-size: 13px; padding: 8px 40px; display: flex; justify-content: space-between; align-items: center; }
.fp-topbar a { color: #ccc; text-decoration: none; }
.fp-topbar a:hover { color: var(--teal); }
.fp-topbar-links { display: flex; gap: 20px; align-items: center; }

/* NAVBAR */
.fp-nav { background: var(--white); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 2px 12px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.fp-logo { font-size: 26px; font-weight: 900; color: var(--teal-dark); padding: 16px 0; letter-spacing: -0.5px; direction: ltr; text-decoration: none; }
.fp-logo span { color: var(--gray-800); }
.fp-nav-links { display: flex; gap: 8px; list-style: none; }
.fp-nav-links a { text-decoration: none; color: var(--gray-800); font-weight: 500; font-size: 15px; padding: 22px 14px; display: block; transition: color .2s; border-bottom: 3px solid transparent; }
.fp-nav-links a:hover { color: var(--teal); border-bottom-color: var(--teal); }
.fp-nav-cta { background: var(--teal) !important; color: var(--white) !important; border-radius: 6px; padding: 10px 20px !important; border-bottom: none !important; margin-right: 8px; }
.fp-nav-cta:hover { background: var(--teal-dark) !important; }

/* HAMBURGER */
.fp-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.fp-hamburger span { display: block; width: 26px; height: 3px; background: var(--gray-800); border-radius: 3px; transition: all .3s; }
.fp-mobile-menu { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--gray-200); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.fp-mobile-menu.open { display: flex; }
.fp-mobile-menu a { padding: 14px 24px; font-size: 16px; font-weight: 600; color: var(--gray-800); text-decoration: none; border-bottom: 1px solid var(--gray-200); }
.fp-mobile-menu a:last-child { border-bottom: none; color: var(--teal); font-size: 17px; }
.fp-mobile-menu a:hover { background: var(--teal-light); color: var(--teal); }

/* HERO */
.fp-hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, var(--gray-800) 0%, #1e3538 60%, #0d2528 100%); }
.fp-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18; }
.fp-hero-content { position: relative; max-width: 700px; padding: 60px 80px; z-index: 2; }
.fp-hero-badge { display: inline-block; background: var(--teal); color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 1px; padding: 5px 16px; border-radius: 20px; margin-bottom: 22px; }
.fp-hero h1 { font-size: clamp(32px, 5vw, 58px); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.fp-hero h1 em { font-style: normal; color: var(--teal); }
.fp-hero-sub { font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.fp-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.fp-btn-primary { background: var(--teal); color: var(--white); padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 700; text-decoration: none; transition: background .2s; display: inline-block; }
.fp-btn-primary:hover { background: var(--teal-dark); color: var(--white); }
.fp-btn-outline { border: 2px solid rgba(255,255,255,0.5); color: var(--white); padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 600; text-decoration: none; transition: border-color .2s; display: inline-block; }
.fp-btn-outline:hover { border-color: var(--teal); }
.fp-hero-stats { position: absolute; left: 60px; bottom: 60px; display: flex; gap: 40px; z-index: 2; }
.fp-hero-stat { text-align: center; color: var(--white); border-right: 2px solid rgba(255,255,255,0.2); padding-right: 40px; }
.fp-hero-stat:last-child { border-right: none; }
.fp-hero-stat .num { font-size: 36px; font-weight: 900; color: var(--teal); }
.fp-hero-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ICONS STRIP */
.fp-icons-strip { background: var(--white); padding: 50px 60px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.fp-icons-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.fp-icon-card { text-align: center; padding: 24px 12px; border-radius: 12px; transition: background .2s, transform .2s; }
.fp-icon-card:hover { background: var(--teal-light); transform: translateY(-4px); }
.fp-icon-wrap { width: 56px; height: 56px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 26px; }
.fp-icon-card h4 { font-size: 13px; font-weight: 600; color: var(--gray-800); line-height: 1.4; }

/* SECTION LABELS */
.fp-section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; display: block; }
.fp-section-title { font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; color: var(--gray-800); line-height: 1.25; margin-bottom: 16px; }
.fp-section-title em { font-style: normal; color: var(--teal); }
.fp-section-sub { font-size: 16px; color: var(--gray-500); line-height: 1.7; max-width: 560px; }

/* POOL TYPES */
.fp-pool-types { background: var(--gray-100); padding: 80px 60px; }
.fp-pool-types-inner { max-width: 1100px; margin: 0 auto; }
.fp-pool-types-header { margin-bottom: 50px; }
.fp-pool-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.fp-pool-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); transition: transform .25s, box-shadow .25s; }
.fp-pool-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(42,191,191,0.15); }
.fp-pool-card img { width: 100%; height: 240px; object-fit: cover; }
.fp-pool-card-body { padding: 28px; }
.fp-pool-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.fp-pool-card p { color: var(--gray-500); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.fp-pool-card-link { color: var(--teal); font-weight: 700; text-decoration: none; font-size: 15px; }
.fp-pool-card-link:hover { color: var(--teal-dark); }

/* ABOUT */
.fp-about { padding: 90px 60px; background: var(--white); }
.fp-about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.fp-about-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 12px; border-radius: 16px; overflow: hidden; }
.fp-about-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.fp-about-gallery img.big { grid-row: 1 / 3; }
.fp-about-gallery img:hover { transform: scale(1.04); }
.fp-checkmarks { margin: 28px 0; list-style: none; }
.fp-checkmarks li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 15px; line-height: 1.5; }
.fp-check-icon { width: 22px; height: 22px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); font-size: 12px; margin-top: 2px; }

/* WHY */
.fp-why { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%); padding: 80px 60px; color: var(--white); }
.fp-why-inner { max-width: 1100px; margin: 0 auto; }
.fp-why h2 { font-size: 36px; font-weight: 900; margin-bottom: 8px; }
.fp-why .sub { color: rgba(255,255,255,0.78); font-size: 16px; margin-bottom: 50px; }
.fp-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.fp-why-item { background: rgba(255,255,255,0.12); border-radius: 12px; padding: 30px; transition: background .2s; }
.fp-why-item:hover { background: rgba(255,255,255,0.2); }
.fp-why-item .num { font-size: 44px; font-weight: 900; color: rgba(255,255,255,0.25); line-height: 1; margin-bottom: 12px; }
.fp-why-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.fp-why-item p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* GALLERY */
.fp-gallery-section { padding: 80px 60px; background: var(--gray-100); }
.fp-gallery-inner { max-width: 1100px; margin: 0 auto; }
.fp-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 200px 200px; gap: 12px; margin-top: 40px; border-radius: 16px; overflow: hidden; }
.fp-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, filter .3s; filter: brightness(.92); }
.fp-gallery-grid img:hover { transform: scale(1.05); filter: brightness(1); }
.fp-gallery-grid .span2 { grid-column: span 2; }

/* CONTACT */
.fp-contact { padding: 80px 60px; background: var(--white); }
.fp-contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.fp-contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.1); height: 400px; }
.fp-contact-map iframe { width: 100%; height: 100%; border: none; }
.fp-contact-info-items { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.fp-contact-item { display: flex; align-items: center; gap: 14px; font-size: 15px; }
.fp-ci-icon { width: 44px; height: 44px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.fp-contact-item a { color: var(--gray-800); text-decoration: none; font-weight: 600; }
.fp-contact-item a:hover { color: var(--teal); }
.fp-contact-form { display: flex; flex-direction: column; gap: 14px; }
.fp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fp-contact-form input,
.fp-contact-form select,
.fp-contact-form textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-200); border-radius: 8px; font-family: 'Heebo', sans-serif; font-size: 16px; color: var(--gray-800); background: var(--gray-100); direction: rtl; transition: border-color .2s; outline: none; }
.fp-contact-form input:focus,
.fp-contact-form select:focus,
.fp-contact-form textarea:focus { border-color: var(--teal); background: var(--white); }
.fp-contact-form textarea { height: 90px; resize: none; }
.fp-contact-form button { background: var(--teal); color: var(--white); border: none; padding: 15px; border-radius: 8px; font-size: 16px; font-weight: 700; font-family: 'Heebo', sans-serif; cursor: pointer; transition: background .2s; width: 100%; }
.fp-contact-form button:hover { background: var(--teal-dark); }

/* FOOTER */
.fp-footer { background: var(--gray-800); color: rgba(255,255,255,0.7); padding: 60px 60px 30px; }
.fp-footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.fp-footer-logo { font-size: 24px; font-weight: 900; color: var(--white); margin-bottom: 14px; direction: ltr; display: block; }
.fp-footer-logo span { color: var(--teal); }
.fp-footer-desc { font-size: 14px; line-height: 1.7; }
.fp-footer-col h5 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.fp-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fp-footer-col ul a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color .2s; }
.fp-footer-col ul a:hover { color: var(--teal); }
.fp-social { display: flex; gap: 10px; margin-top: 16px; }
.fp-social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--white); font-size: 16px; transition: background .2s; }
.fp-social-btn:hover { background: var(--teal); }
.fp-footer-bottom { max-width: 1100px; margin: 24px auto 0; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.4); }
.fp-footer-phone-box { display: flex; gap: 8px; }
.fp-footer-phone-box input { padding: 10px 12px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: white; font-family: Heebo; font-size: 13px; flex: 1; direction: rtl; outline: none; }
.fp-footer-phone-box button { background: var(--teal); color: white; border: none; padding: 10px 16px; border-radius: 6px; cursor: pointer; font-family: Heebo; font-weight: 700; white-space: nowrap; }

/* WHATSAPP */
.fp-wa { position: fixed; bottom: 30px; left: 30px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.5); text-decoration: none; z-index: 999; transition: transform .2s; }
.fp-wa:hover { transform: scale(1.12); }

/* ── TABLET ── */
@media (max-width: 1024px) {
  .fp-icons-grid { grid-template-columns: repeat(3, 1fr); }
  .fp-why-grid { grid-template-columns: 1fr 1fr; }
  .fp-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .fp-topbar { padding: 8px 16px; font-size: 12px; }
  .fp-topbar-links:last-child { display: none; }
  .fp-nav { padding: 0 16px; }
  .fp-nav-links { display: none; }
  .fp-hamburger { display: flex; }
  .fp-hero { min-height: 100svh; align-items: flex-end; padding-bottom: 40px; }
  .fp-hero-content { padding: 32px 20px 24px; max-width: 100%; }
  .fp-hero-badge { font-size: 11px; padding: 4px 12px; margin-bottom: 16px; }
  .fp-hero h1 { font-size: 30px; margin-bottom: 16px; }
  .fp-hero-sub { font-size: 15px; margin-bottom: 28px; }
  .fp-hero-btns { flex-direction: column; gap: 12px; }
  .fp-btn-primary, .fp-btn-outline { text-align: center; padding: 15px 24px; font-size: 16px; width: 100%; }
  .fp-hero-stats { display: none; }
  .fp-icons-strip { padding: 30px 16px; }
  .fp-icons-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fp-icon-card { padding: 18px 8px; }
  .fp-pool-types, .fp-about, .fp-why, .fp-gallery-section, .fp-contact { padding: 50px 16px; }
  .fp-footer { padding: 40px 16px 20px; }
  .fp-pool-cards { grid-template-columns: 1fr; gap: 20px; }
  .fp-pool-card img { height: 200px; }
  .fp-about-inner { grid-template-columns: 1fr; gap: 30px; }
  .fp-about-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
  .fp-why-grid { grid-template-columns: 1fr; gap: 16px; }
  .fp-why h2 { font-size: 26px; }
  .fp-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 8px; }
  .fp-gallery-grid .span2 { grid-column: span 2; height: 180px; }
  .fp-gallery-grid img { height: 130px; }
  .fp-contact-inner { grid-template-columns: 1fr; gap: 30px; }
  .fp-contact-map { height: 240px; }
  .fp-form-row { grid-template-columns: 1fr; }
  .fp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .fp-footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 12px; }
  .fp-wa { left: 16px; bottom: 20px; width: 52px; height: 52px; font-size: 24px; }
}
@media (max-width: 380px) {
  .fp-hero h1 { font-size: 26px; }
  .fp-section-title { font-size: 22px; }
}
