@import url('/fonts/fonts.css');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary:   #1a3a5c;
    --primary-d: #122840;
    --gold:      #b8860b;
    --gold-l:    #d4a017;
    --white:     #ffffff;
    --bg:        #f8fafc;
    --text:      #2d3748;
    --text-sm:   #718096;
    --border:    #e2e8f0;
    --radius:    10px;
    --shadow:    0 4px 20px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Peyda', tahoma, sans-serif; color: var(--text); background: var(--white); direction: rtl; font-size: 15px; line-height: 1.7; }
a { text-decoration: none; color: inherit; transition: color .2s; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,.06); transition: box-shadow .3s; }
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; object-fit: contain; }
.site-logo-text { font-size: 16px; font-weight: 700; color: var(--primary); line-height: 1.3; }
.site-logo-text small { display: block; font-size: 11px; color: var(--text-sm); font-weight: 400; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { padding: 8px 14px; border-radius: 7px; font-size: 14px; font-weight: 500; color: var(--text); transition: all .2s; white-space: nowrap; position: relative; }
.main-nav a:hover { background: var(--bg); color: var(--primary); }
.main-nav a.active { background: var(--primary); color: var(--white); }
.lang-switch { display: flex; align-items: center; gap: 6px; }
.lang-switch a { padding: 5px 10px; border-radius: 5px; border: 1px solid var(--border); font-size: 12px; color: var(--text-sm); transition: all .2s; }
.lang-switch a:hover, .lang-switch a.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.menu-btn { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--primary); }

/* MOBILE NAV */
.mobile-nav { display:none; background:var(--primary); border-top:1px solid rgba(255,255,255,.1); padding:8px 0 20px; max-height:85vh; overflow-y:auto; }
.mobile-nav.open { display:block; animation:mobSlide .25s ease; }
@keyframes mobSlide { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.mobile-nav > .container { padding:0 20px; }
.mob-link { display:flex; align-items:center; padding:15px 4px; color:rgba(255,255,255,.92); font-size:15px; font-weight:500; border-bottom:1px solid rgba(255,255,255,.08); }
.mob-link:hover { color:#fff; }
.mob-item-wrap { border-bottom:1px solid rgba(255,255,255,.08); }
.mob-item-row { display:flex; align-items:center; justify-content:space-between; padding:15px 4px; color:#fff; font-size:15px; font-weight:500; cursor:pointer; user-select:none; }
.mob-item-row:hover { color:var(--gold); }
.mob-arrow { font-size:11px; transition:transform .3s; opacity:.7; background:rgba(255,255,255,.1); width:24px; height:24px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.mob-item-wrap.open .mob-arrow { transform:rotate(180deg); background:var(--gold); opacity:1; }
.mob-sub { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.mob-item-wrap.open .mob-sub { max-height:400px; }
.mob-sub-item { display:flex; align-items:center; padding:12px 16px; color:rgba(255,255,255,.75); font-size:14px; border-bottom:1px solid rgba(255,255,255,.05); border-right:3px solid var(--gold); margin:4px 0; border-radius:0 0 0 6px; background:rgba(0,0,0,.15); }
.mob-sub-item:last-child { border-bottom:none; }
.mob-sub-item:hover { color:#fff; background:rgba(255,255,255,.08); }

/* HERO */
.hero { background: linear-gradient(135deg, var(--primary) 0%, #0d2540 100%); color: var(--white); padding: 80px 0; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-title { font-size: 36px; font-weight: 800; line-height: 1.4; margin-bottom: 16px; }
.hero-title span { color: var(--gold-l); }
.hero-desc { font-size: 16px; opacity: .85; margin-bottom: 32px; line-height: 1.8; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.3); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 8px; font-size: 14px; font-weight: 600; font-family: 'Peyda', tahoma; cursor: pointer; border: none; transition: all .25s; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-l); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-blue { background: var(--primary); color: var(--white); }
.btn-blue:hover { background: var(--primary-d); }

/* SECTIONS */
.section { padding: 70px 0; }
.section-alt { background: var(--bg); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-size: 28px; font-weight: 800; color: var(--primary); margin-bottom: 12px; position: relative; display: inline-block; }
.section-title::after { content: ''; position: absolute; bottom: -8px; right: 50%; transform: translateX(50%); width: 50px; height: 3px; background: var(--gold); border-radius: 2px; }
.section-desc { color: var(--text-sm); font-size: 15px; max-width: 600px; margin: 16px auto 0; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 28px; transition: all .3s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; right: 0; width: 3px; height: 0; background: var(--gold); transition: height .3s; border-radius: 0 var(--radius) 0 0; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card:hover::before { height: 100%; }
.card-icon { width: 56px; height: 56px; background: #ebf4ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.card-image { height: 180px; overflow: hidden; border-radius: 8px; margin-bottom: 16px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-image img { transform: scale(1.05); }
.card-title { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.card-desc { color: var(--text-sm); font-size: 14px; line-height: 1.7; }
.card-more { display: inline-block; margin-top: 14px; color: var(--gold); font-size: 13px; font-weight: 700; transition: color .2s; }
.card-more:hover { color: var(--primary); }

/* TEXT + IMAGE */
.text-image { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-image.reverse { direction: ltr; }
.text-image.reverse > * { direction: rtl; }
.ti-title { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.ti-desc { color: var(--text-sm); line-height: 1.8; margin-bottom: 24px; }
.ti-image img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* COUNTER */
.counter-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.counter-item { padding: 32px 20px; }
.counter-icon { width: 72px; height: 72px; background: #ebf4ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.counter-icon i { font-size: 30px; color: var(--primary); }
.counter-num { font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; display: inline-block; }
.counter-label { color: var(--text-sm); font-size: 14px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: box-shadow .2s; }
.faq-q { padding: 18px 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--white); transition: background .2s; }
.faq-q:hover { background: var(--bg); }
.faq-q.open { color: var(--primary); }
.faq-icon { transition: transform .3s; }
.faq-q.open .faq-icon { transform: rotate(180deg); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; color: var(--text-sm); line-height: 1.8; }
.faq-a.open { max-height: 500px; padding: 16px 20px; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--primary), #0d2540); color: var(--white); text-align: center; padding: 70px 0; }
.cta-title { font-size: 30px; font-weight: 800; margin-bottom: 16px; }
.cta-desc { opacity: .8; margin-bottom: 32px; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: all .3s; position: relative; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--bg); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px; }
.blog-card-cat { font-size: 11px; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.blog-card-title { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.5; }
.blog-card-desc { font-size: 13px; color: var(--text-sm); line-height: 1.7; }
.blog-card-date { font-size: 11px; color: #aaa; margin-top: 12px; }

/* FORM */
.form-wrap { max-width: 680px; margin: 0 auto; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-family: 'Peyda', tahoma; color: var(--text); background: var(--white); outline: none; transition: border .2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg { padding: 12px 16px; border-radius: 7px; font-size: 13px; margin-top: 12px; display: none; }
.form-msg.success { background: #e8f5e9; color: #27ae60; border: 1px solid #c3e6cb; display: block; }
.form-msg.error { background: #fde8e8; color: #c0392b; border: 1px solid #f5c6cb; display: block; }

/* MAP */
.map-wrap iframe { width: 100%; height: 400px; border: none; border-radius: var(--radius); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.07); }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; border: 3px solid var(--border); }
.team-name { font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text-sm); }

/* TIMELINE */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content:''; position:absolute; right:24px; top:0; bottom:0; width:2px; background:var(--border); }
.timeline-item { display: flex; gap: 32px; margin-bottom: 36px; }
.timeline-dot { width: 48px; height: 48px; background: var(--primary); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 14px; position: relative; z-index: 1; }
.timeline-content { flex: 1; padding-top: 10px; }
.timeline-title { font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.timeline-desc { color: var(--text-sm); font-size: 14px; line-height: 1.7; }

/* MARQUEE */
.marquee-wrap { overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; gap: 40px; animation: marquee 20s linear infinite; width: max-content; }
.marquee-track img { height: 50px; width: auto; filter: grayscale(1); opacity: .6; transition: all .3s; }
.marquee-track img:hover { filter: none; opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* TABS */
.tabs-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 28px; flex-wrap: wrap; }
.tab-btn { padding: 10px 20px; border: none; background: none; font-family: 'Peyda', tahoma; font-size: 14px; cursor: pointer; color: var(--text-sm); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .2s; }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 700; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* VIDEO */
.video-wrap { position: relative; padding-bottom: 56.25%; border-radius: var(--radius); overflow: hidden; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* TABLE */
.content-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.content-table th { background: var(--primary); color: var(--white); padding: 12px 16px; text-align: right; }
.content-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.content-table tr:hover td { background: var(--bg); }

/* PAGE HEADER */
.page-header { background: linear-gradient(135deg, var(--primary) 0%, #122840 100%); padding: 48px 0; }
.page-header .container { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.page-header-title { font-size: 28px; font-weight: 800; color: #fff; margin: 0; order: 2; }
.page-header .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.6); order: 1; }
.page-header .breadcrumb a { color: rgba(255,255,255,.85); }
.page-header .breadcrumb a:hover { color: var(--gold-l); }
.page-header .breadcrumb i { font-size: 9px; color: rgba(255,255,255,.3); }
.page-header .breadcrumb span { color: var(--gold-l); font-weight: 600; }

/* PAGE CONTENT */
.page-content { padding: 60px 0; min-height: 50vh; }
.page-content img { max-width: 100%; border-radius: 8px; }

/* PAGINATION */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-btn { width: 36px; height: 36px; border-radius: 7px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); color: var(--text); font-size: 14px; transition: all .2s; }
.page-btn:hover, .page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* FOOTER */
.site-footer { background: var(--primary); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 40px; }
.footer-logo-name { font-size: 15px; font-weight: 700; color: var(--white); }
.footer-desc { font-size: 13px; line-height: 1.8; opacity: .75; }
.footer-title { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; opacity: .75; transition: all .2s; padding-right: 12px; position: relative; }
.footer-links a::before { content: '›'; position: absolute; right: 0; color: var(--gold); transition: right .2s; }
.footer-links a:hover { opacity: 1; color: var(--gold-l); }
.footer-links a:hover::before { right: -4px; }
.footer-contact p { font-size: 13px; margin-bottom: 10px; opacity: .75; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact i { margin-top: 3px; color: var(--gold-l); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.15); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; color: #fff; transition: background .2s; }
.social-btn:hover { background: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: 12px; opacity: .6; }

/* WHATSAPP */
.wa-btn { position: fixed; bottom: 28px; left: 28px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none; transition: transform .2s; }
.wa-btn:hover { transform: scale(1.1); }

/* SCROLL TOP */
.scroll-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 4px 16px rgba(0,0,0,.2); opacity: 0; transform: translateY(20px); transition: all .3s; z-index: 998; }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: repeat(3,1fr); }
    .counter-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .menu-btn { display: block; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .hero-title { font-size: 26px; }
    .text-image { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 480px) {
    .hero { padding: 50px 0; }
    .section { padding: 50px 0; }
    .section-title { font-size: 22px; }
    .counter-grid { grid-template-columns: 1fr 1fr; }
}
.footer-grid { display: grid !important; grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 40px !important; margin-bottom: 40px !important; }
@media(max-width:1024px){.footer-grid{grid-template-columns:1fr 1fr !important;}}
@media(max-width:768px){.footer-grid{grid-template-columns:1fr !important;gap:24px !important;}}

/* POST SINGLE */
.post-layout { max-width: 860px; margin: 0 auto; }
.post-featured-img { border-radius: 14px; overflow: hidden; margin-bottom: 28px; max-height: 460px; }
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.post-meta { display: flex; gap: 20px; color: var(--text-sm); font-size: 13px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.post-meta span { display: flex; align-items: center; gap: 6px; }
.post-meta i { color: var(--gold); }
.post-content { font-size: 15px; line-height: 2; color: var(--text); }
.post-content h2 { font-size: 22px; font-weight: 700; color: var(--primary); margin: 28px 0 14px; }
.post-content h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin: 24px 0 12px; }
.post-content p { margin-bottom: 16px; }
.post-content ul, .post-content ol { padding-right: 24px; margin-bottom: 16px; }
.post-content li { margin-bottom: 8px; }
.post-content img { border-radius: 10px; margin: 16px 0; }
.post-content blockquote { border-right: 4px solid var(--gold); padding: 12px 20px; background: var(--bg); border-radius: 0 8px 8px 0; margin: 20px 0; color: var(--text-sm); font-style: italic; }

/* ── DROPDOWN MENU ──────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-arrow { font-size: 10px; transition: transform .25s; }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 12px); right: 0; background: #fff; min-width: 200px; border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,.12); border: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .25s; z-index: 999; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-item { display: flex; align-items: center; gap: 8px; padding: 11px 18px; font-size: 13px; color: var(--text); transition: background .15s, color .15s; border-radius: 6px; }
.nav-dropdown-item:first-child { border-radius: 10px 10px 0 0; }
.nav-dropdown-item:last-child  { border-radius: 0 0 10px 10px; }
.nav-dropdown-item:hover, .nav-dropdown-item.active { background: var(--primary); color: #fff; }
.nav-dropdown-item i { width: 16px; text-align: center; }

/* ── HEADER SEARCH ──────────────────────────────────── */
.header-actions { display:flex; align-items:center; gap:10px; }
.hdr-search { position:relative; display:flex; align-items:center; }
.hdr-search-btn { background:var(--primary); border:none; color:#fff; width:36px; height:36px; border-radius:8px; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:15px; transition:all .2s; flex-shrink:0; }
.hdr-search-btn:hover { background:var(--gold); }
.hdr-search-form { position:absolute; left:44px; top:50%; transform:translateY(-50%); display:flex; align-items:center; background:#fff; border:2px solid var(--primary); border-radius:8px; overflow:hidden; width:0; opacity:0; pointer-events:none; transition:width .3s ease, opacity .3s ease; z-index:500; }
.hdr-search.open .hdr-search-form { width:240px; opacity:1; pointer-events:all; }
.hdr-search-form input { border:none; padding:8px 12px; font-size:14px; outline:none; width:100%; color:#333; background:#fff; font-family:inherit; direction:rtl; }
.hdr-search-form button { background:var(--primary); color:#fff; border:none; padding:0 12px; height:38px; cursor:pointer; font-size:14px; flex-shrink:0; }
.hdr-search-form button:hover { background:var(--gold); }
/* سرچ موبایل */
.mob-search { display:flex; margin:10px 0 14px; border:1px solid rgba(255,255,255,.25); border-radius:8px; overflow:hidden; background:rgba(255,255,255,.08); }
.mob-search input { flex:1; background:transparent; border:none; padding:11px 14px; color:#fff; font-size:14px; outline:none; font-family:inherit; }
.mob-search input::placeholder { color:rgba(255,255,255,.45); }
.mob-search button { background:var(--gold); border:none; color:#fff; padding:0 16px; cursor:pointer; font-size:15px; }
@media(max-width:768px) { .hdr-search { display:none; } }
.footer-grid { display: grid !important; grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 40px !important; margin-bottom: 40px !important; }
@media(max-width:1024px){.footer-grid{grid-template-columns:1fr 1fr !important;}}
@media(max-width:768px){.footer-grid{grid-template-columns:1fr !important;gap:24px !important;}}
