:root {
  --brand: #3d5b8f;
  --brand-dark: #2c4470;
  --brand-light: #e8eef8;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --ink: #1a2233;
  --ink-soft: #5a6478;
  --line: #e2e6ee;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
  --shadow: 0 8px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-family: 'Cairo', system-ui, -apple-system, Arial, sans-serif; }
body, button, input, select, textarea, .btn, .nav-cta { font-family: 'Cairo', system-ui, -apple-system, Arial, sans-serif; }
body { background: var(--bg); color: var(--ink); line-height: 1.7; font-size: 16px; direction: rtl; }
/* Force Latin (English) digits on numeric content */
.stat-number, .stat-suffix, .offer-price, .offer-old, .service-price,
[dir="ltr"], .number-en {
  font-feature-settings: "lnum" 1;
  font-variant-numeric: lining-nums;
  unicode-bidi: plaintext;
}
a { color: var(--brand); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn { display: inline-block; padding: 12px 26px; border-radius: 10px; font-weight: 700; font-size: .95rem; transition: all .2s; cursor: pointer; border: none; font-family: inherit; text-align: center; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Header */
.site-header { position: sticky; top: 0; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 20px; }
.brand-logo { display: flex; align-items: center; }
.brand-logo img { max-height: 48px; width: auto; }
.brand-text { font-size: 1.3rem; font-weight: 800; color: var(--brand); }
.site-nav { display: flex; gap: 22px; align-items: center; }
.site-nav a { color: var(--ink); font-weight: 500; font-size: .95rem; transition: color .2s; }
.site-nav a:hover { color: var(--brand); }
.nav-cta { background: var(--brand); color: #fff !important; padding: 8px 18px; border-radius: 8px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--brand-dark); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--brand); cursor: pointer; }

/* Hero */
.hero { padding: 60px 0 80px; background: linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.hero-content h1 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 18px; color: var(--ink); }
.hero-tagline { font-size: 1.3rem; color: var(--brand); font-weight: 700; margin-bottom: 14px; }
.hero-subtitle { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { display: flex; align-items: center; justify-content: center; }
.hero-image img { max-height: 480px; border-radius: 20px; box-shadow: var(--shadow-lg); object-fit: cover; }
.hero-placeholder { aspect-ratio: 1; background: linear-gradient(135deg, var(--brand-light), #fff); border-radius: 20px; display: flex; align-items: center; justify-content: center; min-height: 320px; }
.hero-bubble { font-size: 8rem; opacity: .6; }

/* Sections */
.section { padding: 70px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { font-size: 2.2rem; margin-bottom: 12px; color: var(--ink); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-head-light h2 { color: #fff; }

/* Services Grid - SMALLER cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-thumb { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--brand-light), #fff); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.service-card:hover .service-thumb img { transform: scale(1.05); }
.service-emoji { font-size: 3rem; }
.service-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.service-title { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.service-desc { font-size: .85rem; color: var(--ink-soft); flex: 1; line-height: 1.5; }
.service-price { font-size: 1rem; font-weight: 800; color: var(--brand); }
.service-btn { display: block; text-align: center; background: var(--brand); color: #fff !important; padding: 9px 14px; border-radius: 8px; font-size: .9rem; font-weight: 700; margin-top: 4px; transition: background .2s; }
.service-btn:hover { background: var(--brand-dark); }

/* Offers */
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.offer-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; transition: transform .2s, box-shadow .2s; border: 1px solid var(--line); }
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.offer-badge { position: absolute; top: 14px; left: 14px; background: #ff5722; color: #fff; padding: 6px 14px; border-radius: 20px; font-size: .8rem; font-weight: 700; z-index: 2; }
.offer-image { aspect-ratio: 16/9; overflow: hidden; background: var(--brand-light); }
.offer-image img { width: 100%; height: 100%; object-fit: cover; }
.offer-body { padding: 22px; }
.offer-body h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--ink); }
.offer-desc { color: var(--ink-soft); font-size: .95rem; margin-bottom: 14px; }
.offer-features { list-style: none; margin-bottom: 18px; }
.offer-features li { padding: 5px 0; color: var(--ink); font-size: .92rem; }
.offer-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.offer-old { color: var(--ink-soft); text-decoration: line-through; font-size: 1rem; }
.offer-price { color: var(--brand); font-size: 1.6rem; font-weight: 800; }
.offer-btn { display: block; text-align: center; background: var(--brand); color: #fff !important; padding: 12px; border-radius: 10px; font-weight: 700; transition: background .2s; }
.offer-btn:hover { background: var(--brand-dark); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-content h2 { font-size: 2.2rem; margin-bottom: 18px; color: var(--ink); }
.about-content p { color: var(--ink-soft); margin-bottom: 24px; font-size: 1.05rem; }
.about-image img { border-radius: 20px; box-shadow: var(--shadow); max-height: 440px; object-fit: cover; }

/* Why Us */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.why-card { background: #fff; padding: 26px 20px; border-radius: var(--radius); text-align: center; border: 1px solid var(--line); transition: transform .2s, box-shadow .2s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon { font-size: 2.6rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--ink); }
.why-card p { font-size: .9rem; color: var(--ink-soft); }

/* Stats */
.section-stats { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 26px; }
.stat-card { text-align: center; color: #fff; }
.stat-number { font-size: 3.2rem; font-weight: 800; display: inline-block; line-height: 1; direction: ltr; unicode-bidi: isolate; }
.stat-suffix { display: inline-block; font-size: 2rem; font-weight: 700; opacity: .9; direction: ltr; unicode-bidi: isolate; }
.stat-label { margin-top: 10px; font-size: 1.05rem; opacity: .9; }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.portfolio-card { position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.portfolio-image { width: 100%; height: 100%; }
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.portfolio-card:hover .portfolio-image img { transform: scale(1.08); }
.portfolio-placeholder { background: linear-gradient(135deg, var(--brand-light), #fff); display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: .5; }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; color: #fff; }
.portfolio-cat { background: var(--brand); color: #fff; padding: 4px 10px; border-radius: 12px; font-size: .8rem; align-self: flex-start; margin-bottom: 8px; }
.portfolio-overlay h3 { font-size: 1.1rem; color: #fff; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testimonial-card { background: #fff; padding: 26px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.testimonial-rating { font-size: 1rem; margin-bottom: 12px; }
.testimonial-text { color: var(--ink); margin-bottom: 18px; font-size: .98rem; line-height: 1.7; min-height: 80px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-avatar-placeholder { background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; }
.testimonial-name { font-weight: 700; color: var(--ink); }
.testimonial-city { font-size: .85rem; color: var(--ink-soft); }

/* Guarantee */
.section-guarantee { background: linear-gradient(135deg, var(--brand-light) 0%, #fff 100%); padding: 80px 0; }
.guarantee-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: center; }
.guarantee-image { display: flex; align-items: center; justify-content: center; }
.guarantee-image img { max-height: 320px; border-radius: 20px; box-shadow: var(--shadow); }
.guarantee-icon-wrap { aspect-ratio: 1; max-width: 280px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.guarantee-icon { font-size: 7rem; }
.guarantee-content h2 { font-size: 2.4rem; margin-bottom: 10px; color: var(--ink); }
.guarantee-subtitle { color: var(--brand); font-weight: 700; font-size: 1.15rem; margin-bottom: 16px; }
.guarantee-content p { color: var(--ink-soft); font-size: 1.05rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-item summary { padding: 18px 22px; cursor: pointer; font-weight: 700; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--brand); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 18px; color: var(--ink-soft); line-height: 1.8; }

/* Booking Steps */
.booking-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.step-card { background: #fff; padding: 28px 20px; border-radius: var(--radius); text-align: center; position: relative; border: 1px solid var(--line); }
.step-icon { width: 60px; height: 60px; background: var(--brand); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin-bottom: 14px; }
.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--ink); }
.step-card p { color: var(--ink-soft); font-size: .92rem; }

/* Final CTA */
.section-final-cta { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); padding: 70px 0; text-align: center; color: #fff; }
.final-cta-inner h2 { font-size: 2.4rem; margin-bottom: 14px; color: #fff; }
.final-cta-inner p { font-size: 1.15rem; margin-bottom: 28px; opacity: .95; }

/* Footer */
.site-footer { background: #1a2233; color: #c9d0dc; padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-brand { margin-bottom: 14px; color: #fff; font-size: 1.2rem; }
.site-footer h4 { color: #fff; margin-bottom: 14px; font-size: 1.05rem; }
.site-footer p, .site-footer a { color: #c9d0dc; }
.site-footer a:hover { color: #fff; }
.social-links { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom { border-top: 1px solid #2a3447; padding: 20px 0; text-align: center; font-size: .9rem; }

/* WhatsApp FAB */
.whatsapp-fab { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,.4); z-index: 99; transition: transform .2s; }
.whatsapp-fab:hover { transform: scale(1.1); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Mobile */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .guarantee-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-content h1 { font-size: 2.1rem; }
  .section-head h2 { font-size: 1.7rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-nav { position: fixed; top: 70px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; gap: 16px; box-shadow: var(--shadow); transform: translateY(-150%); transition: transform .3s; }
  .site-nav.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-thumb { aspect-ratio: 1; }
  .service-body { padding: 12px; }
  .service-title { font-size: .95rem; }
  .service-desc { font-size: .8rem; }
  .stat-number { font-size: 2.4rem; }
  .guarantee-icon { font-size: 5rem; }
  .section { padding: 50px 0; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.7rem; }
  .hero-tagline { font-size: 1.05rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid, .testimonials-grid, .portfolio-grid { grid-template-columns: 1fr; }
}

/* === Terms & Conditions Page === */
.terms-hero { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; padding: 80px 0 60px; text-align: center; }
.terms-hero-icon { font-size: 4rem; margin-bottom: 18px; }
.terms-hero h1 { font-size: 2.6rem; margin-bottom: 14px; color: #fff; }
.terms-hero p { font-size: 1.15rem; opacity: .95; max-width: 700px; margin: 0 auto; }
.terms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-bottom: 50px; }
.term-card { background: #fff; padding: 30px 24px 26px; border-radius: 16px; box-shadow: var(--shadow-sm); position: relative; border: 1px solid var(--line); transition: transform .2s, box-shadow .2s; }
.term-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brand); }
.term-number { position: absolute; top: 14px; left: 14px; width: 32px; height: 32px; background: var(--brand-light); color: var(--brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; }
.term-icon { font-size: 2.8rem; margin-bottom: 14px; line-height: 1; }
.term-title { font-size: 1.2rem; margin-bottom: 12px; color: var(--ink); font-weight: 700; }
.term-content { color: var(--ink-soft); font-size: .95rem; line-height: 1.8; }
.terms-footer { text-align: center; padding: 50px 30px; background: var(--brand-light); border-radius: 20px; margin-top: 30px; }
.terms-footer-icon { font-size: 3rem; margin-bottom: 12px; }
.terms-footer h2 { font-size: 1.8rem; margin-bottom: 10px; color: var(--ink); }
.terms-footer p { color: var(--ink-soft); margin-bottom: 22px; }

/* Footer bottom layout with terms link */
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .9rem; }
.footer-link { color: #c9d0dc; }
.footer-link:hover { color: #fff; }

@media (max-width: 768px) {
  .terms-hero h1 { font-size: 1.8rem; }
  .terms-hero p { font-size: 1rem; }
  .term-card { padding: 24px 20px 22px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
