/* ===========================================
   E3 Immigration — Shared Service Page Styles
   =========================================== */

/* Page Header (service/hub pages) */
.page-header { padding: 100px 0; color: white; text-align: center; position: relative; background-size: cover; background-position: center 20%; }
.page-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(0,30,15,0.7), rgba(0,104,56,0.8)); }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: white; margin-bottom: 15px; font-size: 48px; text-shadow: 0 2px 15px rgba(0,0,0,0.6); font-weight: 800; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.breadcrumb-nav a { color: rgba(255,255,255,0.85); transition: 0.3s; }
.breadcrumb-nav a:hover { color: var(--secondary); }
.breadcrumb-nav span { color: rgba(255,255,255,0.6); }
.breadcrumb-nav .current { color: var(--secondary); font-weight: 700; }

/* Sidebar Form */
.sidebar-form { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.1); border: 1px solid var(--border); border-top: 5px solid var(--secondary); position: sticky; top: 100px; }
.sidebar-form h3 { font-size: 22px; color: var(--primary); margin-bottom: 20px; text-transform: uppercase; font-weight: 800; }
.sidebar-form .form-group { margin-bottom: 15px; }

/* Inline CTA (mid-content) */
.inline-cta { background: linear-gradient(135deg, var(--primary), #004d2a); color: white; padding: 30px 35px; border-radius: 12px; margin: 40px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.inline-cta p { font-size: 18px; font-weight: 700; margin: 0; color: white; }
.inline-cta .btn-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--secondary); color: white; padding: 14px 28px; border-radius: 6px; font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; text-decoration: none; white-space: nowrap; }
.inline-cta .btn-cta:hover { background: #9d792d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(179,139,54,0.4); }

/* Hub Page — Service Card Grid */
.hub-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin: 35px 0; }
.hub-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 28px; transition: 0.3s; text-decoration: none; display: block; border-top: 4px solid var(--secondary); }
.hub-card:hover { box-shadow: 0 12px 35px rgba(0,0,0,0.1); transform: translateY(-4px); border-top-color: var(--primary); }
.hub-card .hub-emoji { font-size: 32px; margin-bottom: 12px; display: block; }
.hub-card h3 { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 800; }
.hub-card p { color: var(--text-main); font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.hub-card .hub-link { color: var(--secondary); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* Scroll Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Layout Grid */
.inner-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .inner-grid { grid-template-columns: 2.5fr 1fr; gap: 50px; } }

/* Content Blocks */
.content-block { margin-bottom: 50px; }
.content-block h2 { color: var(--primary); font-size: 28px; margin-bottom: 25px; position: relative; padding-bottom: 10px; font-weight: 800; }
.content-block h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background: var(--secondary); }
.content-block h3 { color: var(--primary); font-size: 22px; margin-bottom: 15px; margin-top: 30px; font-weight: 700; }
.content-block p { font-size: 16px; color: var(--text-main); line-height: 1.8; margin-bottom: 20px; }

/* Step Cards */
.step-card { background: var(--white); border: 1px solid var(--border); padding: 30px; border-radius: 12px; margin-bottom: 25px; transition: 0.3s; border-left: 5px solid var(--primary); }
.step-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateX(5px); }
.step-card h4 { color: var(--primary); font-size: 20px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.step-card .step-num { background: var(--secondary); color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }

/* Benefits Grid */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 30px 0; }
.benefit-item { background: var(--light-bg); padding: 20px; border-radius: 8px; border-top: 3px solid var(--secondary); }
.benefit-item h5 { color: var(--primary); margin-bottom: 10px; font-size: 16px; }

/* Data Tables */
.data-table { width: 100%; border-collapse: collapse; margin: 25px 0; background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); font-size: 14px; }
.data-table th { background: var(--primary); color: white; text-align: left; padding: 15px; }
.data-table td { padding: 15px; border-bottom: 1px solid var(--border); }
.data-table tr:nth-child(even) { background: #f9f9f9; }
.data-table tr:hover { background: #f0f7f3; }

/* Info Boxes */
.note-box { background: #fff8e1; border-left: 4px solid #ffc107; padding: 20px; border-radius: 4px; margin: 25px 0; }
.warning-box { background: #fff5f5; border-left: 4px solid #f56565; padding: 20px; border-radius: 4px; margin: 25px 0; }

/* Checklists */
.check-list { margin: 20px 0; }
.check-list li { padding: 8px 0; font-size: 15px; color: var(--text-main); display: flex; align-items: flex-start; gap: 10px; }
.check-list li::before { content: '✅'; flex-shrink: 0; }

/* Highlight Stats Box */
.highlight-box { background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%); border: 1px solid var(--border); padding: 30px; border-radius: 12px; margin: 30px 0; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; text-align: center; }
.highlight-box .stat h4 { font-size: 14px; color: var(--text-main); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.highlight-box .stat p { font-size: 28px; font-weight: 800; color: var(--primary); margin: 0; }

/* Pathway Cards */
.pathway-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 30px; margin-bottom: 25px; transition: 0.3s; position: relative; overflow: hidden; }
.pathway-card::before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--secondary); }
.pathway-card:hover { box-shadow: 0 12px 35px rgba(0,0,0,0.1); transform: translateY(-3px); }
.pathway-card h3 { color: var(--primary); font-size: 22px; margin: 0 0 15px 0; font-weight: 800; }
.pathway-card .tag { display: inline-block; background: var(--secondary); color: white; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pathway-card .visa-tag { display: inline-block; background: var(--secondary); color: white; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.pathway-card .card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 700; font-size: 15px; transition: 0.3s; text-decoration: none; }
.pathway-card .card-link:hover { color: var(--secondary); gap: 12px; }

/* Country Chip Grid (Schengen) */
.country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin: 25px 0; }
.country-chip { background: var(--light-bg); padding: 12px 15px; border-radius: 8px; text-align: center; font-size: 14px; font-weight: 600; color: var(--primary); border: 1px solid var(--border); }

/* Country Cards (Europe Work/Study) */
.country-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 30px; margin-bottom: 25px; transition: 0.3s; position: relative; overflow: hidden; }
.country-card::before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--secondary); }
.country-card:hover { box-shadow: 0 12px 35px rgba(0,0,0,0.1); transform: translateY(-3px); }
.country-card h3 { color: var(--primary); font-size: 22px; margin: 0 0 15px 0; font-weight: 800; }
.country-card .tag { display: inline-block; background: var(--secondary); color: white; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }

/* Disclaimer Box */
.disclaimer { background: #fff5f5; border-left: 4px solid #f56565; padding: 20px; margin-top: 40px; border-radius: 4px; }
.disclaimer p { margin-bottom: 0; font-weight: 700; color: #c53030; }

/* Interview Q&A */
.interview-qa { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 20px; margin-bottom: 15px; }
.interview-qa .q { color: var(--primary); font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.interview-qa .a { color: var(--text-main); font-size: 14px; margin-bottom: 0; font-style: italic; }

/* Breadcrumbs */
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.breadcrumb-nav a { color: rgba(255,255,255,0.8); text-decoration: none; transition: 0.3s; }
.breadcrumb-nav a:hover { color: var(--secondary); }
.breadcrumb-nav span { color: rgba(255,255,255,0.6); }
.breadcrumb-nav .current { color: white; font-weight: 600; }

/* FAQ Section */
.faq-section { margin-top: 30px; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 15px; overflow: hidden; transition: 0.3s; }
.faq-item:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.faq-question { padding: 20px 25px; background: var(--white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--primary); font-size: 16px; }
.faq-question::after { content: '+'; font-size: 22px; font-weight: 800; color: var(--secondary); transition: 0.3s; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; font-size: 15px; line-height: 1.7; color: var(--text-main); }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 25px 20px; }

/* Related Services */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 25px; }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 25px; text-align: center; transition: 0.3s; text-decoration: none; }
.related-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); transform: translateY(-3px); border-color: var(--secondary); }
.related-card h4 { color: var(--primary); font-size: 16px; margin-bottom: 8px; }
.related-card p { color: var(--text-main); font-size: 13px; margin: 0; }

/* Last Updated Badge */
.last-updated { display: inline-block; background: var(--light-bg); color: var(--text-main); font-size: 13px; padding: 5px 12px; border-radius: 20px; margin-bottom: 25px; border: 1px solid var(--border); }

/* Content Lists (hub pages) */
.content-block ul { margin-bottom: 20px; padding-left: 20px; }
.content-block ul li { margin-bottom: 10px; position: relative; list-style: none; padding-left: 25px; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 50px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.info-box { background: var(--light-bg); padding: 40px; border-radius: 8px; border-left: 4px solid var(--secondary); margin-bottom: 30px; }
.info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.info-icon { font-size: 24px; }
.info-text h4 { font-size: 18px; margin-bottom: 5px; color: var(--primary); }
.info-text p { color: var(--text-main); font-size: 16px; }

/* Blog Index */
.blog-hero { padding: 72px 0; color: #fff; }
.blog-hero h1 { color: #fff; font-size: 42px; max-width: 820px; line-height: 1.2; margin: 0 0 16px; }
.blog-kicker { margin: 0 0 12px; color: #f5d990; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.blog-hero-text { max-width: 760px; font-size: 18px; line-height: 1.7; margin: 0; }
.blog-toolbar { display: grid; grid-template-columns: 1.4fr 2fr; gap: 18px; align-items: start; margin-bottom: 28px; }
.blog-summary { background: #f8fbf9; border: 1px solid var(--border); border-radius: 8px; padding: 18px; }
.blog-summary strong { display: block; color: var(--primary); font-size: 34px; line-height: 1; margin-bottom: 6px; }
.blog-summary span { color: var(--text-main); font-weight: 700; }
.blog-filter-panel { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 18px; box-shadow: 0 6px 18px rgba(0,0,0,0.04); }
.blog-filter-row { display: grid; grid-template-columns: 1fr 190px auto auto; gap: 10px; align-items: center; }
.blog-filter-row input, .blog-filter-row select { min-height: 42px; border: 1px solid var(--border); border-radius: 6px; padding: 8px 10px; font: inherit; }
.blog-filter-row button, .blog-filter-row a { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 9px 16px; border-radius: 6px; border: 0; font-weight: 800; cursor: pointer; text-decoration: none; }
.blog-filter-row button { background: var(--primary); color: #fff; }
.blog-filter-row a { background: #eef2f0; color: var(--dark); }
.category-strip { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.category-strip a { border: 1px solid var(--border); border-radius: 999px; padding: 7px 12px; color: var(--text-main); font-size: 13px; font-weight: 700; text-decoration: none; }
.category-strip a.active, .category-strip a:hover { background: var(--secondary); border-color: var(--secondary); color: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.blog-card { display: flex; flex-direction: column; min-height: 100%; background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.05); transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); }
.blog-card-img { height: 190px; background-size: cover; background-position: center; border-bottom: 4px solid var(--secondary); }
.blog-card-body { display: flex; flex-direction: column; flex: 1; padding: 22px; }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 12px; color: var(--primary); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.blog-chip { display: inline-flex; background: #eef7f2; color: var(--primary); border-radius: 999px; padding: 4px 9px; }
.blog-card h2 { font-size: 20px; line-height: 1.35; margin: 0 0 12px; }
.blog-card p { color: var(--text-main); font-size: 15px; line-height: 1.7; margin: 0 0 18px; }
.blog-card-links { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid #eef2f0; padding-top: 16px; }
.read-link { color: var(--primary); font-weight: 800; }
.service-link { color: var(--secondary); font-size: 13px; font-weight: 800; text-align: right; }
.empty-blogs { text-align: center; padding: 50px 20px; border: 1px dashed var(--border); border-radius: 8px; color: var(--text-main); }

/* Blog Article (Single) */
.reading-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--secondary), #f5d990); z-index: 9999; transition: width 0.1s linear; border-radius: 0 2px 2px 0; }
.article-hero { padding: 72px 0; color: #fff; }
.article-hero .container { max-width: 980px; }
.article-back { display: inline-flex; margin-bottom: 18px; color: #f5d990; font-weight: 800; text-decoration: none; transition: 0.3s; }
.article-back:hover { color: #fff; gap: 4px; }
.article-category { display: inline-flex; margin-left: 12px; background: var(--secondary); color: #fff; border-radius: 999px; padding: 6px 13px; font-size: 13px; font-weight: 800; }
.article-hero h1 { color: #fff; font-size: 44px; line-height: 1.18; max-width: 900px; margin: 0 0 18px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px; color: rgba(255,255,255,0.9); font-weight: 700; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 34px; align-items: start; }
.article-main { min-width: 0; }
.article-featured { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 10px; margin-bottom: 28px; box-shadow: 0 12px 28px rgba(0,0,0,0.1); }
.article-content { font-size: 18px; line-height: 1.85; color: var(--text-main); }
.article-content p { margin: 0 0 22px; }
.article-content h2 { color: var(--primary); font-size: 27px; line-height: 1.3; margin: 38px 0 16px; scroll-margin-top: 80px; }

/* Table of Contents */
.toc-box { background: linear-gradient(135deg, #f8fbf9 0%, #eef7f2 100%); border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin-bottom: 32px; }
.toc-header { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 18px; color: var(--primary); }
.toc-icon { font-size: 20px; }
.toc-list { margin: 0; padding-left: 20px; }
.toc-list li { padding: 5px 0; font-size: 15px; line-height: 1.5; }
.toc-list li a { color: var(--primary); text-decoration: none; font-weight: 600; transition: 0.3s; border-bottom: 1px dashed transparent; }
.toc-list li a:hover { color: var(--secondary); border-bottom-color: var(--secondary); }

/* Reviewed Notice */
.reviewed-notice { font-size: 15px; color: var(--text-main); background: #f8fbf9; border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.reviewed-icon { flex-shrink: 0; font-size: 18px; }

/* Takeaway */
.takeaway { background: linear-gradient(135deg, #f8fbf9 0%, #eef7f2 100%); border-left: 5px solid var(--secondary); border-radius: 8px; padding: 22px; margin: 30px 0; color: var(--dark); font-weight: 700; position: relative; }
.takeaway-label { display: block; font-size: 13px; color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; font-weight: 800; }

/* Pull Quote */
.pull-quote { border: none; margin: 40px 0; padding: 28px 32px 28px 48px; background: linear-gradient(135deg, rgba(0,104,56,0.04), rgba(179,139,54,0.06)); border-radius: 12px; font-size: 22px; line-height: 1.6; font-weight: 700; color: var(--primary); font-style: italic; position: relative; }
.pq-mark { position: absolute; left: 16px; top: 12px; font-size: 48px; color: var(--secondary); opacity: 0.5; font-style: normal; line-height: 1; }

/* Scenario Box */
.scenario-box { background: #fff8e1; border: 1px solid #ffe082; border-radius: 10px; padding: 22px 24px; margin: 36px 0; }
.scenario-label { display: block; font-size: 13px; font-weight: 800; color: #e65100; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.scenario-box p { margin: 0; font-size: 15px; line-height: 1.7; color: #5d4037; }

/* Related Reading Box */
.related-reading-box { background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%); border-left: 4px solid var(--primary); border-radius: 0 10px 10px 0; padding: 22px 26px; margin: 36px 0; }
.related-reading-box h3 { margin: 0 0 14px; font-size: 16px; font-weight: 800; color: var(--primary); }
.related-reading-box p { margin: 0 0 10px; font-size: 14.5px; line-height: 1.7; color: #2e4a3a; }
.related-reading-box p:last-child { margin-bottom: 0; }
.related-reading-box a { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.related-reading-box a:hover { color: var(--secondary); }

/* In-text internal links */
.article-content p a { color: var(--primary); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(0, 104, 56, 0.3); transition: border-color 0.2s, color 0.2s; }
.article-content p a:hover { color: var(--secondary); border-bottom-color: var(--secondary); }

/* Article Checklist */
.article-checklist { padding-left: 0; margin: 0 0 28px; list-style: none; }
.article-checklist li { padding: 10px 0 10px 34px; position: relative; margin-bottom: 4px; border-bottom: 1px solid #f0f2f1; }
.article-checklist li:last-child { border-bottom: 0; }
.article-checklist li::before { content: '✓'; position: absolute; left: 0; top: 10px; width: 24px; height: 24px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }

/* Article List */
.article-list { padding-left: 22px; margin: 0 0 28px; list-style: disc; }
.article-list li { margin-bottom: 10px; }
.article-list a { color: var(--primary); font-weight: 700; transition: 0.3s; }
.article-list a:hover { color: var(--secondary); }

/* FAQ Accordion */
.faq-accordion { margin-bottom: 28px; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 12px; overflow: hidden; transition: 0.3s; }
.faq-item:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.faq-question { width: 100%; text-align: left; padding: 18px 48px 18px 22px; background: var(--white); border: 0; cursor: pointer; font: inherit; font-weight: 700; color: var(--primary); font-size: 16px; position: relative; }
.faq-question::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 22px; font-weight: 800; color: var(--secondary); transition: 0.3s; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer p { padding: 0 22px; font-size: 15px; line-height: 1.7; color: var(--text-main); margin: 0; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-item.active .faq-answer p { padding: 0 22px 18px; }

/* CTA Panel */
.cta-panel { background: linear-gradient(135deg, var(--primary), #004d2a); color: #fff; border-radius: 12px; padding: 32px; margin-top: 40px; }
.cta-panel h2 { color: #fff; margin-top: 0; font-size: 24px; }
.cta-panel p { color: rgba(255,255,255,0.9); font-size: 16px; }
.cta-panel a { display: inline-flex; margin-top: 8px; background: var(--secondary); color: #fff; padding: 12px 22px; border-radius: 6px; font-weight: 800; text-decoration: none; transition: 0.3s; }
.cta-panel a:hover { background: #9d792d; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(179,139,54,0.4); }

/* Related Grid */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 22px; text-decoration: none; transition: 0.3s; display: block; }
.related-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); transform: translateY(-3px); border-color: var(--secondary); }
.related-card span { display: block; font-size: 12px; color: var(--secondary); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.related-card strong { display: block; font-size: 15px; color: var(--primary); line-height: 1.4; }

/* Sidebar */
.article-sidebar { position: sticky; top: 105px; display: grid; gap: 16px; }
.side-panel { border: 1px solid var(--border); border-radius: 10px; padding: 20px; background: var(--white); box-shadow: 0 8px 22px rgba(0,0,0,0.04); }
.side-panel h3 { font-size: 17px; margin: 0 0 12px; color: var(--primary); font-weight: 800; }
.side-panel a { color: var(--primary); font-weight: 700; text-decoration: none; transition: 0.3s; }
.side-panel a:hover { color: var(--secondary); }
.side-panel ul { list-style: none; padding: 0; margin: 0; }
.side-panel li { padding: 10px 0; border-bottom: 1px solid #eef2f0; }
.side-panel li:last-child { border-bottom: 0; }
.side-link-desc { font-size: 13px; color: var(--text-main); margin-top: 3px; }

/* Author Panel */
.author-panel { border-top: 4px solid var(--secondary); }
.author-badge { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.author-badge strong { display: block; color: var(--dark); font-size: 15px; }
.author-badge span { display: block; font-size: 12px; color: var(--text-main); }
.author-bio { font-size: 13px; line-height: 1.6; color: var(--text-main); margin: 0; }

/* Sidebar CTA */
.side-cta { background: linear-gradient(135deg, #f8fbf9 0%, #eef7f2 100%); border: 1px solid var(--border); }
.side-cta h3 { color: var(--primary); }
.side-cta p { font-size: 14px; color: var(--text-main); margin: 0 0 14px; line-height: 1.6; }
.side-cta-btn { display: inline-flex; background: var(--primary); color: #fff !important; padding: 10px 18px; border-radius: 6px; font-size: 14px; font-weight: 800; text-decoration: none !important; transition: 0.3s; }
.side-cta-btn:hover { background: #004d2a; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,104,56,0.3); }

/* Tag Row */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row span { background: #eef7f2; color: var(--primary); border-radius: 999px; padding: 6px 10px; font-size: 13px; font-weight: 800; }

/* Homepage — Hero */
.hero { position: relative; padding: 80px 0; min-height: 600px; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 30, 15, 0.65); }
.hero .container { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.hero-text { color: var(--white); flex: 1; }
.hero-text h1 { font-size: 48px; color: var(--white); line-height: 1.2; margin-bottom: 20px; text-transform: uppercase; }
.hero-text h1 span { color: var(--secondary); }
.hero-text p { font-size: 18px; margin-bottom: 30px; font-weight: 500; max-width: 600px; }
.hero-features { display: flex; gap: 20px; margin-bottom: 30px; }
.hf-item { display: flex; align-items: center; gap: 10px; font-weight: 600; background: rgba(255,255,255,0.1); padding: 10px 15px; border-radius: 4px; border-left: 3px solid var(--secondary); }

/* Homepage — Lead Form */
.lead-form-container { background: var(--white); width: 400px; border-radius: 8px; box-shadow: 0 15px 35px rgba(0,0,0,0.2); overflow: hidden; flex-shrink: 0; }
.form-header { background: var(--primary); color: var(--white); padding: 20px; text-align: center; border-bottom: 4px solid var(--secondary); }
.form-header h3 { color: var(--white); font-size: 20px; text-transform: uppercase; margin-bottom: 5px; }
.form-header p { font-size: 13px; font-weight: 500; }
.lead-form { padding: 25px; }

/* Homepage — Destinations */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; text-align: center; transition: 0.3s; }
.dest-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); transform: translateY(-5px); border-color: var(--secondary); }
.dest-img { height: 160px; background-size: cover; background-position: center; position: relative; }
.dest-content { padding: 20px; }
.dest-content h3 { font-size: 20px; margin-bottom: 10px; color: var(--primary); }
.dest-content a { color: var(--secondary); font-weight: 600; font-size: 14px; text-transform: uppercase; }

/* Homepage — Services */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-box { display: flex; flex-direction: column; text-align: center; gap: 15px; padding: 25px 20px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; transition: 0.3s; }
.service-box:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-color: var(--secondary); transform: translateY(-5px); }
.sb-icon { font-size: 45px; line-height: 1; margin-bottom: 10px; }
.sb-content h3 { font-size: 19px; margin-bottom: 12px; color: var(--primary); font-weight: 800; }
.sb-content p { font-size: 14px; margin-bottom: 18px; line-height: 1.5; color: var(--text-main); }
.sb-content a { font-size: 13px; font-weight: 800; color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; }

/* Homepage — Process */
.process-section { background: var(--light-bg); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.process-step { position: relative; }
.step-number { width: 60px; height: 60px; background: var(--primary); color: var(--white); font-size: 24px; font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 4px solid var(--secondary); }
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--text-main); }

/* Homepage — Trust Bar */
.trust-bar { background: var(--primary); padding: 60px 0; color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.trust-item h3 { color: var(--secondary); font-size: 40px; margin-bottom: 10px; }
.trust-item p { font-weight: 600; font-size: 16px; text-transform: uppercase; }

/* Homepage — Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testi-card { background: var(--white); padding: 30px; border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.testi-text { font-style: italic; margin-bottom: 20px; color: var(--text-main); }
.testi-author { font-weight: bold; color: var(--primary); }
.testi-visa { font-size: 13px; color: var(--secondary); }

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .highlight-box { flex-direction: column; align-items: center; }
    .country-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: 1fr; }
    .data-table { font-size: 13px; }
    .data-table th, .data-table td { padding: 10px; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 32px; }
    .dest-grid, .services-grid, .process-grid, .trust-grid, .testi-grid { grid-template-columns: 1fr; }
    .hero-features { flex-direction: column; }
}
@media (max-width: 860px) {
    .blog-hero h1 { font-size: 32px; }
    .blog-toolbar, .blog-filter-row { grid-template-columns: 1fr; }
    .service-link { text-align: left; }
    .blog-card-links { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 960px) {
    .article-hero h1 { font-size: 33px; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .pull-quote { font-size: 19px; padding: 22px 24px 22px 40px; }
    .pq-mark { left: 12px; font-size: 36px; }
    .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
    .hero .container { flex-direction: column; text-align: center; }
    .hero-text { order: 1; }
    .hero-features { justify-content: center; }
    .lead-form-container { order: 2; width: 100%; max-width: 500px; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid, .process-grid, .trust-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Page Header — breadcrumb centering */
.page-header .breadcrumb-nav { justify-content: center; }

/* Mobile Sticky Action Bar (moved from inline) */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--white); box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 2000; }
.msb-inner { display: flex; }
.msb-btn { flex: 1; padding: 15px 0; text-align: center; font-weight: bold; text-decoration: none; font-size: 16px; color: var(--white); }
.msb-call { background: var(--primary); }
.msb-wa { background: #25D366; }
@media (max-width: 768px) {
    .mobile-sticky-bar { display: block; }
    body { padding-bottom: 50px; }
}

/* Floating WhatsApp Button (moved from inline) */
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; z-index: 1500; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: 0.3s; cursor: pointer; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
.whatsapp-float .tooltip { position: absolute; right: 70px; background: #333; color: white; padding: 8px 14px; border-radius: 6px; font-size: 13px; white-space: nowrap; opacity: 0; transition: 0.3s; pointer-events: none; }
.whatsapp-float:hover .tooltip { opacity: 1; }
@media (max-width: 768px) { .whatsapp-float { display: none; } }

/* Footer Social Links (moved from inline) */
.footer-social { text-align: center; margin-bottom: 25px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); margin: 0 6px; color: #ccc; font-size: 18px; transition: 0.3s; }
.footer-social a:hover { background: var(--secondary); color: var(--white); transform: translateY(-3px); }

/* Gallery Photo Grid */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; }
.gallery-item { position: relative; border-radius: 10px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.08); border: 1px solid var(--border); transition: 0.3s; cursor: pointer; }
.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { padding: 16px; background: var(--white); }
.gallery-caption h4 { font-size: 15px; color: var(--primary); margin-bottom: 4px; }
.gallery-caption p { font-size: 13px; color: var(--text-main); margin: 0; }
.gallery-tag { display: inline-block; background: var(--secondary); color: white; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; position: absolute; top: 12px; left: 12px; z-index: 2; }
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 200px; }
}

/* ===========================================
   Google Reviews Section
   =========================================== */

/* Rating Badge */
.google-rating-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 28px;
    margin-bottom: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    flex-wrap: wrap;
    gap: 15px;
}
.grb-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.grb-score {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.grb-stars {
    display: flex;
    gap: 2px;
    margin: 2px 0 4px;
}
.grb-stars .star {
    color: #FBBC05;
    font-size: 18px;
}
.grb-stars .star.half {
    background: linear-gradient(90deg, #FBBC05 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.grb-count {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}
.grb-write-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    color: #4285F4;
    border: 2px solid #4285F4;
    padding: 10px 22px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.grb-write-btn:hover {
    background: #4285F4;
    color: white;
    box-shadow: 0 4px 15px rgba(66,133,244,0.35);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Review Card */
.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
    letter-spacing: 1px;
}
.reviewer-info {
    flex: 1;
    min-width: 0;
}
.reviewer-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}
.review-stars {
    color: #FBBC05;
    font-size: 14px;
    letter-spacing: 1px;
}
.review-date {
    font-size: 12px;
    color: #999;
}
.review-google-icon {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.review-card:hover .review-google-icon {
    opacity: 1;
}

/* Review Text */
.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 14px;
    flex: 1;
}

/* Review Tag */
.review-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0,104,56,0.08), rgba(0,104,56,0.15));
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

/* View All CTA */
.reviews-cta {
    text-align: center;
    margin-top: 35px;
}
.reviews-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--border);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.reviews-google-btn:hover {
    border-color: #4285F4;
    box-shadow: 0 6px 20px rgba(66,133,244,0.2);
    transform: translateY(-2px);
}

/* Reviews Responsive */
@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .google-rating-badge { flex-direction: column; align-items: flex-start; }
    .grb-score { font-size: 36px; }
}

