/*
Theme Name: مكتب الإنجاز المتميز - Premium
Theme URI: https://al-injaz-premium.com
Author: Al-Injaz Team
Author URI: https://al-injaz-premium.com
Description: ثيم احترافي لمكتب الإنجاز المتميز للخدمات العامة والتعقيب - تصميم أخضر داكن فاخر، متوافق مع الجوال، مهيأ للسيو، يدعم الاتجاه RTL، مع أقسام الخدمات والمقالات وحجز المواعيد.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: al-injaz
Tags: rtl-language-support, custom-menu, custom-logo, featured-images, translation-ready
*/

/* ============================================================
   مكتب الإنجاز المتميز — Dark Green Professional Theme
   ============================================================ */
:root {
  --green-950: #041f13;
  --green-900: #07331f;
  --green-800: #0a3f27;
  --green-700: #0d4a30;
  --green-600: #11593b;
  --green-500: #1d6b45;
  --green-100: #e7f3ec;
  --gold: #c9a227;
  --gold-light: #e8c964;
  --white: #ffffff;
  --ink: #0d1f17;
  --muted: #5c6f65;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(4, 31, 19, 0.12);
  --shadow-lg: 0 20px 50px rgba(4, 31, 19, 0.22);
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1200px, 92%); margin-inline: auto; }

.skip-link {
  position: absolute; right: 16px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--green-900);
  padding: 10px 18px; border-radius: 8px; font-weight: 700;
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 13px 28px; border-radius: 12px;
  font-weight: 800; font-size: 1rem; font-family: inherit;
  cursor: pointer; border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--green-950); }
.btn-gold:hover { box-shadow: 0 12px 28px rgba(201, 162, 39, 0.4); }
.btn-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--green-900); border-color: var(--green-700); }
.btn-outline:hover { background: var(--green-900); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 0.9rem; border-radius: 10px; }
.btn-block { width: 100%; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 51, 31, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 74px; }

.logo { display: flex; align-items: center; gap: 10px; color: var(--white); }
.logo-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  border: 1.5px solid var(--gold);
  display: grid; place-items: center; color: var(--gold-light);
}
.logo-icon svg { width: 26px; height: 26px; }
.logo img.custom-logo { max-height: 52px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.3; }
.logo-text strong { font-size: 1.05rem; font-weight: 900; }
.logo-text small { font-size: 0.72rem; color: var(--gold-light); font-weight: 500; }

.nav { display: flex; gap: 4px; }
.nav .menu { display: flex; gap: 4px; }
.nav-link, .nav .menu > li > a {
  color: rgba(255,255,255,0.85); font-weight: 700; font-size: 0.95rem;
  padding: 8px 14px; border-radius: 10px; position: relative;
  transition: color var(--transition), background var(--transition);
  display: block;
}
.nav-link:hover, .nav-link.active,
.nav .menu > li > a:hover, .nav .menu > li.current-menu-item > a {
  color: var(--gold-light); background: rgba(255,255,255,0.06);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.35); }
.nav-actions .btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--green-950); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: 0; cursor: pointer; padding: 8px;
}
.hamburger span { width: 26px; height: 3px; border-radius: 3px; background: var(--gold-light); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(29, 107, 69, 0.55), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(201, 162, 39, 0.14), transparent 55%),
    linear-gradient(160deg, var(--green-950), var(--green-900) 55%, var(--green-800));
  color: var(--white);
  padding: 90px 0 70px;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.05; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 26px 26px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; position: relative; }

.badge-eyebrow {
  display: inline-block; background: rgba(201,162,39,0.15); color: var(--gold-light);
  border: 1px solid rgba(201,162,39,0.4);
  padding: 7px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.35;
  margin-bottom: 18px;
}
.hero h1::after {
  content: ""; display: block; width: 90px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: 16px;
}
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.08rem; margin-bottom: 26px; }
.hero-sub strong, .hero-sub b { color: var(--gold-light); font-weight: 800; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 2rem; font-weight: 900; color: var(--gold-light); line-height: 1.2; }
.hero-stats span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.hero-visual { display: flex; flex-direction: column; gap: 20px; }
.hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.12); }
.hero-img img { width: 100%; height: auto; }

.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 26px;
  backdrop-filter: blur(8px); box-shadow: var(--shadow-lg);
}
.hero-card-title {
  font-size: 1.05rem; font-weight: 800; color: var(--gold-light); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px dashed rgba(255,255,255,0.18);
}
.quick-item { display: flex; gap: 14px; align-items: flex-start; padding: 12px 8px; border-radius: 12px; transition: background var(--transition); }
.quick-item:hover { background: rgba(255,255,255,0.07); }
.quick-item svg { width: 34px; height: 34px; color: var(--gold-light); flex-shrink: 0; background: rgba(201,162,39,0.12); border-radius: 10px; padding: 7px; }
.quick-item strong { display: block; font-size: 0.95rem; font-weight: 800; color: var(--white); }
.quick-item span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ===== Ticker ===== */
.ticker {
  background: var(--green-950); border-top: 1px solid rgba(201,162,39,0.25);
  padding: 12px 0; overflow: hidden;
}
.ticker-row { display: flex; align-items: center; gap: 14px; }
.ticker-label { color: var(--gold-light); font-weight: 800; font-size: 0.85rem; white-space: nowrap; }
.ticker-track { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.ticker-track::-webkit-scrollbar { display: none; }
.ticker-track a {
  white-space: nowrap; font-size: 0.8rem; color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 14px; border-radius: 999px; transition: var(--transition);
}
.ticker-track a:hover { background: var(--gold); color: var(--green-950); border-color: var(--gold); }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.section-eyebrow {
  display: inline-block; color: var(--green-600); background: var(--green-100);
  font-weight: 800; font-size: 0.85rem; padding: 6px 18px; border-radius: 999px; margin-bottom: 14px;
}
.section-eyebrow.gold { color: var(--gold-light); background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.35); }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 14px; color: var(--green-900); }
.section-head p { color: var(--muted); font-size: 1.02rem; }
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: rgba(255,255,255,0.75); }
.section-head.light .section-eyebrow { color: var(--gold-light); background: rgba(201,162,39,0.15); }

/* ===== About ===== */
.about { background: linear-gradient(180deg, #fff 60%, var(--green-100)); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; }

.about-media { position: relative; }
.about-img { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: auto; }
.about-float {
  position: absolute; bottom: -22px; left: -14px;
  background: var(--gold); color: var(--green-950);
  border-radius: 16px; padding: 16px 22px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; line-height: 1.4;
}
.about-float strong { font-size: 1.5rem; font-weight: 900; }
.about-float span { font-size: 0.8rem; font-weight: 700; }

.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card {
  background: var(--white); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); border: 1px solid rgba(13, 74, 48, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--gold-light); margin-bottom: 14px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--green-900); margin-bottom: 6px; }
.feature-card p { font-size: 0.9rem; color: var(--muted); }

/* ===== Services ===== */
.services { background: linear-gradient(165deg, var(--green-950), var(--green-900) 60%, var(--green-800)); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.service-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.09); border-color: rgba(201,162,39,0.45); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.05));
  border: 1px solid rgba(201,162,39,0.4); color: var(--gold-light); margin-bottom: 18px;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { color: var(--white); font-size: 1.12rem; font-weight: 800; margin-bottom: 10px; }
.service-card h3 a { color: inherit; }
.service-card h3 a:hover { color: var(--gold-light); }
.service-card p { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 16px; }
.service-card p strong, .service-card p b { color: var(--gold-light); }
.service-link { color: var(--gold-light); font-weight: 800; font-size: 0.9rem; display: inline-flex; gap: 6px; align-items: center; }
.service-link:hover { gap: 12px; }

/* ===== Articles ===== */
.articles { background: var(--green-100); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.article-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.article-cover {
  height: 150px; display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(135deg, var(--green-900), var(--green-600));
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.article-card:hover .article-cover img { transform: scale(1.06); }
.article-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-body time, .article-meta { font-size: 0.78rem; color: var(--green-600); font-weight: 700; }
.article-body h3 { font-size: 1.02rem; font-weight: 800; line-height: 1.6; }
.article-body h3 a:hover { color: var(--green-600); }
.article-body p { font-size: 0.88rem; color: var(--muted); flex: 1; }
.article-link { color: var(--green-700); font-weight: 800; font-size: 0.88rem; }
.article-link:hover { color: var(--gold); }

/* ===== Booking ===== */
.booking { background: linear-gradient(160deg, var(--green-950), var(--green-800)); color: var(--white); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; align-items: start; }
.booking-info h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; margin-bottom: 16px; color: var(--white); }
.booking-info h2::after { content: ""; display: block; width: 80px; height: 4px; border-radius: 4px; background: var(--gold); margin-top: 14px; }
.booking-info p { color: rgba(255,255,255,0.78); margin-bottom: 22px; }
.booking-info p strong, .booking-info p b { color: var(--gold-light); }
.booking-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 26px; }
.booking-points li { font-size: 0.92rem; font-weight: 700; color: var(--gold-light); }
.booking-hours {
  background: rgba(201,162,39,0.12); border: 1px dashed rgba(201,162,39,0.5);
  border-radius: 12px; padding: 14px 18px; font-size: 0.92rem;
}
.booking-hours strong { color: var(--gold-light); }

.booking-form {
  background: var(--white); color: var(--ink);
  border-radius: 20px; padding: 34px; box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; display: flex; flex-direction: column; }
.form-group label { font-weight: 800; font-size: 0.88rem; margin-bottom: 6px; color: var(--green-900); }
.form-group input, .form-group select, .form-group textarea {
  font-family: inherit; font-size: 0.95rem; color: var(--ink);
  border: 1.5px solid #d5e3db; border-radius: 12px; padding: 12px 14px;
  background: #f8fbf9; transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(29, 107, 69, 0.12);
}
.form-group textarea { resize: vertical; }
.form-msg { margin-top: 12px; font-weight: 800; font-size: 0.92rem; text-align: center; min-height: 1.5em; }
.form-msg.ok { color: var(--green-600); }
.form-msg.err { color: #c0392b; }

/* ===== FAQ ===== */
.faq { background: #fff; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--green-100); border: 1px solid rgba(13,74,48,0.12);
  border-radius: 14px; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  font-weight: 800; font-size: 0.98rem; color: var(--green-900);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span {
  display: grid; place-items: center; width: 28px; height: 28px; flex-shrink: 0;
  background: var(--green-900); color: var(--gold-light); border-radius: 8px;
  font-size: 1.1rem; transition: transform var(--transition);
}
.faq-item[open] summary span { transform: rotate(45deg); background: var(--gold); color: var(--green-950); }
.faq-answer { padding: 0 22px 18px; }
.faq-answer p { color: var(--muted); font-size: 0.92rem; }
.faq-answer strong { color: var(--green-700); }

/* ===== Contact ===== */
.contact { background: linear-gradient(180deg, #fff 0%, var(--green-100) 100%); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.contact-card {
  background: var(--white); border-radius: var(--radius); padding: 26px 20px;
  text-align: center; box-shadow: var(--shadow);
  border-top: 3px solid var(--green-600);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.contact-icon {
  display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--green-900); color: var(--gold-light);
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 1rem; font-weight: 800; color: var(--green-900); margin-bottom: 6px; }
.contact-card p { font-size: 0.88rem; color: var(--muted); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; }

/* ===== Single / Page content ===== */
.page-content { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.page-content h1 { font-size: 2.2rem; font-weight: 900; color: var(--green-900); margin-bottom: 20px; }
.page-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--green-900); margin: 28px 0 12px; }
.page-content h3 { font-size: 1.2rem; font-weight: 800; color: var(--green-700); margin: 22px 0 10px; }
.page-content p { margin-bottom: 16px; color: var(--ink); }
.page-content ul, .page-content ol { margin: 0 22px 18px 0; }
.page-content ul li { list-style: disc; margin-bottom: 8px; }
.page-content ol li { list-style: arabic-indic; margin-bottom: 8px; }
.page-content img { border-radius: 12px; margin: 18px 0; }
.page-content blockquote {
  border-right: 4px solid var(--gold); background: var(--green-100);
  padding: 16px 20px; border-radius: 10px; margin: 18px 0; font-weight: 500;
}
.page-title-bar { background: linear-gradient(160deg, var(--green-950), var(--green-800)); color: var(--white); padding: 60px 0 40px; text-align: center; }
.page-title-bar h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; }
.page-title-bar .breadcrumb { color: var(--gold-light); font-size: 0.9rem; margin-top: 10px; }
.page-title-bar .breadcrumb a:hover { color: var(--white); }

/* ===== Footer ===== */
.footer { background: var(--green-950); color: rgba(255,255,255,0.78); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 1fr; gap: 40px;
  padding: 60px 0 40px;
}
.footer-about p { font-size: 0.9rem; margin-top: 16px; }
.footer-about strong { color: var(--gold-light); }
.logo-footer .logo-text strong { font-size: 1rem; }
.footer-col h3 { color: var(--gold-light); font-size: 1rem; font-weight: 800; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ""; position: absolute; bottom: 0; right: 0; width: 36px; height: 2px; background: var(--gold); }
.footer-col a, .footer-col p { display: block; font-size: 0.9rem; padding: 5px 0; transition: color var(--transition), transform var(--transition); }
.footer-col a:hover { color: var(--gold-light); transform: translateX(-4px); }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.footer-bar p { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ===== Floating ===== */
.wa-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  animation: pulse 2.4s infinite; display: grid; place-items: center;
}
.wa-float svg { width: 34px; height: 34px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 46px; height: 46px; border-radius: 12px; border: 0; cursor: pointer;
  background: var(--gold); color: var(--green-950); font-size: 1.2rem; font-weight: 900;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition); box-shadow: var(--shadow);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold-light); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 560px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; margin-inline: auto; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; inset: 74px 0 auto 0; z-index: 99;
    flex-direction: column; gap: 6px; padding: 18px 5%;
    background: var(--green-950); border-bottom: 2px solid var(--gold);
    transform: translateY(-130%); transition: transform 0.4s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav .menu { flex-direction: column; gap: 2px; }
  .nav-link, .nav .menu > li > a { padding: 12px 16px; font-size: 1.05rem; }
  .hamburger { display: flex; }
  .nav-actions .btn-sm { display: none; }
  .hero { padding: 60px 0 50px; }
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 34px; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-points { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 44px 0 30px; }
  .hero-stats { gap: 22px; }
  .hero-stats strong { font-size: 1.6rem; }
  .about-float { left: 8px; bottom: -18px; padding: 12px 18px; }
  .booking-form { padding: 24px; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; left: 18px; }
  .to-top { width: 42px; height: 42px; bottom: 18px; right: 18px; }
}

@media (max-width: 400px) {
  .hero-cta .btn { width: 100%; }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float { animation: none; }
}

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px; }
