
:root{
  /* App Brand Colors */
  --primary: #48c6ef;
  --secondary: #6f86d6;
  --bg-gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  
  --card: rgba(255, 255, 255, 0.96);
  --text: #333333;
  --muted: #555555;
  --border: rgba(0,0,0,0.08);
  
  --success: #28a745;
  --radius: 20px;
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: 'Rubik', system-ui, -apple-system, sans-serif; /* Match App Font */
  color: var(--text);
  background: var(--bg-gradient); /* Match App Background */
  background-attachment: fixed; /* Parallax effect */
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}

a{color:inherit}

.wrap{
  max-width: var(--max); 
  margin: 0 auto; 
  padding: 20px 15px 60px;
}

.topbar{
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  gap:12px; 
  padding: 10px 0 25px;
}

.brand{
  display:flex; 
  align-items:center; 
  gap:10px; 
  font-weight:700;
  color: white; /* White text on gradient bg */
}

/* Glassmorphism Pills */
.pill{
  display:inline-flex; 
  align-items:center; 
  gap:8px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.2);
  padding: 8px 16px; 
  border-radius: 50px;
  backdrop-filter: blur(10px);
  color: #fff; 
  text-decoration: none; 
  font-weight: 500; 
  white-space: nowrap;
  font-size: 14px;
  transition: background 0.3s;
}
a.pill:hover {
    background: rgba(255,255,255,0.3);
}

/* Main Card Container - Matches App .card style */
.main{
  background: var(--card); 
  border-radius: 24px; 
  box-shadow: 0 10px 40px rgba(0,0,0,0.15); 
  overflow:hidden;
  backdrop-filter: blur(10px);
}

.hero{
  padding: 50px 30px 40px;
  /* Subtle gradients on white background */
  background: 
    radial-gradient(circle at 90% 10%, rgba(72, 198, 239, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(111, 134, 214, 0.08) 0%, transparent 40%);
  border-bottom: 1px solid var(--border);
}

.grid{display:grid; gap:30px;}
.heroGrid{grid-template-columns: 1.1fr 0.9fr; align-items:center;}
@media (max-width: 900px){.heroGrid{grid-template-columns:1fr}}

.h1{
  font-size: 42px; 
  line-height:1.1; 
  margin: 0 0 15px; 
  font-weight: 800; 
  letter-spacing: -0.01em;
  color: var(--text);
}

.sub{
  color: var(--muted); 
  font-size: 19px; 
  line-height: 1.6; 
  margin: 0 0 25px;
}

.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top: 20px;}

.btn{
  display:inline-flex; 
  align-items:center; 
  justify-content:center; 
  gap:8px;
  padding: 14px 24px; 
  border-radius: 12px; 
  text-decoration:none; 
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Primary Button - Matches App Gradient */
.btnPrimary{
  background: var(--bg-gradient); 
  color: #fff; 
  border: none;
  box-shadow: 0 4px 15px rgba(111, 134, 214, 0.3);
}

.btnGhost{
  background: white;
  border: 1px solid #ddd;
  color: var(--text);
}

.kpis{
  display:grid; 
  grid-template-columns: repeat(3,1fr); 
  gap:12px; 
  margin-top: 30px;
}
@media (max-width: 700px){.kpis{grid-template-columns:1fr}}

.kpi{
  border: 1px solid var(--border); 
  border-radius: 16px; 
  padding: 15px; 
  background: rgba(255,255,255,0.8);
  text-align: center;
}
.kpi b{display:block; font-size:16px; margin-bottom: 4px; color: var(--secondary);}
.kpi span{color:var(--muted); font-size:13px;}

.badge{
  display:inline-flex; 
  align-items:center; 
  gap:6px; 
  padding: 6px 12px; 
  border-radius: 50px;
  background: rgba(40, 167, 69, 0.1); 
  color: var(--success); 
  font-weight: 600; 
  font-size: 13px;
}

.section{padding: 50px 30px;}
.h2{margin:0 0 15px; font-size: 28px; font-weight: 700;}
.p{margin:0; color:var(--muted); line-height:1.7; font-size: 17px;}

.list{display:grid; gap:12px; margin-top: 20px;}
.li{
  display:flex; 
  align-items:flex-start; 
  gap:12px; 
  padding: 16px; 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  background: #fff;
  transition: transform 0.2s;
}
.li:hover { transform: translateX(-5px); }

.dot{
  width: 24px; 
  height: 24px; 
  border-radius: 50%; 
  margin-top: 2px; 
  background: rgba(72, 198, 239, 0.15); 
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.dot::after { content: '✓'; font-weight: bold; }

.gallery{
  display:grid; 
  grid-template-columns: repeat(2,1fr); 
  gap:20px; 
  margin-top: 20px;
}
@media (max-width: 900px){.gallery{grid-template-columns:1fr}}

.shot{
  border: 1px solid var(--border); 
  border-radius: 20px; 
  overflow:hidden; 
  background: #f4f6f8; /* Light gray placeholder bg */
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.shot img{width:100%; display:block; height: auto;}
.cap{padding: 12px 15px; color:var(--muted); font-size: 14px; background: #fff; border-top: 1px solid var(--border);}

.faq{display:grid; gap:12px; margin-top: 20px;}
details{
  border: 1px solid var(--border); 
  border-radius: 16px; 
  padding: 15px 20px; 
  background: #fff;
  transition: background 0.2s;
}
details[open] { background: #f8faff; border-color: var(--primary); }

summary{cursor:pointer; font-weight:600; list-style:none; display: flex; align-items: center; justify-content: space-between;}
summary::-webkit-details-marker{display:none;}
summary::after { content: '+'; font-size: 20px; color: var(--primary); }
details[open] summary::after { content: '-'; }

details p{color:var(--muted); margin:10px 0 0; line-height:1.6;}

.footer{
  padding: 30px;
  border-top: 1px solid var(--border);
  background: #fcfcfc;
  display:flex; 
  gap:15px; 
  align-items:center; 
  justify-content:space-between; 
  flex-wrap:wrap;
}
.small{color:var(--muted); font-size:14px;}

/* WhatsApp Floating Button - Professional SVG Styling */
.waFloat{
  position: fixed; 
  bottom: 20px; 
  left: 20px; 
  z-index: 9999;
  display: flex; 
  align-items:center; 
  justify-content: center;
  gap:10px;
  width: 60px; 
  height: 60px;
  border-radius: 50%;
  background: #25D366; 
  color: #fff; 
  text-decoration:none; 
  font-weight:700;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, background-color 0.3s, width 0.3s, border-radius 0.3s;
  animation: waPulse 3s infinite;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.waFloat:hover { transform: scale(1.1); background-color: #20ba5a; }
.waIcon{ width: 30px; height: 30px; flex-shrink: 0; fill: currentColor; }
.waFloat span{display:none}

@media (min-width: 600px){
  .waFloat {
    width: auto;
    height: auto;
    padding: 12px 24px;
    border-radius: 50px;
  }
  .waFloat span { display: inline; white-space: nowrap; }
  .waIcon { width: 22px; height: 22px; }
}
