/* ===== DESIGN TOKENS ===== */
:root {
  --primary: #1a56db;
  --primary-dark: #1240a8;
  --primary-light: #e8effd;
  --accent: #0ea5e9;
  --accent-light: #e0f2fe;
  --success: #10b981;
  --warning: #f59e0b;
  --text: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 12px; color: var(--text); }
.section-subtitle { text-align: center; color: var(--text-light); font-size: 1.1rem; max-width: 640px; margin: 0 auto 48px; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.badge { display: inline-block; padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 600; background: var(--primary-light); color: var(--primary); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600; font-size: .95rem; transition: var(--transition); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(26,86,219,.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,86,219,.4); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn i { font-size: 1.1em; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--primary); color: #fff; padding: 8px 0; font-size: .85rem; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.top-bar a:hover { opacity: .85; }
.top-bar-links { display: flex; gap: 20px; align-items: center; }

/* ===== HEADER / NAV ===== */
.header { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(12px); background: rgba(255,255,255,.95); }
.header .container { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; padding-bottom: 12px; }
.logo { font-size: 1.35rem; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 10px; }
.logo i { font-size: 1.5rem; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a { padding: 10px 16px; font-weight: 500; font-size: .92rem; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 5px; color: var(--text); }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--primary); background: var(--primary-light); }
.nav-links > li > a i.fa-chevron-down { font-size: .65rem; transition: var(--transition); }

/* Cascading Dropdown */
.dropdown { position: absolute; top: 100%; left: 0; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 6px; min-width: 280px; opacity: 0; visibility: hidden; transition: var(--transition); pointer-events: none; transform: translateY(8px); z-index: 100; }
.nav-links > li:hover > .dropdown { opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0); }
.dropdown li { position: relative; }
.dropdown li > a { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-radius: var(--radius-sm); font-size: .88rem; color: var(--text-light); white-space: nowrap; }
.dropdown li > a:hover { background: var(--primary-light); color: var(--primary); }
.dropdown li > a i.fa-chevron-right { font-size: .6rem; opacity: .5; }
/* Sub-dropdown (level 2) */
.dropdown .sub-dropdown { position: absolute; top: -6px; left: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 6px; min-width: 280px; opacity: 0; visibility: hidden; transition: var(--transition); pointer-events: none; transform: translateX(8px); z-index: 101; }
.dropdown li:hover > .sub-dropdown { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(0); }
.sub-dropdown li > a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: .88rem; color: var(--text-light); white-space: nowrap; }
.sub-dropdown li > a:hover { background: var(--primary-light); color: var(--primary); }

/* Mobile Nav */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text); padding: 8px; }
.mobile-nav { display: none; }
.mobile-nav .mobile-sub { padding-left: 16px; }
.mobile-nav .mobile-sub a { font-size: .9rem; color: var(--text-light); }
.mobile-nav .mobile-sub .mobile-sub a { font-size: .85rem; color: var(--text-muted); }

/* ===== HERO ===== */
.hero { padding: 80px 0 60px; background: linear-gradient(135deg, #f0f5ff 0%, #e8effd 50%, #f8fafc 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(26,86,219,.06) 0%, transparent 70%); }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { margin-bottom: 20px; }
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 32px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.hero-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; transition: var(--transition); }
.hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.hero-card i { font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
.hero-card h3 { font-size: .95rem; font-weight: 600; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--primary); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon { width: 56px; height: 56px; border-radius: var(--radius-sm); background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card .icon i { font-size: 1.4rem; color: var(--primary); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: .92rem; margin-bottom: 16px; }
.service-card .card-link { color: var(--primary); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.service-card .card-link:hover { gap: 10px; }

/* ===== PROCESS STEPS ===== */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.process-step { text-align: center; position: relative; }
.process-step .step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; margin: 0 auto 16px; position: relative; z-index: 1; }
.process-step h4 { font-size: .92rem; font-weight: 600; margin-bottom: 6px; }
.process-step p { font-size: .82rem; color: var(--text-light); }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 28px; left: calc(50% + 28px); width: calc(100% - 56px); height: 2px; background: var(--border); z-index: 0; }

/* ===== BANKS SECTION ===== */
.banks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.bank-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.bank-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.bank-card h3 i { color: var(--primary); }
.bank-card p { font-size: .9rem; color: var(--text-light); }

/* ===== FEATURES LIST ===== */
.features-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.feature-item { display: flex; gap: 14px; padding: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.feature-item i { color: var(--success); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.feature-item p { font-size: .92rem; color: var(--text-light); }

/* ===== TABS ===== */
.tabs { display: flex; gap: 4px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn { padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: .9rem; background: var(--bg-alt); color: var(--text-light); border: 1px solid var(--border); transition: var(--transition); }
.tab-btn:hover, .tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.tab-content { display: none; animation: fadeIn .4s ease; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== HOW WE WORK ===== */
.how-list { max-width: 700px; margin: 0 auto; }
.how-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border-light); }
.how-item .num { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.how-item p { color: var(--text-light); font-size: .95rem; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-q { padding: 20px 24px; font-weight: 600; font-size: 1rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: var(--bg); transition: var(--transition); }
.faq-q:hover { background: var(--bg-alt); }
.faq-q i { transition: var(--transition); color: var(--primary); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 24px 20px; color: var(--text-light); font-size: .95rem; line-height: 1.7; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font); font-size: .95rem; transition: var(--transition); background: var(--bg); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,86,219,.1); }
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info-card { background: var(--primary); color: #fff; border-radius: var(--radius); padding: 40px; }
.contact-info-card h3 { font-size: 1.4rem; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-item i { font-size: 1.2rem; margin-top: 3px; opacity: .8; }
.contact-info-item a { color: #fff; }
.contact-info-item a:hover { opacity: .8; }

/* ===== PAGE HEADER ===== */
.page-header { background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%); color: #fff; padding: 60px 0 50px; text-align: center; }
.page-header h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.page-header p { opacity: .85; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .85rem; margin-bottom: 16px; opacity: .7; }
.breadcrumb a:hover { opacity: 1; }

/* ===== COUNTRY LINKS ===== */
.country-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.country-link { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: var(--transition); font-weight: 500; font-size: .92rem; }
.country-link:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); transform: translateX(4px); }
.country-link i { color: var(--primary); }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%); color: #fff; border-radius: var(--radius-lg); padding: 60px; text-align: center; margin: 40px 0; }
.cta-banner h2 { font-size: 2rem; margin-bottom: 16px; }
.cta-banner p { opacity: .85; font-size: 1.05rem; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { background: #fff; color: var(--primary); }
.cta-banner .btn-primary:hover { background: #f0f5ff; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.cta-btns .btn { min-width: 160px; justify-content: center; font-size: .88rem; padding: 12px 22px; border-radius: var(--radius-sm); font-weight: 600; }
.cta-btns .btn-wa { background: #25d366; color: #fff; }
.cta-btns .btn-wa:hover { background: #1da851; transform: translateY(-2px); }
.cta-btns .btn-chat { background: #fff; color: var(--primary); }
.cta-btns .btn-chat:hover { background: #f0f5ff; transform: translateY(-2px); }
.cta-btns .btn-tg { background: #0088cc; color: #fff; }
.cta-btns .btn-tg:hover { background: #006fa1; transform: translateY(-2px); }
.cta-btns .btn-email { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.cta-btns .btn-email:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.cta-btns .btn-order { background: #fff; color: var(--primary); box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.cta-btns .btn-order:hover { background: #f0f5ff; transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer { background: #0f172a; color: #cbd5e1; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer p { font-size: .88rem; line-height: 1.7; }
.footer-links a { display: block; padding: 5px 0; font-size: .88rem; color: #94a3b8; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-brand p { margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #cbd5e1; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; text-align: center; font-size: .82rem; color: #64748b; }

/* ===== FLOATING BUTTONS ===== */
.floating-btns { position: fixed; left: 0; top: 50%; transform: translateY(-50%); z-index: 999; display: flex; flex-direction: column; gap: 0; }
.float-btn { width: 52px; height: 52px; border-radius: 0 12px 12px 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem; box-shadow: 2px 2px 12px rgba(0,0,0,.18); transition: var(--transition); position: relative; }
.float-btn:hover { width: 60px; }
.float-btn.whatsapp { background: #25d366; }
.float-btn.telegram { background: #0088cc; }

/* ===== DISCLAIMER ===== */
.disclaimer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 16px 0; text-align: center; font-size: .82rem; color: var(--text-muted); }

/* ===== BLOG GRID ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); background: var(--bg-card); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img { height: 200px; background: linear-gradient(135deg, var(--primary-light), var(--accent-light)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-img i { font-size: 3rem; color: var(--primary); opacity: .4; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: .88rem; color: var(--text-light); }
.blog-date { display: block; font-size: .78rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.blog-date i { margin-right: 4px; }
.blog-card-body .card-link { display: inline-block; margin-top: 12px; font-size: .85rem; font-weight: 600; color: var(--primary); }
.blog-card-body .card-link:hover { color: var(--primary-dark); }

/* ===== BLOG ARTICLE ===== */
.blog-article { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.blog-article h2 { font-size: 1.5rem; color: var(--text); margin: 32px 0 16px; position: relative; padding-bottom: 8px; }
.blog-article h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--primary); border-radius: 2px; }
.blog-article h3 { font-size: 1.2rem; color: var(--text); margin: 24px 0 12px; }
.blog-article p { font-size: 1.05rem; color: var(--text-light); line-height: 1.85; margin-bottom: 16px; }
.blog-article ul, .blog-article ol { margin: 16px 0; padding-left: 24px; }
.blog-article li { font-size: 1.02rem; color: var(--text-light); line-height: 1.8; margin-bottom: 8px; }
.blog-article a { color: var(--primary); font-weight: 500; }
.blog-article a:hover { text-decoration: underline; }
.blog-meta { display: flex; gap: 16px; align-items: center; color: var(--text-muted); font-size: .88rem; margin-bottom: 24px; flex-wrap: wrap; }
.blog-meta span { display: flex; align-items: center; gap: 6px; }
.blog-back { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; margin-bottom: 24px; font-size: .92rem; }
.blog-back:hover { color: var(--primary-dark); }
.blog-related { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.blog-related h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--text); }
.blog-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.blog-related-card { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-sm); transition: var(--transition); }
.blog-related-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.blog-related-card h4 { font-size: .95rem; margin-bottom: 6px; }
.blog-related-card h4 a { color: var(--text); }
.blog-related-card h4 a:hover { color: var(--primary); }
.blog-related-card p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ===== SAMPLE GALLERY ===== */
.sample-nav-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.sample-tab { padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: .92rem; background: var(--bg-alt); color: var(--text-light); border: 2px solid var(--border); transition: var(--transition); }
.sample-tab:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.sample-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 14px rgba(26,86,219,.3); }
.sample-category { margin-bottom: 48px; }
.sample-category h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 10px; color: var(--text); }
.sample-category h2 i { color: var(--primary); font-size: 1.1rem; }
.sample-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.sample-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.sample-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.sample-item a { display: block; position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--bg-alt); }
.sample-item a::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; background: rgba(26,86,219,.6); color: #fff; font-size: 2rem; opacity: 0; transition: var(--transition); }
.sample-item:hover a::after { opacity: 1; }
.sample-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.sample-item:hover img { transform: scale(1.05); }
.sample-item p { padding: 12px 14px; font-size: .82rem; font-weight: 600; text-align: center; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: var(--bg-card); border-top: 1px solid var(--border-light); }

/* Lightbox Modal */
.lightbox-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.85); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 40px; backdrop-filter: blur(8px); }
.lightbox-overlay.active { display: flex; animation: fadeIn .3s ease; }
.lightbox-overlay img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2rem; cursor: pointer; transition: var(--transition); z-index: 2001; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.1); }
.lightbox-close:hover { background: rgba(255,255,255,.2); transform: scale(1.1); }
.lightbox-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 1rem; font-weight: 600; background: rgba(0,0,0,.5); padding: 8px 24px; border-radius: 50px; }

/* ===== ORDER FORM ===== */
.order-contact-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.order-contact-item a { display: flex; align-items: center; gap: 14px; padding: 20px 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.order-contact-item a:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.order-contact-item i { font-size: 1.6rem; color: var(--primary); flex-shrink: 0; }
.order-contact-item span { font-size: .82rem; color: var(--text-light); }
.order-contact-item strong { display: block; font-size: .92rem; color: var(--text); }
.order-form-wrapper { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 32px; }
.order-form-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 2px solid var(--border); }
.order-form-header i { font-size: 2rem; color: var(--primary); }
.order-form-header h2 { font-size: 1.5rem; margin-bottom: 4px; }
.order-form-header p { color: var(--text-light); font-size: .92rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: .85rem; color: var(--text-muted); padding: 12px 16px; background: var(--bg-alt); border-radius: var(--radius-sm); margin-top: 8px; }
.form-note i { color: var(--primary); margin-right: 6px; }
.req { color: #ef4444; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
#serviceFields .form-group { animation: fadeIn .4s ease; }
.order-trust-bar { display: flex; justify-content: center; gap: 40px; padding: 24px; background: var(--bg-alt); border-radius: var(--radius); }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 600; color: var(--text-light); }
.trust-item i { font-size: 1.2rem; color: var(--success); }
.was-validated input:invalid, .was-validated select:invalid, .was-validated textarea:invalid { border-color: #ef4444; }
.was-validated input:valid, .was-validated select:valid, .was-validated textarea:valid { border-color: var(--success); }

/* ===== TOAST NOTIFICATIONS ===== */
.toast-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  transform: translateX(120%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  max-width: 420px;
}
.toast-notification.toast-show {
  transform: translateX(0);
}
.toast-notification.toast-success {
  background: #059669;
  color: #fff;
}
.toast-notification.toast-error {
  background: #dc2626;
  color: #fff;
}
.toast-notification.toast-loading {
  background: var(--primary);
  color: #fff;
}
.toast-notification i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-cards { max-width: 400px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .top-bar .container { justify-content: center; font-size: .78rem; }
  .top-bar-links { gap: 12px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .mobile-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px 24px; box-shadow: var(--shadow); }
  .mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border-light); font-weight: 500; }
  .mobile-nav a:hover { color: var(--primary); }
  .hero h1 { font-size: 2rem; }
  .section { padding: 50px 0; }
  .section-title { font-size: 1.6rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .sample-gallery { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .sample-nav-tabs { gap: 6px; }
  .sample-tab { padding: 10px 20px; font-size: .85rem; }
  .order-contact-bar { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .order-form-wrapper { padding: 24px; }
  .order-trust-bar { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 480px) {
  .hero-cards { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: 1fr; }
  .sample-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .sample-item p { font-size: .75rem; padding: 8px 10px; }
  .order-trust-bar { flex-direction: column; align-items: center; }
}
