/* ═══════════════════════════════════════════════
   יסמין תקשורת — Global Stylesheet
   ═══════════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; font-family: 'Heebo', sans-serif; cursor: none; }

:root {
  --bg: #050505;
  --card: #121212;
  --text: #ffffff;
  --muted: #a0a0a0;
  --line: #2a2a2a;
  --yellow: #ffd700;
  --whatsapp: #25D366;
  --radius: 8px;
  --max: 1200px;
}

html { scroll-behavior: smooth; background: var(--bg); }
body { background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: 4px; border: 1px solid transparent; }
.container { width: min(92%, var(--max)); margin: 0 auto; }

/* ─── CUSTOM CURSOR ─── */
.cursor-dot { width: 8px; height: 8px; background-color: var(--yellow); position: fixed; border-radius: 50%; z-index: 9999; pointer-events: none; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s; }
.cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(255, 215, 0, 0.5); position: fixed; border-radius: 50%; z-index: 9998; pointer-events: none; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background-color 0.2s; }
.hover-target:hover ~ .cursor-outline { width: 60px; height: 60px; background-color: rgba(255, 215, 0, 0.1); }
@media (hover: none) { * { cursor: auto !important; } .cursor-dot, .cursor-outline { display: none !important; } }

/* ─── PRELOADER ─── */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.8s ease; }
#preloader img { width: 150px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.05); opacity: 1; } 100% { transform: scale(1); opacity: 0.8; } }

/* ─── SCROLL PROGRESS BAR ─── */
.progress-container { position: fixed; top: 0; left: 0; width: 100%; height: 4px; background: transparent; z-index: 2500; }
.progress-bar { height: 4px; background: var(--yellow); width: 0%; transition: width 0.1s; }

/* ─── FADE IN ANIMATION ─── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ─── HEADER & NAV ─── */
header { position: fixed; top: 0; width: 100%; z-index: 100; background: rgba(5,5,5,0.98); border-bottom: 2px solid var(--yellow); padding: 15px 0; transition: 0.3s; }
.nav { display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; gap: 25px; }
.nav-links a { font-size: 15px; font-weight: 700; transition: color 0.3s; position: relative; }
.nav-links a:hover { color: var(--yellow); }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; right: 0; width: 0%; height: 2px; background: var(--yellow); transition: 0.3s; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active-link { color: var(--yellow); }
.nav-links a.active-link::after { width: 100%; }
.yasmin-title { font-size: 26px; font-weight: 900; color: var(--yellow); }
.header-logo-img { height: 40px; width: auto; object-fit: contain; }

/* HAMBURGER MENU */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 200; }
.hamburger span { width: 25px; height: 3px; background: var(--yellow); transition: 0.3s; border-radius: 3px; }

/* ─── HERO & TYPING EFFECT ─── */
.hero { margin-top: 130px; margin-bottom: 60px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 30px; align-items: center; }
.main-headline { background: linear-gradient(135deg, var(--card) 0%, rgba(255,215,0,0.04) 100%); padding: 40px; border-radius: var(--radius); border-left: 5px solid var(--yellow); }
.hero-title { font-size: clamp(30px, 4vw, 48px); font-weight: 900; line-height: 1.1; margin-bottom: 10px; }
.typing-container { font-size: 22px; color: var(--yellow); font-weight: 700; margin-bottom: 20px; min-height: 35px; }
.typing-cursor { animation: blink 0.7s infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero-subtitle { font-size: 17px; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.hero-signature { font-family: 'Karantina', sans-serif; font-size: 38px; color: var(--yellow); text-align: right; margin-top: 25px; }
.hero-img-item { width: 100%; max-width: 350px; border: 1px solid var(--line); border-radius: var(--radius); transform: translateZ(0); transition: transform 0.3s ease; }
.hero-img-item:hover { transform: scale(1.02); }

.read-story-btn { display: inline-block; color: var(--yellow); font-size: 16px; font-weight: 700; border-bottom: 1px solid var(--yellow); margin-top: 15px; transition: 0.3s; }
.read-story-btn:hover { color: #fff; border-color: #fff; }

/* ─── COUNTERS ─── */
.counters-section { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; text-align: center; padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 50px; background: rgba(255,215,0,0.02); }
.counter-box h4 { font-size: 45px; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 5px; font-family: 'Karantina', sans-serif; letter-spacing: 2px; }
.counter-box p { font-size: 15px; color: var(--muted); font-weight: 700; }
.counter-box .hope { font-size: 12px; font-style: italic; opacity: 0.7; display: block; margin-top: 2px; }

/* ─── SECTIONS ─── */
.section { padding: 60px 0; }
.section-header { display: flex; align-items: center; margin-bottom: 40px; border-bottom: 2px solid var(--line); padding-bottom: 14px; }
.section-header h2 { font-size: 30px; font-weight: 900; }
.section-header::before { content: ''; display: block; width: 10px; height: 30px; background: var(--yellow); margin-left: 12px; }

/* ─── SERVICES GRID ─── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.service-box { position: relative; height: 180px; background: #000; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 20px; transition: 0.4s; }
.service-box img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; transition: 0.5s; z-index: 1; }
.service-box:hover { border-color: var(--yellow); transform: translateY(-6px); box-shadow: 0 12px 30px rgba(255,215,0,0.08), 0 4px 12px rgba(0,0,0,0.4); }
.service-box:hover img { opacity: 0.6; transform: scale(1.08); }
.service-box h3 { position: relative; z-index: 2; font-size: 22px; font-weight: 900; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.9); text-align: center; line-height: 1.2; }

/* ─── VIDEO FILTERING & GRID ─── */
.video-filters { display: flex; gap: 10px; margin-bottom: 25px; flex-wrap: wrap; }
.filter-btn { background: transparent; border: 1px solid var(--line); color: var(--text); padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 700; transition: 0.3s; cursor: none; font-family: 'Heebo', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--yellow); color: #000; border-color: var(--yellow); }

.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.video-item { transition: 0.4s; }
.video-item.hide { display: none; }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); margin-bottom: 12px; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 40px; color: var(--yellow); opacity: 0.8; }
.video-item:hover .video-thumb img { transform: scale(1.05); }
.video-info h3 { color: var(--yellow); font-size: 18px; font-weight: 900; }
.video-info p { color: var(--muted); font-size: 13px; }

/* ─── CLIENTS GRID ─── */
.clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 25px; align-items: center; }
.client-link { background: #fff; padding: 20px; border-radius: var(--radius); height: 120px; display: flex; align-items: center; justify-content: center; transition: 0.3s; border: 1px solid transparent; }
.client-link:hover { transform: scale(1.05); border-color: var(--yellow); box-shadow: 0 5px 15px rgba(255,215,0,0.2); }
.client-link img { max-height: 100%; max-width: 100%; object-fit: contain; }

/* ─── STORY CARD ─── */
.story-item { background: var(--card); border-radius: var(--radius); border: 1px solid var(--line); display: grid; grid-template-columns: 1fr 2fr; gap: 30px; padding: 30px; transition: 0.4s; }
.story-item:hover { border-color: var(--yellow); }
.story-thumb { aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.story-thumb img { width: 100%; height: 100%; object-fit: cover; }
.story-info h3 { color: var(--yellow); font-size: 24px; font-weight: 900; margin-bottom: 10px; }
.story-info p { color: var(--muted); font-size: 16px; line-height: 1.6; }

/* ─── HANDWRITTEN SONG SECTION ─── */
.song-section { text-align: center; margin: 40px 0; padding: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, rgba(5,5,5,1) 100%); }
.handwriting-text { font-family: 'Amatic SC', cursive; font-size: 38px; color: var(--yellow); margin-bottom: 20px; letter-spacing: 1px; }
.song-trigger { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 900; padding: 10px 25px; border: 1px solid var(--line); border-radius: 50px; transition: 0.3s; background: var(--card); }
.song-trigger:hover { background: var(--yellow); color: #000; border-color: var(--yellow); }

/* ─── CONTACT SECTION ─── */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; background: var(--card); padding: 40px; border-radius: var(--radius); border: 1px solid var(--line); }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; background: var(--bg); border: 1px solid var(--line); color: var(--text); border-radius: var(--radius); font-size: 15px; font-family: 'Heebo', sans-serif; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--yellow); }
.contact-form textarea { resize: none; height: 120px; }
.submit-btn { background: var(--yellow); color: #000; font-weight: 900; padding: 15px; border: none; border-radius: var(--radius); transition: 0.3s; font-size: 16px; font-family: 'Heebo', sans-serif; cursor: none; }
.submit-btn:hover { background: #fff; }

.contact-info-box { display: flex; flex-direction: column; justify-content: center; text-align: right; }
.contact-info-box h3 { font-size: 28px; font-weight: 900; margin-bottom: 20px; color: var(--yellow); }
.contact-info-box p { font-size: 20px; color: var(--text); margin-bottom: 15px; font-weight: 400; }
.contact-info-box a { color: var(--yellow); font-weight: 700; }
.whatsapp-btn { background: var(--whatsapp); color: #fff; padding: 15px 30px; border-radius: var(--radius); font-weight: 900; display: inline-block; margin-top: 15px; border: 1px solid var(--whatsapp); width: fit-content; text-align: center; }

/* ─── TICKER ─── */
.ticker-wrap { background: var(--yellow); padding: 12px 0; overflow: hidden; margin-top: 50px; }
.ticker-move { display: flex; animation: footer-scroll 35s linear infinite; gap: 50px; width: max-content; }
.ticker-item { color: #000; font-weight: 800; font-size: 18px; white-space: nowrap; padding: 0 40px; }
@keyframes footer-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── FOOTER ─── */
footer { text-align: center; padding: 20px; font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); margin-bottom: 80px; }

/* ─── FABS (Floating Action Buttons) ─── */
.whatsapp-fab { position: fixed; bottom: 30px; left: 30px; background-color: var(--whatsapp); color: #fff; border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 1000; transition: 0.3s; }
.whatsapp-fab:hover { transform: scale(1.1); }
.acc-fab { position: fixed; bottom: 100px; left: 30px; background: #121212; color: #fff; border: 2px solid var(--yellow); border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-size: 20px; z-index: 1500; cursor: none; font-family: 'Heebo', sans-serif; }
.acc-menu { position: fixed; bottom: 160px; left: 30px; background: #121212; border: 1px solid var(--yellow); padding: 15px; border-radius: var(--radius); display: none; flex-direction: column; gap: 10px; z-index: 1501; }
.acc-menu.open { display: flex; }
.acc-menu button { background: #2a2a2a; color: #fff; border: none; padding: 10px; border-radius: 4px; font-family: 'Heebo'; cursor: none; }
.back-to-top { position: fixed; bottom: 220px; left: 30px; background: var(--yellow); color: #000; border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: bold; z-index: 1000; opacity: 0; pointer-events: none; transition: 0.3s; border: none; cursor: none; font-family: 'Heebo', sans-serif; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }

/* ─── MODALS ─── */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.96); z-index: 3000; display: none; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; pointer-events: none; }
.modal.open { display: flex; opacity: 1; pointer-events: auto; }
.modal-close { position: absolute; top: 25px; left: 25px; color: #fff; font-size: 35px; line-height: 1; z-index: 3101; padding: 10px; background: none; border: none; cursor: none; font-family: 'Heebo', sans-serif; }
.video-container { width: 90%; max-width: 1000px; aspect-ratio: 16/9; }
.video-container iframe { width: 100%; height: 100%; border: none; }

.memory-modal { align-items: flex-start; overflow-y: scroll; padding: 80px 0; z-index: 3100; }
.memory-modal-content { width: min(90%, 800px); color: var(--text); margin: auto; position: relative; }
.memory-story p { margin-bottom: 15px; font-size: 17px; line-height: 1.8; }
.memory-story h3 { font-size: 24px; font-weight: 900; color: var(--yellow); margin: 30px 0 15px 0; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.memory-story strong { color: var(--yellow); font-weight: 900; }
.memory-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.memory-gallery img { height: 220px; width: 100%; object-fit: cover; border: 1px solid var(--line); border-radius: var(--radius); }

.close-modal-btn-bottom { display: block; width: 100%; padding: 15px; margin-top: 40px; background: var(--card); color: var(--yellow); border: 1px solid var(--yellow); border-radius: var(--radius); text-align: center; font-weight: 700; font-size: 16px; transition: 0.3s; cursor: none; font-family: 'Heebo', sans-serif; }
.close-modal-btn-bottom:hover { background: var(--yellow); color: #000; }

/* ─── ARTICLE STYLES (for about & articles pages) ─── */
.article-label { font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 15px; }
.article-title { font-size: clamp(26px, 4vw, 42px); font-weight: 900; line-height: 1.2; margin-bottom: 15px; }
.article-byline { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.article-divider { width: 60px; height: 3px; background: var(--yellow); margin-bottom: 30px; }
.article-quote { border-right: 4px solid var(--yellow); padding: 15px 20px; margin: 30px 0; font-size: 22px; font-weight: 700; color: var(--yellow); font-style: italic; background: rgba(255,215,0,0.05); border-radius: 0 4px 4px 0; }
.article-figure { margin: 30px 0; text-align: center; }
.article-img-full { width: 100%; max-width: 560px; height: auto; object-fit: contain; margin: 0 auto; border-radius: var(--radius); border: 1px solid var(--line); }
.article-figure figcaption { font-size: 13px; color: var(--muted); margin-top: 8px; font-style: italic; }

/* ─── ARTICLES BENTO GRID (TheMarker style) ─── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; gap: 16px; }
.article-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: flex; flex-direction: column; position: relative; }
.article-card:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(255,215,0,0.06), 0 4px 12px rgba(0,0,0,0.4); }
.article-card-img { width: 100%; height: 200px; object-fit: cover; border-radius: 0; border: none; transition: transform 0.5s ease; }
.article-card:hover .article-card-img { transform: scale(1.03); }
.article-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.article-card-tag { font-size: 11px; color: var(--yellow); font-weight: 700; letter-spacing: 1.5px; margin-bottom: 8px; text-transform: uppercase; }
.article-card-body h3 { font-size: 18px; font-weight: 900; margin-bottom: 8px; line-height: 1.35; }
.article-card-body p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; flex: 1; }
.article-card-link { color: var(--yellow); font-weight: 700; font-size: 14px; border-bottom: 1px solid var(--yellow); align-self: flex-start; transition: 0.3s; }
.article-card-link:hover { color: #fff; border-color: #fff; }

/* Featured card - spans 2 columns, horizontal layout */
.article-card.featured { grid-column: span 2; flex-direction: row; }
.article-card.featured .article-card-img { width: 45%; height: 100%; min-height: 280px; }
.article-card.featured .article-card-body { padding: 28px; justify-content: center; }
.article-card.featured .article-card-body h3 { font-size: 24px; line-height: 1.3; margin-bottom: 12px; }
.article-card.featured .article-card-body p { font-size: 15px; margin-bottom: 16px; }

/* Secondary featured - full width */
.article-card.featured-full { grid-column: span 3; flex-direction: row; }
.article-card.featured-full .article-card-img { width: 40%; height: auto; min-height: 240px; }
.article-card.featured-full .article-card-body { padding: 30px; justify-content: center; }
.article-card.featured-full .article-card-body h3 { font-size: 22px; }
.article-card.featured-full .article-card-body p { font-size: 15px; }

/* ─── WORKSHOPS CARDS ─── */
.workshops-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 25px; }
.workshop-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: 0.4s; display: flex; flex-direction: column; }
.workshop-card:hover { border-color: var(--yellow); transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.4); }
.workshop-card .workshop-icon { font-size: 40px; margin-bottom: 15px; }
.workshop-card h3 { font-size: 20px; font-weight: 900; color: var(--yellow); margin-bottom: 12px; line-height: 1.3; }
.workshop-card p { font-size: 15px; color: var(--muted); line-height: 1.7; flex: 1; }
.workshop-card .workshop-cta { display: inline-block; margin-top: 20px; color: var(--yellow); font-weight: 700; border-bottom: 1px solid var(--yellow); align-self: flex-start; transition: 0.3s; }
.workshop-card .workshop-cta:hover { color: #fff; border-color: #fff; }

/* ─── FAQ SECTION ─── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: 0.3s; }
.faq-item:hover { border-color: var(--yellow); }
.faq-question { width: 100%; padding: 20px 25px; background: none; border: none; color: var(--text); font-size: 17px; font-weight: 700; text-align: right; display: flex; justify-content: space-between; align-items: center; cursor: none; font-family: 'Heebo', sans-serif; transition: 0.3s; }
.faq-question:hover { color: var(--yellow); }
.faq-question .faq-icon { font-size: 22px; color: var(--yellow); transition: transform 0.3s; min-width: 30px; text-align: center; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer-inner { padding: 0 25px 20px 25px; font-size: 15px; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ─── VALUE PROPOSITION (HOMEPAGE) ─── */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-bottom: 40px; }
.value-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.value-card:hover { border-color: var(--yellow); transform: translateY(-5px); box-shadow: 0 12px 30px rgba(255,215,0,0.06), 0 4px 12px rgba(0,0,0,0.3); }
.value-card .value-icon { width: 48px; height: 48px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.value-card .value-icon svg { width: 100%; height: 100%; }
.value-card h3 { font-size: 20px; font-weight: 900; color: var(--yellow); margin-bottom: 10px; }
.value-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ─── CTA SECTION ─── */
.cta-section { text-align: center; padding: 50px 30px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); margin: 40px 0; }
.cta-section h3 { font-size: 26px; font-weight: 900; margin-bottom: 15px; }
.cta-section p { font-size: 17px; color: var(--muted); margin-bottom: 25px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btn { display: inline-block; background: var(--yellow); color: #000; font-weight: 900; padding: 15px 40px; border-radius: var(--radius); font-size: 17px; transition: 0.3s; border: 2px solid var(--yellow); }
.cta-btn:hover { background: transparent; color: var(--yellow); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero { margin-top: 100px; margin-bottom: 50px; padding: 50px 0; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(30px, 5vw, 50px); font-weight: 900; margin-bottom: 15px; }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 700px; line-height: 1.7; }

/* ─── ABOUT PAGE ─── */
.about-content { max-width: 800px; margin: 0 auto; }
.about-content p { font-size: 17px; line-height: 1.8; color: var(--muted); margin-bottom: 20px; }
.about-content h3 { font-size: 24px; font-weight: 900; color: var(--yellow); margin: 40px 0 15px 0; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.about-content strong { color: var(--yellow); font-weight: 900; }

/* ─── SHARE BUTTON ─── */
.share-btn { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 9999; padding: 10px 20px; background: var(--yellow); color: #000; border: none; border-radius: 30px; font-weight: bold; cursor: none; font-family: 'Heebo', sans-serif; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }

/* ─── YASMIN FEATURE STORY ─── */
.yasmin-feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; position: relative; overflow: hidden; }
.yasmin-feature::before { content: ''; position: absolute; top: 0; right: 0; width: 4px; height: 100%; background: var(--yellow); }
.yasmin-feature-title { font-size: clamp(22px, 3.5vw, 36px); font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.yasmin-feature-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; margin-top: 25px; align-items: start; }
.yasmin-feature-text p { font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: 18px; }
.text-yellow { color: var(--yellow); font-weight: 900; }
.yasmin-main-img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); margin-bottom: 12px; object-fit: cover; max-height: 280px; }
.yasmin-gallery-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.yasmin-gallery-row img { width: 100%; height: 130px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }

/* ─── CALCULATORS PAGE ─── */
.calc-tabs { display: flex; gap: 0; margin-bottom: 30px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.calc-tab-btn { flex: 1; padding: 14px 20px; background: var(--card); border: none; color: var(--muted); font-family: 'Heebo', sans-serif; font-size: 15px; font-weight: 700; cursor: none; transition: 0.3s; border-left: 1px solid var(--line); }
.calc-tab-btn:last-child { border-left: none; }
.calc-tab-btn.active { background: var(--yellow); color: #000; }
.calc-tab-btn:hover:not(.active) { background: rgba(255,215,0,0.08); color: var(--text); }
.calc-panel { display: none; }
.calc-panel.active { display: block; }

/* VAT Calculator */
.vat-calc { max-width: 520px; }
.vat-mode-seg { display: flex; gap: 0; margin-bottom: 25px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.vat-seg-btn { flex: 1; padding: 12px 16px; background: var(--card); border: none; color: var(--muted); font-family: 'Heebo', sans-serif; font-size: 14px; font-weight: 700; cursor: none; transition: 0.3s; border-left: 1px solid var(--line); }
.vat-seg-btn:last-child { border-left: none; }
.vat-seg-btn.active { background: var(--yellow); color: #000; }
.vat-input-wrap { position: relative; margin-bottom: 20px; }
.vat-input-wrap input { width: 100%; padding: 18px 50px 18px 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); color: var(--text); font-size: 22px; font-family: 'Heebo', sans-serif; font-weight: 700; outline: none; transition: 0.2s; }
.vat-input-wrap input:focus { border-color: var(--yellow); }
.vat-input-wrap .currency-sign { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--muted); font-weight: 700; }
.vat-result { background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, var(--card) 100%); border: 1px solid var(--yellow); border-radius: var(--radius); padding: 25px; display: none; }
.vat-result.visible { display: block; }
.vat-result-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.vat-result-row:last-child { border-bottom: none; padding-bottom: 0; }
.vat-result-row .lbl { color: var(--muted); }
.vat-result-row .val { font-weight: 700; font-size: 18px; }
.vat-result-row.total .lbl { color: var(--text); font-weight: 900; }
.vat-result-row.total .val { color: var(--yellow); font-size: 22px; font-weight: 900; }
.vat-note { font-size: 13px; color: var(--muted); margin-top: 15px; text-align: center; }

/* Tax calculator dark wrapper */
.tax-calc-wrapper { --tc-bg: #0e0e0e; --tc-surface: #181818; --tc-surface2: #1e1e1e; --tc-accent: #ffd700; --tc-accent-light: rgba(255,215,0,0.08); --tc-text: #ffffff; --tc-muted: #a0a0a0; --tc-border: #2a2a2a; --tc-green: #4caf50; --tc-red: #ef5350; --tc-radius: 14px; color: var(--tc-text); }
.tax-calc-wrapper .t-hero { background: linear-gradient(135deg, #1a1500 0%, #2a2000 100%); border: 1px solid var(--yellow); color: var(--yellow); padding: 28px 20px 32px; text-align: center; border-radius: var(--radius) var(--radius) 0 0; position: relative; overflow: hidden; }
.tax-calc-wrapper .t-hero h1 { font-size: clamp(20px,4vw,28px); font-weight: 900; line-height: 1.25; }
.tax-calc-wrapper .t-hero p { margin-top: 6px; font-size: 13px; opacity: 0.7; font-weight: 300; }
.tax-calc-wrapper .t-container { padding: 0; }
.tax-calc-wrapper .t-card { background: var(--tc-surface); border: 1px solid var(--tc-border); border-radius: var(--tc-radius); padding: 22px; margin-top: 14px; }
.tax-calc-wrapper .t-card-title { font-size: 12px; font-weight: 700; color: var(--tc-accent); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.tax-calc-wrapper .t-card-title::before { content: ''; display: inline-block; width: 4px; height: 14px; background: var(--tc-accent); border-radius: 2px; flex-shrink: 0; }
.tax-calc-wrapper .t-field { margin-bottom: 14px; }
.tax-calc-wrapper .t-field:last-child { margin-bottom: 0; }
.tax-calc-wrapper .t-field label { display: block; font-size: 12px; color: var(--tc-muted); margin-bottom: 5px; font-weight: 600; }
.tax-calc-wrapper input[type="number"], .tax-calc-wrapper input[type="text"], .tax-calc-wrapper select { width: 100%; background: var(--tc-surface2); border: 1.5px solid var(--tc-border); border-radius: 10px; padding: 11px 13px; font-size: 16px; font-family: 'Heebo', sans-serif; color: var(--tc-text); outline: none; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; }
.tax-calc-wrapper input[type="number"]:focus, .tax-calc-wrapper input[type="text"]:focus, .tax-calc-wrapper select:focus { border-color: var(--tc-accent); background: #222; }
.tax-calc-wrapper .t-seg { display: flex; gap: 8px; }
.tax-calc-wrapper .t-seg-btn { flex: 1; padding: 10px 8px; border-radius: 10px; border: 1.5px solid var(--tc-border); background: var(--tc-surface2); font-family: 'Heebo', sans-serif; font-size: 14px; font-weight: 600; color: var(--tc-muted); cursor: pointer; transition: all 0.2s; text-align: center; }
.tax-calc-wrapper .t-seg-btn.active { background: var(--tc-accent); border-color: var(--tc-accent); color: #000; }
.tax-calc-wrapper .t-points-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tax-calc-wrapper .t-point-item { display: flex; align-items: center; justify-content: space-between; background: var(--tc-surface2); border: 1.5px solid var(--tc-border); border-radius: 10px; padding: 9px 11px; }
.tax-calc-wrapper .t-point-item label { font-size: 12px; color: var(--tc-text); margin: 0; font-weight: 400; }
.tax-calc-wrapper .t-counter { display: flex; align-items: center; gap: 7px; }
.tax-calc-wrapper .t-counter button { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--tc-border); background: #222; font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--tc-accent); font-weight: 700; transition: all 0.15s; flex-shrink: 0; }
.tax-calc-wrapper .t-counter button:active { background: var(--tc-accent-light); }
.tax-calc-wrapper .t-counter span { font-size: 15px; font-weight: 700; min-width: 16px; text-align: center; color: var(--tc-text); }
.tax-calc-wrapper .t-checkbox-item { display: flex; align-items: center; gap: 10px; background: var(--tc-surface2); border: 1.5px solid var(--tc-border); border-radius: 10px; padding: 11px 13px; cursor: pointer; transition: border-color 0.2s; }
.tax-calc-wrapper .t-checkbox-item:has(input:checked) { border-color: var(--tc-accent); background: var(--tc-accent-light); }
.tax-calc-wrapper .t-checkbox-item input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--tc-accent); flex-shrink: 0; cursor: pointer; }
.tax-calc-wrapper .t-checkbox-item label { font-size: 13px; color: var(--tc-text); margin: 0; font-weight: 400; cursor: pointer; }
.tax-calc-wrapper .t-pct-display { margin-top: 5px; font-size: 12px; color: var(--tc-accent); font-weight: 600; min-height: 18px; }
.tax-calc-wrapper .t-calc-btn { width: 100%; margin-top: 18px; padding: 15px; background: var(--tc-accent); color: #000; border: none; border-radius: 12px; font-family: 'Heebo', sans-serif; font-size: 16px; font-weight: 900; cursor: pointer; transition: opacity 0.2s, transform 0.1s; }
.tax-calc-wrapper .t-calc-btn:active { opacity: 0.85; transform: scale(0.99); }
.tax-calc-wrapper .t-result-card { background: linear-gradient(135deg, #1a1500 0%, #2a2000 100%); border: 1px solid var(--tc-accent); color: var(--tc-text); border-radius: var(--tc-radius); padding: 22px; margin-top: 14px; display: none; }
.tax-calc-wrapper .t-result-card.visible { display: block; }
.tax-calc-wrapper .t-result-card h2 { font-size: 13px; font-weight: 600; color: var(--tc-muted); margin-bottom: 3px; }
.tax-calc-wrapper .t-result-main { font-size: clamp(34px,9vw,50px); font-weight: 900; line-height: 1.1; margin-bottom: 3px; color: var(--tc-accent); }
.tax-calc-wrapper .t-result-sub { font-size: 12px; color: var(--tc-muted); margin-bottom: 18px; }
.tax-calc-wrapper .t-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tax-calc-wrapper .t-result-box { background: rgba(255,215,0,0.06); border: 1px solid rgba(255,215,0,0.15); border-radius: 10px; padding: 13px; }
.tax-calc-wrapper .t-result-box .label { font-size: 11px; color: var(--tc-muted); margin-bottom: 3px; }
.tax-calc-wrapper .t-result-box .value { font-size: 19px; font-weight: 800; color: var(--tc-text); }
.tax-calc-wrapper .t-result-box .value.small { font-size: 14px; }
.tax-calc-wrapper .t-breakdown-card { background: var(--tc-surface); border: 1px solid var(--tc-border); border-radius: var(--tc-radius); padding: 18px; margin-top: 12px; display: none; }
.tax-calc-wrapper .t-breakdown-card.visible { display: block; }
.tax-calc-wrapper .t-breakdown-title { font-size: 12px; font-weight: 700; color: var(--tc-muted); margin-bottom: 12px; letter-spacing: 0.04em; }
.tax-calc-wrapper .t-breakdown-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--tc-border); font-size: 14px; }
.tax-calc-wrapper .t-breakdown-row:last-child { border-bottom: none; }
.tax-calc-wrapper .t-breakdown-row .lbl { color: var(--tc-muted); }
.tax-calc-wrapper .t-breakdown-row .val { font-weight: 600; color: var(--tc-text); }
.tax-calc-wrapper .t-breakdown-row .val.red { color: var(--tc-red); }
.tax-calc-wrapper .t-breakdown-row .val.green { color: var(--tc-green); }
.tax-calc-wrapper .t-warning-box { background: rgba(255,193,7,0.08); border: 1px solid rgba(255,193,7,0.3); border-radius: 10px; padding: 11px 13px; font-size: 12px; color: #ffc107; margin-top: 12px; display: none; line-height: 1.5; }
.tax-calc-wrapper .t-warning-box.visible { display: block; }
.tax-calc-wrapper .t-share-row { display: flex; gap: 10px; margin-top: 14px; }
.tax-calc-wrapper .t-share-btn { flex: 1; padding: 12px; border-radius: 12px; border: 1px solid var(--tc-border); background: var(--tc-surface); font-family: 'Heebo', sans-serif; font-size: 14px; font-weight: 600; color: var(--tc-accent); cursor: pointer; transition: all 0.2s; }
.tax-calc-wrapper .t-share-btn:hover { background: var(--tc-accent-light); }
.tax-calc-wrapper .t-share-btn.print { color: var(--tc-muted); }
.tax-calc-wrapper .t-note { font-size: 11px; color: var(--tc-muted); margin-top: 20px; line-height: 1.6; text-align: center; }
.tax-calc-wrapper .t-dropdown { display: none; position: absolute; right: 0; left: 0; z-index: 200; background: #1e1e1e; border: 1.5px solid var(--tc-border); border-radius: 10px; margin-top: 4px; max-height: 220px; overflow-y: auto; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.tax-calc-wrapper .t-dropdown-item { padding: 11px 13px; cursor: pointer; font-size: 14px; border-bottom: 1px solid var(--tc-border); display: flex; justify-content: space-between; align-items: center; color: var(--tc-text); }
.tax-calc-wrapper .t-dropdown-item:hover { background: rgba(255,215,0,0.08); }
.tax-calc-wrapper .t-dropdown-item:last-child { border-bottom: none; }
.tax-calc-wrapper .t-dropdown-badge { font-weight: 700; color: var(--tc-accent); font-size: 12px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 250px; height: 100vh; background: var(--card); flex-direction: column; justify-content: center; align-items: center; transition: 0.4s ease; border-left: 2px solid var(--yellow); z-index: 150; gap: 30px; box-shadow: -5px 0 15px rgba(0,0,0,0.5); }
  .nav-links.active { right: 0; }
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero-grid { grid-template-columns: 1fr; }
  .story-item { grid-template-columns: 1fr; padding: 20px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info-box { text-align: center; align-items: center; border-top: 1px solid var(--line); padding-top: 30px; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card.featured, .article-card.featured-full { grid-column: span 1; flex-direction: column; }
  .article-card.featured .article-card-img, .article-card.featured-full .article-card-img { width: 100%; min-height: 200px; height: 200px; }
  .workshops-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .memory-gallery { grid-template-columns: 1fr; }

  /* yasmin story — mobile */
  .yasmin-feature { padding: 24px 20px; }
  .yasmin-feature-body { grid-template-columns: 1fr; gap: 16px; }
  .yasmin-feature-gallery { display: flex; flex-direction: column; gap: 10px; }
  .yasmin-main-img { width: 100%; height: 200px; max-height: 200px; margin-bottom: 0; object-fit: cover; }
  .yasmin-gallery-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .yasmin-gallery-row img { height: 110px; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .article-card.featured { grid-column: span 2; }
  .article-card.featured-full { grid-column: span 2; }
}
