/*
Theme Name: Amin Learn
Theme URI: https://learnarabicwithdramin.com/
Author: Dr Amin Academy
Author URI: https://learnarabicwithdramin.com/
Description: A modern, professional and fully responsive WordPress theme for learning Arabic with Dr Amin. Features a dynamic hero slider, course showcases for eBooks, video subscriptions and 1-to-1 classes, and full WooCommerce support. Elegant green colour scheme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
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: amin-learn
Tags: education, e-commerce, woocommerce, custom-menu, custom-logo, featured-images, full-width-template, translation-ready, responsive, two-columns, right-sidebar, custom-colors
*/

/* =========================================================
   1. CSS Variables / Green Colour Scheme
   ========================================================= */
:root {
  --al-green-900: #0f3d2e;
  --al-green-800: #14523c;
  --al-green-700: #1b6b4c;
  --al-green-600: #218456;
  --al-green-500: #2aa164;
  --al-green-400: #4cbf83;
  --al-green-300: #8ddcae;
  --al-green-100: #e4f5ec;
  --al-gold: #c8a047;
  --al-gold-light: #e7c870;
  --al-dark: #14201a;
  --al-text: #283330;
  --al-muted: #5c6b64;
  --al-light: #f4f9f6;
  --al-white: #ffffff;
  --al-border: #dde8e2;
  --al-shadow: 0 12px 40px rgba(15, 61, 46, 0.12);
  --al-shadow-sm: 0 4px 16px rgba(15, 61, 46, 0.08);
  --al-radius: 16px;
  --al-radius-sm: 10px;
  --al-maxw: 1200px;
  --al-font-body: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --al-font-head: 'Playfair Display', 'Georgia', serif;
  --al-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   2. Reset & Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--al-font-body);
  color: var(--al-text);
  background: var(--al-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--al-font-head);
  color: var(--al-green-900);
  line-height: 1.25;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.7rem); }
p { margin: 0 0 1.2em; }
a { color: var(--al-green-600); text-decoration: none; transition: var(--al-transition); }
a:hover { color: var(--al-green-800); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.2em; }

/* =========================================================
   3. Layout Helpers
   ========================================================= */
.al-container { width: 100%; max-width: var(--al-maxw); margin: 0 auto; padding: 0 24px; }
.al-section { padding: 90px 0; }
.al-section--tight { padding: 60px 0; }
.al-section--light { background: var(--al-light); }
.al-section--green { background: var(--al-green-900); color: #d9efe4; }
.al-section--green h2, .al-section--green h3 { color: #fff; }
.al-text-center { text-align: center; }
.al-grid { display: grid; gap: 30px; }
.al-grid-2 { grid-template-columns: repeat(2, 1fr); }
.al-grid-3 { grid-template-columns: repeat(3, 1fr); }
.al-grid-4 { grid-template-columns: repeat(4, 1fr); }

.al-section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.al-eyebrow {
  display: inline-block;
  font-family: var(--al-font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--al-green-600);
  background: var(--al-green-100);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.al-section--green .al-eyebrow { background: rgba(255,255,255,0.1); color: var(--al-gold-light); }
.al-section-head p { color: var(--al-muted); font-size: 1.08rem; }
.al-section--green .al-section-head p { color: #aeccbf; }

/* =========================================================
   4. Buttons
   ========================================================= */
.al-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--al-font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--al-transition);
  text-align: center;
  line-height: 1.2;
}
.al-btn--primary { background: var(--al-green-600); color: #fff; box-shadow: 0 8px 24px rgba(33,132,86,0.35); }
.al-btn--primary:hover { background: var(--al-green-800); color: #fff; transform: translateY(-3px); }
.al-btn--gold { background: var(--al-gold); color: var(--al-green-900); box-shadow: 0 8px 24px rgba(200,160,71,0.4); }
.al-btn--gold:hover { background: var(--al-gold-light); color: var(--al-green-900); transform: translateY(-3px); }
.al-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.al-btn--ghost:hover { background: #fff; color: var(--al-green-900); }
.al-btn--outline { background: transparent; color: var(--al-green-700); border-color: var(--al-green-600); }
.al-btn--outline:hover { background: var(--al-green-600); color: #fff; }

/* =========================================================
   5. Header / Navigation
   ========================================================= */
.al-topbar {
  background: var(--al-green-900);
  color: #cfe7da;
  font-size: 0.85rem;
}
.al-topbar .al-container { display: flex; justify-content: space-between; align-items: center; min-height: 42px; flex-wrap: wrap; gap: 8px; }
.al-topbar a { color: #cfe7da; }
.al-topbar a:hover { color: #fff; }
.al-topbar__info { display: flex; gap: 22px; flex-wrap: wrap; }
.al-topbar__social { display: flex; gap: 14px; }

.al-header {
  background: var(--al-white);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--al-border);
  transition: var(--al-transition);
}
.al-header.is-stuck { box-shadow: var(--al-shadow-sm); }
.al-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 24px; }
.al-logo { display: flex; align-items: center; gap: 12px; }
.al-logo__mark {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--al-green-600), var(--al-green-800));
  color: #fff; display: grid; place-items: center;
  font-family: var(--al-font-head); font-weight: 700; font-size: 1.4rem;
  box-shadow: var(--al-shadow-sm);
}
.al-logo__text { font-family: var(--al-font-head); font-size: 1.4rem; font-weight: 700; color: var(--al-green-900); line-height: 1.1; }
.al-logo__text span { display: block; font-family: var(--al-font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--al-gold); }
.al-logo img { max-height: 56px; width: auto; }

.al-nav { display: flex; align-items: center; gap: 28px; }
.al-menu { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
.al-menu li { position: relative; }
.al-menu a { display: block; padding: 10px 14px; font-weight: 500; color: var(--al-text); border-radius: 8px; }
.al-menu a:hover, .al-menu .current-menu-item > a { color: var(--al-green-700); background: var(--al-green-100); }
.al-menu .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; border-radius: var(--al-radius-sm); box-shadow: var(--al-shadow);
  padding: 10px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--al-transition); z-index: 50;
}
.al-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.al-menu .sub-menu a { padding: 9px 14px; }

.al-header__actions { display: flex; align-items: center; gap: 16px; }
.al-cart { position: relative; display: flex; align-items: center; color: var(--al-green-900); font-weight: 600; }
.al-cart__count {
  position: absolute; top: -8px; right: -10px;
  background: var(--al-gold); color: var(--al-green-900);
  font-size: 0.7rem; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 50px; display: grid; place-items: center; padding: 0 4px;
}
.al-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.al-burger span { display: block; width: 26px; height: 2px; background: var(--al-green-900); margin: 5px 0; transition: var(--al-transition); border-radius: 2px; }
.al-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.al-burger.is-open span:nth-child(2) { opacity: 0; }
.al-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   6. Hero Slider
   ========================================================= */
.al-hero { position: relative; overflow: hidden; background: var(--al-green-900); }
.al-slider { position: relative; }
.al-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 0.9s ease;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.al-slide.is-active { position: relative; opacity: 1; visibility: visible; }
.al-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,61,46,0.94) 0%, rgba(20,82,60,0.82) 45%, rgba(33,132,86,0.45) 100%);
}
.al-slide__inner { position: relative; z-index: 2; padding: 120px 0; max-width: 640px; }
.al-slide__eyebrow {
  display: inline-block; color: var(--al-gold-light); font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 20px;
}
.al-slide__title { color: #fff; font-size: clamp(2.2rem, 5.5vw, 4rem); margin-bottom: 20px; }
.al-slide__title em { color: var(--al-gold-light); font-style: normal; }
.al-slide__text { color: #d6ebe0; font-size: 1.15rem; margin-bottom: 32px; max-width: 540px; }
.al-slide__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.al-slide__arabic {
  position: absolute; right: -2%; bottom: -6%; z-index: 1;
  font-family: var(--al-font-head); font-size: clamp(8rem, 22vw, 20rem);
  color: rgba(255,255,255,0.05); line-height: 1; pointer-events: none; user-select: none;
}

.al-slider__arrows { position: absolute; z-index: 5; bottom: 40px; right: 40px; display: flex; gap: 12px; }
.al-slider__arrow {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.08);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: var(--al-transition); font-size: 1.2rem;
}
.al-slider__arrow:hover { background: var(--al-gold); border-color: var(--al-gold); color: var(--al-green-900); }
.al-slider__dots { position: absolute; z-index: 5; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.al-slider__dot { width: 12px; height: 12px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.35); cursor: pointer; transition: var(--al-transition); padding: 0; }
.al-slider__dot.is-active { background: var(--al-gold); width: 30px; border-radius: 50px; }

/* =========================================================
   7. Feature / Stat bar
   ========================================================= */
.al-features { margin-top: -50px; position: relative; z-index: 10; }
.al-feature-card {
  background: #fff; border-radius: var(--al-radius); padding: 32px 28px;
  box-shadow: var(--al-shadow); text-align: center; transition: var(--al-transition);
  border-bottom: 4px solid var(--al-green-400);
}
.al-feature-card:hover { transform: translateY(-8px); border-bottom-color: var(--al-gold); }
.al-feature-card__icon {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 16px;
  background: var(--al-green-100); color: var(--al-green-700);
  display: grid; place-items: center; font-size: 1.8rem;
}
.al-feature-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.al-feature-card p { color: var(--al-muted); margin: 0; font-size: 0.95rem; }

/* =========================================================
   8. Offerings / Course cards
   ========================================================= */
.al-offer-card {
  background: #fff; border-radius: var(--al-radius); overflow: hidden;
  box-shadow: var(--al-shadow-sm); transition: var(--al-transition);
  display: flex; flex-direction: column; border: 1px solid var(--al-border);
}
.al-offer-card:hover { transform: translateY(-8px); box-shadow: var(--al-shadow); }
.al-offer-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--al-green-100); }
.al-offer-card__media img { width: 100%; height: 100%; object-fit: cover; transition: var(--al-transition); }
.al-offer-card:hover .al-offer-card__media img { transform: scale(1.06); }
.al-offer-card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--al-gold); color: var(--al-green-900);
  font-size: 0.75rem; font-weight: 700; padding: 5px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.al-offer-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.al-offer-card__body h3 { font-size: 1.35rem; margin-bottom: 10px; }
.al-offer-card__body p { color: var(--al-muted); font-size: 0.95rem; flex: 1; }
.al-offer-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.al-price { font-family: var(--al-font-head); font-size: 1.5rem; font-weight: 700; color: var(--al-green-700); }
.al-price small { font-size: 0.85rem; color: var(--al-muted); font-family: var(--al-font-body); font-weight: 500; }

/* =========================================================
   9. About Dr Amin
   ========================================================= */
.al-about { align-items: center; }
.al-about__media { position: relative; }
.al-about__media img { border-radius: var(--al-radius); box-shadow: var(--al-shadow); }
.al-about__badge {
  position: absolute; bottom: 24px; left: -20px;
  background: var(--al-green-700); color: #fff; padding: 20px 26px; border-radius: var(--al-radius-sm);
  box-shadow: var(--al-shadow); text-align: center;
}
.al-about__badge strong { display: block; font-family: var(--al-font-head); font-size: 2rem; line-height: 1; }
.al-about__badge span { font-size: 0.8rem; letter-spacing: 0.05em; }
.al-about ul.al-checklist { list-style: none; padding: 0; margin: 22px 0; }
.al-checklist li { position: relative; padding-left: 34px; margin-bottom: 14px; color: var(--al-text); }
.al-checklist li::before {
  content: '✓'; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--al-green-600); color: #fff;
  display: grid; place-items: center; font-size: 0.8rem; font-weight: 700;
}

/* =========================================================
   10. Stats band
   ========================================================= */
.al-stat { text-align: center; }
.al-stat strong { display: block; font-family: var(--al-font-head); font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--al-gold-light); line-height: 1; }
.al-stat span { color: #bcd8c9; font-size: 0.95rem; letter-spacing: 0.04em; }

/* =========================================================
   11. Testimonials
   ========================================================= */
.al-testimonial {
  background: #fff; border-radius: var(--al-radius); padding: 34px;
  box-shadow: var(--al-shadow-sm); border: 1px solid var(--al-border); height: 100%;
}
.al-testimonial__stars { color: var(--al-gold); margin-bottom: 14px; letter-spacing: 2px; }
.al-testimonial p { font-style: italic; color: var(--al-text); }
.al-testimonial__author { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.al-testimonial__avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--al-green-100); display: grid; place-items: center; color: var(--al-green-700); font-weight: 700; font-family: var(--al-font-head); }
.al-testimonial__author strong { display: block; color: var(--al-green-900); }
.al-testimonial__author span { font-size: 0.85rem; color: var(--al-muted); }

/* =========================================================
   12. Pricing / Subscription
   ========================================================= */
.al-plan {
  background: #fff; border-radius: var(--al-radius); padding: 38px 32px;
  box-shadow: var(--al-shadow-sm); border: 1px solid var(--al-border);
  text-align: center; position: relative; transition: var(--al-transition);
}
.al-plan:hover { transform: translateY(-8px); box-shadow: var(--al-shadow); }
.al-plan.is-featured { border: 2px solid var(--al-green-600); box-shadow: var(--al-shadow); }
.al-plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--al-gold); color: var(--al-green-900); font-size: 0.75rem; font-weight: 700;
  padding: 6px 18px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.05em;
}
.al-plan h3 { font-size: 1.4rem; }
.al-plan__price { font-family: var(--al-font-head); font-size: 3rem; color: var(--al-green-700); line-height: 1; margin: 14px 0; }
.al-plan__price span { font-size: 1rem; font-family: var(--al-font-body); color: var(--al-muted); }
.al-plan ul { list-style: none; padding: 0; margin: 24px 0; text-align: left; }
.al-plan ul li { padding: 9px 0 9px 30px; position: relative; border-bottom: 1px solid var(--al-border); color: var(--al-muted); }
.al-plan ul li::before { content: '✓'; position: absolute; left: 0; color: var(--al-green-600); font-weight: 700; }

/* =========================================================
   13. CTA band
   ========================================================= */
.al-cta {
  background: linear-gradient(120deg, var(--al-green-800), var(--al-green-600));
  border-radius: var(--al-radius); padding: 64px 40px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.al-cta h2 { color: #fff; }
.al-cta p { color: #d8efe4; max-width: 560px; margin: 0 auto 28px; }
.al-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   14. Footer
   ========================================================= */
.al-footer { background: var(--al-green-900); color: #aecabb; padding-top: 70px; }
.al-footer h4 { color: #fff; font-family: var(--al-font-body); font-size: 1.05rem; margin-bottom: 20px; letter-spacing: 0.02em; }
.al-footer a { color: #aecabb; }
.al-footer a:hover { color: var(--al-gold-light); }
.al-footer__widgets { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.al-footer .al-logo__text, .al-footer__about p { color: #cfe2d7; }
.al-footer ul { list-style: none; padding: 0; margin: 0; }
.al-footer ul li { margin-bottom: 12px; }
.al-footer__newsletter input[type="email"] {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06); color: #fff; margin-bottom: 12px; font-family: inherit;
}
.al-footer__newsletter input::placeholder { color: #88a597; }
.al-footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.88rem; }

/* =========================================================
   15. Generic page / posts / sidebar
   ========================================================= */
.al-page { padding: 70px 0; }
.al-page__layout { display: grid; grid-template-columns: 1fr 320px; gap: 50px; }
.al-content-area { min-width: 0; }
.al-post-card { background: #fff; border: 1px solid var(--al-border); border-radius: var(--al-radius); overflow: hidden; margin-bottom: 34px; box-shadow: var(--al-shadow-sm); }
.al-post-card__media img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.al-post-card__body { padding: 28px; }
.al-post-meta { font-size: 0.85rem; color: var(--al-muted); margin-bottom: 12px; }
.al-entry-content { font-size: 1.05rem; }
.al-entry-content img { border-radius: var(--al-radius-sm); margin: 1.5em 0; }
.al-entry-content blockquote { border-left: 4px solid var(--al-green-500); padding: 6px 0 6px 22px; margin: 1.5em 0; font-style: italic; color: var(--al-green-800); background: var(--al-green-100); border-radius: 0 8px 8px 0; }

.al-page-hero { background: var(--al-green-900); color: #fff; padding: 70px 0; text-align: center; position: relative; overflow: hidden; }
.al-page-hero h1 { color: #fff; }
.al-breadcrumb { font-size: 0.9rem; color: #aecabb; }
.al-breadcrumb a { color: var(--al-gold-light); }

.al-sidebar .widget { background: #fff; border: 1px solid var(--al-border); border-radius: var(--al-radius); padding: 26px; margin-bottom: 28px; box-shadow: var(--al-shadow-sm); }
.al-sidebar .widget-title { font-size: 1.15rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--al-green-100); }
.al-sidebar ul { list-style: none; padding: 0; margin: 0; }
.al-sidebar ul li { padding: 8px 0; border-bottom: 1px solid var(--al-border); }
.al-sidebar ul li:last-child { border-bottom: 0; }

.al-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.al-pagination .page-numbers { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 10px; background: #fff; border: 1px solid var(--al-border); color: var(--al-green-800); font-weight: 600; }
.al-pagination .page-numbers.current, .al-pagination .page-numbers:hover { background: var(--al-green-600); color: #fff; border-color: var(--al-green-600); }

.al-searchform { display: flex; gap: 8px; }
.al-searchform input[type="search"] { flex: 1; padding: 12px 16px; border-radius: 10px; border: 1px solid var(--al-border); font-family: inherit; }
.al-searchform button { padding: 12px 18px; border: 0; border-radius: 10px; background: var(--al-green-600); color: #fff; cursor: pointer; font-weight: 600; }

/* =========================================================
   16. WooCommerce tweaks
   ========================================================= */
.woocommerce ul.products li.product .button,
.woocommerce a.button, .woocommerce button.button, .woocommerce #respond input#submit,
.woocommerce-page .button {
  background: var(--al-green-600) !important; color: #fff !important;
  border-radius: 50px !important; font-family: var(--al-font-body) !important;
  font-weight: 600 !important; padding: 12px 26px !important; transition: var(--al-transition);
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce #respond input#submit:hover { background: var(--al-green-800) !important; }
.woocommerce ul.products li.product { text-align: center; }
.woocommerce ul.products li.product .price { color: var(--al-green-700) !important; font-family: var(--al-font-head); font-weight: 700; }
.woocommerce span.onsale { background: var(--al-gold) !important; color: var(--al-green-900) !important; }
.woocommerce .star-rating span { color: var(--al-gold); }
.woocommerce-store-notice, p.demo_store { background: var(--al-green-700) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-bottom-color: var(--al-green-600); }

/* =========================================================
   17. Utilities & Animations
   ========================================================= */
.al-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.al-reveal.is-visible { opacity: 1; transform: none; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 10px; top: 10px; background: #fff; padding: 10px 16px; border-radius: 8px; z-index: 9999; }
.al-mb-0 { margin-bottom: 0; }

/* =========================================================
   18. Responsive
   ========================================================= */
@media (max-width: 991px) {
  .al-footer__widgets { grid-template-columns: 1fr 1fr; }
  .al-page__layout { grid-template-columns: 1fr; }
  .al-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .al-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .al-nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); background: #fff;
    flex-direction: column; align-items: stretch; padding: 90px 24px 40px; gap: 0;
    transform: translateX(100%); transition: var(--al-transition); box-shadow: var(--al-shadow); z-index: 998; overflow-y: auto; }
  .al-nav.is-open { transform: none; }
  .al-menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .al-menu a { padding: 14px 10px; border-bottom: 1px solid var(--al-border); }
  .al-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 14px; }
  .al-burger { display: block; z-index: 999; }
  .al-nav-overlay { position: fixed; inset: 0; background: rgba(15,61,46,0.5); opacity: 0; visibility: hidden; transition: var(--al-transition); z-index: 997; }
  .al-nav-overlay.is-open { opacity: 1; visibility: visible; }
}
@media (max-width: 680px) {
  .al-section { padding: 60px 0; }
  .al-grid-2, .al-grid-3, .al-grid-4 { grid-template-columns: 1fr; }
  .al-about { display: block; }
  .al-about__media { margin-bottom: 40px; }
  .al-about__badge { left: 16px; }
  .al-slide__inner { padding: 80px 0; }
  .al-slider__arrows { bottom: 20px; right: 20px; }
  .al-slider__dots { bottom: 76px; }
  .al-features { margin-top: 30px; }
  .al-topbar__info { font-size: 0.78rem; }
  .al-footer__bottom { flex-direction: column; text-align: center; }
}
