/* ===================================================
   كليفا شاين — CSS الرئيسي
   =================================================== */

/* ── المتغيرات ── */
:root {
  --primary:      #1a2e4a;
  --primary-dark: #0d1e33;
  --accent:       #2dd4a0;
  --accent-dark:  #22b589;
  --white:        #ffffff;
  --light:        #f0f9f6;
  --light-gray:   #f8fafc;
  --gray:         #64748b;
  --border:       #e2e8f0;
  --shadow:       0 4px 24px rgba(26,46,74,.10);
  --shadow-lg:    0 12px 48px rgba(26,46,74,.18);
  --radius:       18px;
  --radius-sm:    10px;
  --transition:   all .35s cubic-bezier(.4,0,.2,1);
}

/* ── ريسيت وقاعدة ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html   { scroll-behavior:smooth; font-size:16px; }
body   { font-family:'Cairo',sans-serif; direction:rtl; background:#fff; color:var(--primary); overflow-x:hidden; }
img    { display:block; max-width:100%; }
a      { text-decoration:none; }
ul     { list-style:none; }
button { font-family:inherit; cursor:pointer; }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
#header {
  position: fixed; top:0; right:0; left:0; z-index:1000;
  transition: var(--transition);
}
.header-inner {
  max-width:1320px; margin:0 auto; padding:0 clamp(12px, 3vw, 32px);
  display:flex; align-items:center; justify-content:space-between;
  height:88px; gap:12px;
}
#header.scrolled {
  background:rgba(13,30,51,.96);
  backdrop-filter:blur(18px);
  box-shadow:0 2px 24px rgba(0,0,0,.18);
  height:72px;
}
#header.scrolled .header-inner { height:72px; }

/* Logo */
.logo {
  display:flex; align-items:center; gap:14px;
}
.logo-icon {
  width:72px; height:72px;
  background:linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  font-size:30px; color:#fff;
  position:relative; overflow:hidden;
  transition:var(--transition);
  flex-shrink:0;
  box-shadow:0 6px 20px rgba(45,212,160,.4);
}
.logo-icon:not(.has-img)::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.2),transparent);
  pointer-events:none;
}
/* ── Logo with uploaded image: white background, no cropping ── */
.logo-icon.has-img {
  width:auto;
  height:68px;
  min-width:68px;
  max-width:240px;
  background:#fff;
  box-shadow:0 2px 12px rgba(0,0,0,.12);
  border-radius:12px;
  overflow:hidden;
  padding:6px 10px;
}
.logo-icon.has-img img {
  height:56px;
  width:auto;
  max-width:220px;
  object-fit:contain;
  display:block;
  border-radius:0;
  padding:0;
}
#header.scrolled .logo-icon          { width:58px; height:58px; font-size:24px; }
#header.scrolled .logo-icon.has-img  { width:auto; height:54px; min-width:54px; padding:5px 8px; }
#header.scrolled .logo-icon.has-img img { height:44px; }
.logo-text  { display:flex; flex-direction:column; line-height:1.15; }
.logo-name  { font-size:28px; font-weight:900; color:#fff; letter-spacing:-.5px; }
.logo-sub   { font-size:12px; font-weight:500; color:var(--accent); letter-spacing:2px; }
#header.scrolled .logo-name { font-size:23px; }

/* Nav links */
nav { display:flex; align-items:center; gap:4px; }
.nav-link {
  color:rgba(255,255,255,.82); font-size:15px; font-weight:600;
  padding:8px 18px; border-radius:50px; transition:var(--transition);
}
.nav-link:hover, .nav-link.active { color:#fff; background:rgba(255,255,255,.1); }
.nav-link.active { color:var(--accent); }

/* Book button */
.btn-book {
  background:linear-gradient(135deg,var(--accent),var(--accent-dark));
  color:#fff; border:none; padding:12px 28px; border-radius:50px;
  font-size:15px; font-weight:700;
  box-shadow:0 4px 16px rgba(45,212,160,.35);
  transition:var(--transition); white-space:nowrap;
}
.btn-book:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(45,212,160,.5); }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; padding:8px; }
.hamburger span { display:block; width:26px; height:2.5px; background:#fff; border-radius:2px; transition:var(--transition); }
.hamburger.open span:nth-child(1) { transform:translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display:none; position:fixed; top:72px; right:0; left:0;
  background:rgba(13,30,51,.98); backdrop-filter:blur(16px);
  padding:24px; flex-direction:column; gap:6px; z-index:999;
  border-top:1px solid rgba(255,255,255,.07);
}
.mobile-nav.open { display:flex; }
.mobile-nav .nav-link { font-size:17px; padding:13px 18px; border-radius:10px; }
.mobile-nav .btn-book { text-align:center; margin-top:10px; padding:14px; font-size:16px; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height:100vh;
  min-height: calc(var(--vh, 1vh) * 100); /* iOS Safari fix */
  background:linear-gradient(135deg,#080f1a 0%,#0d1e33 40%,#0a2b20 100%);
  position:relative; display:flex; align-items:center; overflow:hidden;
}

/* Background elements */
.hero-bg { position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.hero-blob {
  position:absolute; border-radius:50%; filter:blur(80px); opacity:.12;
  animation:floatBlob 10s ease-in-out infinite;
}
.hero-blob-1 { width:700px; height:700px; background:var(--accent); top:-200px; left:-200px; }
.hero-blob-2 { width:500px; height:500px; background:#1a6fff; bottom:-100px; right:-150px; animation-delay:-5s; }
.hero-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(45,212,160,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(45,212,160,.04) 1px,transparent 1px);
  background-size:64px 64px;
}
.hero-particles { position:absolute; inset:0; }
.particle {
  position:absolute; width:3px; height:3px;
  background:var(--accent); border-radius:50%;
  opacity:.5; animation:particleRise linear infinite;
}

/* Content grid */
.hero-content {
  max-width:1320px; margin:0 auto; padding:130px 32px 80px;
  display:grid; grid-template-columns:1fr 1fr;
  gap:64px; align-items:center;
  position:relative; z-index:2;
  width:100%; box-sizing:border-box;
}

/* Text side */
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(45,212,160,.14); border:1px solid rgba(45,212,160,.28);
  color:var(--accent); padding:8px 20px; border-radius:50px;
  font-size:13px; font-weight:700; margin-bottom:22px;
  animation:fadeDown .8s ease both;
}
.hero-title {
  font-size:62px; font-weight:900; color:#fff; line-height:1.15;
  margin-bottom:22px; animation:fadeDown .95s ease both;
}
.hero-title .hl {
  background:linear-gradient(135deg,var(--accent),#00f5c8);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-desc {
  font-size:17px; color:rgba(255,255,255,.68); line-height:1.9;
  margin-bottom:36px; animation:fadeDown 1.1s ease both;
}
.hero-btns {
  display:flex; gap:16px; flex-wrap:wrap;
  animation:fadeDown 1.25s ease both;
}
.btn-primary {
  background:linear-gradient(135deg,var(--accent),var(--accent-dark));
  color:#fff; border:none; padding:15px 36px; border-radius:50px;
  font-size:16px; font-weight:700;
  display:inline-flex; align-items:center; gap:10px;
  box-shadow:0 8px 32px rgba(45,212,160,.42);
  transition:var(--transition);
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 14px 40px rgba(45,212,160,.58); }
.btn-outline {
  background:transparent; color:#fff;
  border:2px solid rgba(255,255,255,.28);
  padding:13px 36px; border-radius:50px;
  font-size:16px; font-weight:600;
  display:inline-flex; align-items:center; gap:10px;
  transition:var(--transition);
}
.btn-outline:hover { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.55); transform:translateY(-2px); }

.hero-stats {
  display:flex; gap:36px; margin-top:48px;
  padding-top:36px; border-top:1px solid rgba(255,255,255,.1);
  animation:fadeDown 1.4s ease both;
  flex-wrap:wrap;
}
.hero-stat-num  { font-size:32px; font-weight:900; color:var(--accent); line-height:1; }
.hero-stat-label{ font-size:13px; color:rgba(255,255,255,.5); margin-top:5px; }

/* Visual side */
.hero-visual { position:relative; animation:fadeLeft 1s ease both; }
.hero-img-wrap {
  position:relative; border-radius:28px; overflow:hidden;
  box-shadow:0 32px 80px rgba(0,0,0,.45);
  aspect-ratio:4/5;
}
.hero-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s ease, opacity .8s ease;
}
.hero-img-wrap:hover img { transform:scale(1.04); }
.hero-img-overlay {
  position:absolute; inset:0;
  background:linear-gradient(0deg,rgba(10,43,32,.7) 0%,transparent 50%);
}

/* Floating cards */
.float-card {
  position:absolute; background:rgba(13,30,51,.92);
  backdrop-filter:blur(12px); border:1px solid rgba(45,212,160,.25);
  border-radius:14px; padding:14px 18px;
  display:flex; align-items:center; gap:12px;
  box-shadow:0 8px 30px rgba(0,0,0,.25);
  animation:floatCard 4s ease-in-out infinite;
}
.float-card-1 { bottom:28px; right:-20px; }
.float-card-2 { top:36px;   left:-20px; animation-delay:-2s; }
.float-card .fc-icon {
  width:40px; height:40px;
  background:linear-gradient(135deg,var(--accent),var(--accent-dark));
  border-radius:10px; display:flex; align-items:center;
  justify-content:center; font-size:18px; color:#fff; flex-shrink:0;
}
.float-card .fc-title { font-size:13px; font-weight:700; color:#fff; }
.float-card .fc-sub   { font-size:11px; color:rgba(255,255,255,.5); }

/* ════════════════════════════════════════
   SHARED SECTION BASE
════════════════════════════════════════ */
.section { padding:96px clamp(12px, 4vw, 32px); }
.section-inner { max-width:1320px; margin:0 auto; width:100%; }
.section-header { text-align:center; margin-bottom:64px; }
.section-tag {
  display:inline-block;
  background:rgba(45,212,160,.12); color:var(--accent);
  padding:6px 22px; border-radius:50px;
  font-size:13px; font-weight:700; letter-spacing:.5px;
  margin-bottom:14px;
}
.section-title      { font-size:44px; font-weight:900; line-height:1.2; margin-bottom:14px; }
.section-title .hl  { color:var(--accent); }
.section-desc       { font-size:16px; color:var(--gray); line-height:1.85; max-width:560px; margin:0 auto; }

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services { background:var(--light-gray); }
.services-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:26px;
}
.service-card {
  background:#fff; border-radius:var(--radius);
  overflow:hidden; border:1px solid var(--border);
  transition:var(--transition); cursor:default;
  display:flex; flex-direction:column;
}
.service-card:hover { transform:translateY(-10px); box-shadow:var(--shadow-lg); border-color:var(--accent); }

.service-img {
  position:relative; height:200px; overflow:hidden; flex-shrink:0;
}
.service-img img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s ease, opacity .8s ease;
}
.service-card:hover .service-img img { transform:scale(1.07); }
.service-img-overlay {
  position:absolute; inset:0;
  background:linear-gradient(0deg,rgba(26,46,74,.6) 0%,transparent 60%);
}
.service-icon-badge {
  position:absolute; bottom:14px; right:14px;
  width:52px; height:52px;
  background:linear-gradient(135deg,var(--accent),var(--accent-dark));
  border-radius:12px; display:flex; align-items:center;
  justify-content:center; font-size:22px; color:#fff;
  transition:var(--transition); box-shadow:0 4px 16px rgba(45,212,160,.4);
}
.service-card:hover .service-icon-badge { transform:scale(1.1) rotate(-6deg); }

.service-body { padding:26px 24px 28px; flex:1; display:flex; flex-direction:column; }
.service-title { font-size:19px; font-weight:800; color:var(--primary); margin-bottom:10px; }
.service-desc  { font-size:14px; color:var(--gray); line-height:1.85; flex:1; }
.service-link  {
  display:inline-flex; align-items:center; gap:7px;
  color:var(--accent); font-size:14px; font-weight:700;
  margin-top:18px; transition:var(--transition);
}
.service-link:hover { gap:12px; }

/* ════════════════════════════════════════
   WHY US
════════════════════════════════════════ */
.why-us { background:#fff; }
.why-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:center;
}

/* Image side */
.why-img-col { position:relative; }
.why-img-main {
  width:100%; height:520px; border-radius:28px; overflow:hidden;
  box-shadow:var(--shadow-lg); position:relative;
}
.why-img-main img { width:100%; height:100%; object-fit:cover; transition:opacity .8s ease; }
.why-img-main::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(0deg,rgba(26,46,74,.35) 0%,transparent 60%);
  border-radius:inherit;
}
.why-exp-badge {
  position:absolute; bottom:28px; right:28px;
  background:#fff; border-radius:16px;
  padding:18px 24px;
  box-shadow:var(--shadow-lg);
  display:flex; align-items:center; gap:14px;
  z-index:2;
}
.why-exp-badge .big-num   { font-size:42px; font-weight:900; color:var(--primary); line-height:1; }
.why-exp-badge .big-text  { line-height:1.4; }
.why-exp-badge .big-label { font-size:13px; color:var(--gray); }
.why-exp-badge .big-accent{ font-size:14px; color:var(--accent); font-weight:700; }

/* Decorative dot pattern */
.why-img-col::before {
  content:''; position:absolute; bottom:-20px; left:-20px;
  width:140px; height:140px; border-radius:12px;
  background-image:radial-gradient(var(--accent) 1.5px, transparent 1.5px);
  background-size:14px 14px; opacity:.35; z-index:-1;
}

/* Features side */
.why-text-col {}
.why-intro { font-size:16px; color:var(--gray); line-height:1.85; margin-bottom:32px; }
.why-features {
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
}
.why-feature {
  background:var(--light-gray); border-radius:var(--radius-sm);
  padding:24px 20px; border:1px solid transparent;
  transition:var(--transition);
}
.why-feature:hover {
  border-color:var(--accent); background:#fff; box-shadow:var(--shadow);
}
.why-feat-icon {
  width:52px; height:52px;
  background:linear-gradient(135deg,var(--accent),var(--accent-dark));
  border-radius:12px; display:flex; align-items:center;
  justify-content:center; font-size:22px; color:#fff; margin-bottom:14px;
}
.why-feat-title { font-size:16px; font-weight:800; color:var(--primary); margin-bottom:7px; }
.why-feat-text  { font-size:13px; color:var(--gray); line-height:1.75; }

/* ════════════════════════════════════════
   NUMBERS
════════════════════════════════════════ */
.numbers {
  background:linear-gradient(135deg,var(--primary) 0%,#0a2b20 100%);
  padding:90px clamp(12px, 4vw, 32px); position:relative; overflow:hidden;
}
.numbers::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(circle at 15% 50%,rgba(45,212,160,.1) 0%,transparent 50%),
    radial-gradient(circle at 85% 50%,rgba(45,212,160,.08) 0%,transparent 50%);
}
.numbers-grid {
  max-width:1320px; margin:0 auto;
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:40px; position:relative; z-index:1;
}
.number-item { text-align:center; padding:28px 20px; }
.number-icon {
  width:64px; height:64px; margin:0 auto 18px;
  background:rgba(45,212,160,.14); border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  font-size:26px; color:var(--accent);
}
.number-val {
  font-size:54px; font-weight:900; color:#fff;
  line-height:1; margin-bottom:10px;
}
.number-val .accent { color:var(--accent); }
.number-label { font-size:15px; color:rgba(255,255,255,.58); font-weight:500; }

/* ════════════════════════════════════════
   REVIEWS
════════════════════════════════════════ */
.reviews { background:var(--light-gray); }
.reviews-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
}
.review-card {
  background:#fff; border-radius:var(--radius);
  padding:34px 30px; border:1px solid var(--border);
  transition:var(--transition); position:relative;
  display:flex; flex-direction:column;
}
.review-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:var(--accent); }
.review-quote {
  position:absolute; top:18px; left:26px;
  font-size:90px; color:rgba(45,212,160,.1);
  font-family:Georgia,serif; line-height:1; pointer-events:none;
}
.review-stars { display:flex; gap:4px; margin-bottom:16px; }
.review-stars i { color:#f59e0b; font-size:16px; }
.review-text {
  font-size:15px; color:var(--gray); line-height:1.9;
  margin-bottom:26px; font-style:italic; flex:1;
}
.review-author { display:flex; align-items:center; gap:14px; }
.review-avatar {
  width:52px; height:52px; border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--accent-dark));
  display:flex; align-items:center; justify-content:center;
  font-size:20px; color:#fff; font-weight:700; flex-shrink:0;
}
.review-name { font-size:15px; font-weight:800; color:var(--primary); }
.review-role { font-size:12px; color:var(--gray); margin-top:2px; }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact { background:#fff; }
.contact-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:64px; align-items:start;
}

/* Info side */
.contact-info-title { font-size:36px; font-weight:900; color:var(--primary); margin-bottom:14px; }
.contact-info-desc  { font-size:16px; color:var(--gray); line-height:1.85; margin-bottom:36px; }
.contact-items      { display:flex; flex-direction:column; gap:16px; }
.contact-item {
  display:flex; align-items:center; gap:16px;
  padding:18px 20px; background:var(--light-gray);
  border-radius:var(--radius-sm); border:1px solid transparent;
  transition:var(--transition);
}
.contact-item:hover { border-color:var(--accent); background:#fff; box-shadow:var(--shadow); }
.contact-item-icon {
  width:50px; height:50px; flex-shrink:0;
  background:linear-gradient(135deg,var(--accent),var(--accent-dark));
  border-radius:12px; display:flex; align-items:center;
  justify-content:center; font-size:20px; color:#fff;
}
.contact-item-label { font-size:12px; color:var(--gray); margin-bottom:3px; }
.contact-item-val   { font-size:15px; font-weight:700; color:var(--primary); }

/* Map placeholder */
.map-placeholder {
  margin-top:24px; border-radius:var(--radius-sm);
  overflow:hidden; height:200px; position:relative;
}
.map-placeholder iframe {
  width:100%; height:100%; border:none; border-radius:var(--radius-sm);
}

/* Form side */
.contact-form {
  background:var(--primary); border-radius:26px;
  padding:44px 40px; position:relative; overflow:hidden;
}
.contact-form::before {
  content:''; position:absolute; top:-60%; right:-40%;
  width:300px; height:300px; border-radius:50%;
  background:radial-gradient(circle,rgba(45,212,160,.1) 0%,transparent 70%);
}
.contact-form h3 {
  font-size:24px; font-weight:800; color:#fff;
  margin-bottom:28px; position:relative; z-index:1;
}
.form-group   { margin-bottom:18px; position:relative; z-index:1; }
.form-label   { display:block; font-size:13px; font-weight:700; color:rgba(255,255,255,.7); margin-bottom:8px; }
.form-input,
.form-select,
.form-textarea {
  width:100%;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.14);
  border-radius:10px; padding:13px 16px;
  font-family:'Cairo',sans-serif; font-size:14px; color:#fff; outline:none;
  transition:var(--transition); direction:rtl;
}
.form-input::placeholder, .form-textarea::placeholder { color:rgba(255,255,255,.35); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--accent); background:rgba(255,255,255,.1);
}
.form-select option { background:var(--primary); color:#fff; }
.form-textarea      { resize:vertical; min-height:100px; }
.form-row           { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.btn-submit {
  width:100%; background:linear-gradient(135deg,var(--accent),var(--accent-dark));
  color:#fff; border:none; padding:16px;
  border-radius:50px; font-family:'Cairo',sans-serif;
  font-size:16px; font-weight:700; cursor:pointer;
  display:flex; align-items:center; justify-content:center; gap:10px;
  box-shadow:0 8px 28px rgba(45,212,160,.35);
  transition:var(--transition); position:relative; z-index:1;
}
.btn-submit:hover { transform:translateY(-2px); box-shadow:0 14px 36px rgba(45,212,160,.5); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer { background:#070f1c; color:#fff; padding:80px clamp(12px, 4vw, 32px) 0; }
.footer-inner     { max-width:1320px; margin:0 auto; }
.footer-grid      { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:56px; margin-bottom:56px; }
.footer-brand p   { font-size:14px; color:rgba(255,255,255,.45); line-height:1.85; margin-top:16px; margin-bottom:28px; }

.social-links   { display:flex; gap:10px; }
.social-link {
  width:42px; height:42px; border-radius:10px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.55); font-size:16px; transition:var(--transition);
}
.social-link:hover { background:var(--accent); color:#fff; border-color:var(--accent); transform:translateY(-3px); }

.footer-col h4 {
  font-size:16px; font-weight:800; color:#fff;
  margin-bottom:22px; padding-bottom:12px; position:relative;
}
.footer-col h4::after {
  content:''; position:absolute; bottom:0; right:0;
  width:36px; height:2px; background:var(--accent);
}
.footer-links li a {
  color:rgba(255,255,255,.48); font-size:14px;
  display:flex; align-items:center; gap:8px;
  padding:5px 0; transition:var(--transition);
}
.footer-links li a:hover { color:var(--accent); gap:12px; }
.footer-links li a i     { font-size:10px; }

.footer-contact-item {
  display:flex; align-items:center; gap:10px;
  color:rgba(255,255,255,.48); font-size:13px; margin-bottom:12px;
}
.footer-contact-item i { color:var(--accent); font-size:14px; width:16px; }

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.06);
  padding:24px 0;
  display:flex; justify-content:space-between; align-items:center;
}
.footer-bottom p  { font-size:13px; color:rgba(255,255,255,.38); }
.footer-bottom span{ color:var(--accent); }

/* ════════════════════════════════════════
   UTILITIES
════════════════════════════════════════ */
/* Scroll to top */
.scroll-top {
  position:fixed; bottom:28px; left:28px;
  width:48px; height:48px;
  background:rgba(26,46,74,.75);
  backdrop-filter:blur(8px);
  border:none; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:18px; color:#fff;
  box-shadow:0 4px 18px rgba(45,212,160,.4);
  transition:var(--transition); opacity:0; pointer-events:none; z-index:500;
}
.scroll-top.visible       { opacity:1; pointer-events:auto; }
.scroll-top:hover         { transform:translateY(-4px); box-shadow:0 8px 28px rgba(45,212,160,.6); }

/* ════ Floating Contact Widget ════ */
.float-widget {
  position: fixed;
  bottom: 22px; right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.float-toggle {
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; border: none; cursor: pointer;
  box-shadow: 0 6px 28px rgba(45,212,160,.5);
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; position: relative; overflow: visible;
  flex-shrink: 0;
}
.float-toggle:hover { transform: scale(1.08); }
.float-toggle.open  {
  background: linear-gradient(135deg,#ef4444,#dc2626);
  box-shadow: 0 6px 28px rgba(239,68,68,.45);
  transform: rotate(0deg);
}

.float-icon-main, .float-icon-close {
  position: absolute;
  transition: opacity .25s ease, transform .3s ease;
}
.float-icon-close { opacity:0; transform:rotate(-90deg) scale(.5); }
.float-toggle.open .float-icon-main  { opacity:0; transform:rotate(90deg) scale(.5); }
.float-toggle.open .float-icon-close { opacity:1; transform:rotate(0deg) scale(1); }

.float-pulse {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 2.5px solid var(--accent);
  animation: fpulse 2.5s ease-out infinite;
  pointer-events: none;
}
.float-toggle.open .float-pulse { display: none; }
@keyframes fpulse {
  0%   { transform:scale(1);   opacity:.7; }
  100% { transform:scale(1.6); opacity:0;  }
}

.float-menu {
  display: flex; flex-direction: column; gap: 10px;
  align-items: center;
  opacity: 0;
  transform: translateY(14px) scale(.92);
  pointer-events: none;
  transition: opacity .25s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
  transform-origin: bottom right;
}
.float-menu.open { opacity:1; transform:translateY(0) scale(1); pointer-events:all; }

.float-item {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  opacity: 0;
  transform: translateY(8px) scale(.8);
  transition: opacity .2s, transform .25s, filter .2s, box-shadow .2s;
  flex-shrink: 0;
}
.float-menu.open .float-item { opacity: 1; transform: translateY(0) scale(1); }
.float-menu.open .float-item:nth-child(1) { transition: opacity .2s .03s, transform .25s .03s; }
.float-menu.open .float-item:nth-child(2) { transition: opacity .2s .08s, transform .25s .08s; }
.float-menu.open .float-item:nth-child(3) { transition: opacity .2s .13s, transform .25s .13s; }
.float-menu.open .float-item:nth-child(4) { transition: opacity .2s .18s, transform .25s .18s; }
.float-menu.open .float-item:nth-child(5) { transition: opacity .2s .23s, transform .25s .23s; }
.float-menu.open .float-item:nth-child(6) { transition: opacity .2s .28s, transform .25s .28s; }
.float-menu.open .float-item:nth-child(7) { transition: opacity .2s .33s, transform .25s .33s; }
.float-item:hover { transform: scale(1.15) !important; filter: brightness(1.1); box-shadow: 0 6px 24px rgba(0,0,0,.3); }
.float-item i { font-size: 20px; }

/* Tooltip */
.float-item span {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%; transform: translateY(-50%);
  background: rgba(15,15,15,.82);
  color: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: 12px; font-weight: 700;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.float-item span::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(15,15,15,.82);
  border-right: 0;
}
.float-item:hover span { opacity: 1; }

.float-item.float-whatsapp  { background: #25d366; }
.float-item.float-phone     { background: #25d366; }
.float-item.float-instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.float-item.float-snapchat  { background: #fffc00; color: #1a1a1a; }
.float-item.float-snapchat i { color: #1a1a1a; }
.float-item.float-twitter   { background: #14171a; }
.float-item.float-tiktok    { background: #010101; }
.float-item.float-facebook  { background: #1877f2; }

/* Toast */
.toast {
  position:fixed; bottom:100px; left:50%; transform:translateX(-50%);
  background:var(--primary); color:#fff;
  padding:14px 28px; border-radius:50px;
  font-family:'Cairo',sans-serif; font-size:14px; font-weight:700;
  display:flex; align-items:center; gap:10px;
  z-index:9999; opacity:0; pointer-events:none;
  transition:opacity .35s ease; box-shadow:var(--shadow-lg);
  white-space:nowrap;
}
.toast.show { opacity:1; }
.toast i    { color:var(--accent); }



/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeLeft {
  from { opacity:0; transform:translateX(50px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes floatBlob {
  0%,100% { transform:translateY(0) scale(1); }
  50%     { transform:translateY(-40px) scale(1.05); }
}
@keyframes floatCard {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-10px); }
}
@keyframes particleRise {
  0%   { transform:translateY(100vh); opacity:0; }
  10%  { opacity:.5; }
  90%  { opacity:.5; }
  100% { transform:translateY(-50px) translateX(30px); opacity:0; }
}

/* Scroll reveal */
.reveal, .reveal-r, .reveal-l {
  opacity:0; transition:opacity .75s ease, transform .75s ease;
}
.reveal   { transform:translateY(44px); }
.reveal-r { transform:translateX(44px); }
.reveal-l { transform:translateX(-44px); }
.reveal.in, .reveal-r.in, .reveal-l.in { opacity:1; transform:none; }

/* ════════════════════════════════════════
   RESPONSIVE — COMPREHENSIVE
════════════════════════════════════════ */

/* ── Tablet landscape: ≤1100px ── */
@media (max-width:1100px) {
  .hero-title        { font-size:46px; }
  .hero-content      { gap:40px; padding:120px 24px 70px; }
  .services-grid     { grid-template-columns:repeat(2,1fr); gap:20px; }
  .why-grid          { grid-template-columns:1fr; }
  .why-img-col       { max-width:580px; margin:0 auto; width:100%; }
  .why-img-main      { height:400px; }
  .footer-grid       { grid-template-columns:1fr 1fr; gap:36px; }
  .numbers-grid      { grid-template-columns:repeat(2,1fr); gap:24px; }
  .reviews-grid      { grid-template-columns:1fr 1fr; gap:20px; }
  .contact-grid      { gap:40px; }
}

/* ── Tablet portrait / Mobile landscape: ≤768px ── */
@media (max-width:768px) {
  /* Header */
  nav                { display:none; }
  .btn-book          { display:none; }
  .hamburger         { display:flex; }
  .header-inner      { padding:0 16px; height:68px; }
  #header.scrolled .header-inner { height:60px; }
  .logo-icon         { width:50px; height:50px; font-size:20px; }
  .logo-name         { font-size:20px; }
  .logo-sub          { font-size:10px; letter-spacing:1px; }
  #header.scrolled .logo-icon { width:42px; height:42px; font-size:18px; }

  /* Mobile nav offset */
  .mobile-nav        { top:68px; }

  /* Hero */
  .hero-content      {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 96px 16px 56px;
  }
  .hero-visual       { display:none; }
  .hero-badge        { font-size:12px; padding:6px 14px; }
  .hero-title        { font-size:34px; line-height:1.2; margin-bottom:16px; }
  .hero-desc         { font-size:15px; line-height:1.8; margin-bottom:28px; }
  .hero-btns         { justify-content:center; flex-wrap:wrap; gap:12px; }
  .btn-primary       { padding:13px 28px; font-size:15px; }
  .btn-outline       { padding:11px 28px; font-size:15px; }
  .hero-stats        {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
  }
  .hero-stat-num     { font-size:26px; }
  .hero-stat-label   { font-size:11px; }

  /* Sections */
  .section           { padding:60px 16px; }
  .section-header    { margin-bottom:44px; }
  .section-title     { font-size:28px; }
  .section-desc      { font-size:14px; }
  .section-tag       { font-size:12px; padding:5px 16px; }

  /* Services */
  .services-grid     { grid-template-columns:1fr; gap:16px; }
  .service-img       { height:200px; }

  /* Why us */
  .why-img-col::before { display:none; }
  .why-img-main      { height:260px; }
  .why-exp-badge     { bottom:16px; right:16px; padding:12px 16px; }
  .why-exp-badge .big-num { font-size:30px; }
  .why-features      { grid-template-columns:1fr; gap:12px; }
  .why-intro         { font-size:14px; margin-bottom:24px; }
  .why-feat-icon     { width:44px; height:44px; font-size:18px; }
  .why-feat-title    { font-size:15px; }
  .why-feat-text     { font-size:12px; }

  /* Numbers */
  .numbers           { padding:60px 16px; }
  .numbers-grid      { grid-template-columns:1fr 1fr; gap:16px; }
  .number-item       { padding:20px 12px; }
  .number-icon       { width:52px; height:52px; font-size:20px; margin-bottom:12px; }
  .number-val        { font-size:40px; }
  .number-label      { font-size:13px; }

  /* Reviews */
  .reviews-grid      { grid-template-columns:1fr; gap:16px; }
  .review-card       { padding:26px 22px; }
  .review-text       { font-size:14px; }

  /* Contact */
  .contact-grid      { grid-template-columns:1fr; gap:32px; }
  .contact-info-title{ font-size:26px; }
  .contact-info-desc { font-size:14px; margin-bottom:24px; }
  .contact-item      { padding:14px 16px; }
  .contact-item-icon { width:42px; height:42px; font-size:17px; }
  .contact-item-val  { font-size:14px; }
  .map-placeholder   { height:180px; margin-top:16px; }
  .contact-form      { padding:28px 22px; border-radius:18px; }
  .contact-form h3   { font-size:20px; margin-bottom:20px; }
  .form-row          { grid-template-columns:1fr; }
  .btn-submit        { font-size:15px; padding:14px; }

  /* Footer */
  footer             { padding:56px 16px 0; }
  .footer-grid       { grid-template-columns:1fr; gap:32px; margin-bottom:40px; }
  .footer-bottom     { flex-direction:column; gap:8px; text-align:center; padding:18px 0; }
  .footer-brand p    { font-size:13px; margin-bottom:20px; }
  .footer-col h4     { font-size:15px; margin-bottom:16px; }
  .footer-links li a { font-size:13px; }

  /* Floating widget */
  .float-widget      { bottom:14px; right:16px; }
  .float-toggle      { width:54px; height:54px; font-size:20px; }
  .float-item        { width:54px; height:54px; }
  .float-item i      { font-size:18px; }
  .scroll-top        { width:44px; height:44px; font-size:15px; left:16px; bottom:16px; }

  /* Admin trigger — smaller on mobile */
  .admin-trigger     { font-size:10px; padding:10px 7px; }
  .admin-header      { padding:18px 20px; }
  .admin-header h2   { font-size:16px; }
  .admin-content     { padding:20px 16px; }
  .admin-tab         { padding:12px 14px; font-size:12px; }
  .a-grid-2          { grid-template-columns:1fr; }
  .icon-grid-admin   { grid-template-columns:repeat(4,1fr); }
}

/* ── Mobile small: ≤480px ── */
@media (max-width:480px) {
  .header-inner      { padding:0 12px; }
  .logo              { gap:10px; }
  .logo-icon         { width:44px; height:44px; font-size:18px; border-radius:12px; }
  .logo-name         { font-size:18px; }

  .hero-content      { padding:88px 12px 48px; }
  .hero-title        { font-size:26px; }
  .hero-desc         { font-size:13px; }
  .hero-stats        { gap:14px; }
  .hero-stat-num     { font-size:22px; }
  .hero-stat-label   { font-size:10px; }
  .hero-badge        { font-size:11px; }

  .section           { padding:52px 12px; }
  .section-title     { font-size:24px; }

  .service-img       { height:170px; }
  .service-title     { font-size:17px; }
  .service-desc      { font-size:13px; }

  .why-img-main      { height:220px; }
  .why-exp-badge     { bottom:12px; right:12px; padding:10px 14px; }
  .why-exp-badge .big-num { font-size:26px; }

  .numbers           { padding:48px 12px; }
  .numbers-grid      { grid-template-columns:1fr 1fr; gap:12px; }
  .number-val        { font-size:34px; }
  .number-item       { padding:16px 8px; }

  .review-card       { padding:22px 16px; }

  .contact-form      { padding:22px 14px; border-radius:14px; }
  .contact-item      { padding:12px 14px; }

  footer             { padding:44px 12px 0; }
  .social-link       { width:36px; height:36px; font-size:14px; }

  .toast             { padding:12px 18px; font-size:13px; }
}

/* ── Very small: ≤360px ── */
@media (max-width:360px) {
  .logo-name         { font-size:16px; }
  .logo-icon         { width:38px; height:38px; font-size:16px; }
  .hero-title        { font-size:22px; }
  .hero-stat-num     { font-size:20px; }
  .btn-primary,
  .btn-outline       { padding:11px 20px; font-size:14px; }
  .section-title     { font-size:22px; }
  .numbers-grid      { grid-template-columns:1fr 1fr; }
  .number-val        { font-size:30px; }
  .admin-trigger     { display:none; }
}
