/* Blue Dart Packers and Movers - Shared Stylesheet */
:root {
  --blue: #0056a7; --blue-dark: #003d7a; --blue-light: #e8f1f9; --blue-lighter: #f4f8fc;
  --green: #00a651; --green-dark: #008040; --green-light: #e8f5e9;
  --white: #ffffff; --off-white: #f8fafc; --ink: #1a1a2e;
  --text: #333333; --text-light: #666666; --text-lighter: #888888;
  --border: #e5e7eb; --yellow: #ffc107;
  --shadow-sm: 0 2px 8px rgba(0, 86, 167, 0.06);
  --shadow: 0 6px 20px rgba(0, 86, 167, 0.08);
  --shadow-md: 0 12px 32px rgba(0, 86, 167, 0.1);
  --shadow-blue: 0 8px 24px rgba(0, 86, 167, 0.25);
  --shadow-green: 0 8px 24px rgba(0, 166, 81, 0.25);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', system-ui, sans-serif; background: var(--off-white); color: var(--text); line-height: 1.6; font-size: 15.5px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; color: var(--ink); font-weight: 700; line-height: 1.25; }
a { color: inherit; text-decoration: none; }

/* TOP BAR */
.topbar { background: var(--blue-dark); color: #fff; padding: 8px 0; font-size: 13px; }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.9); }
.topbar-left a { color: #fff; } .topbar-left a:hover { color: var(--yellow); }
.topbar-right { display: flex; gap: 8px; align-items: center; }
.topbar-btn { padding: 5px 14px; border-radius: 4px; font-size: 12.5px; font-weight: 500; font-family: 'Poppins', sans-serif; border: 1px solid rgba(255,255,255,0.25); color: #fff; }
.topbar-btn:hover { background: rgba(255,255,255,0.12); }
.topbar-btn.track { background: var(--green); border-color: var(--green); }

/* HEADER */
.header { background: #fff; border-bottom: 3px solid var(--green); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 14px 24px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 52px; height: 52px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.03em; box-shadow: var(--shadow-blue); position: relative; }
.logo-mark::after { content: ''; position: absolute; bottom: -3px; right: -3px; width: 16px; height: 16px; background: var(--green); border: 2px solid #fff; border-radius: 50%; }
.logo-text { font-family: 'Poppins', sans-serif; }
.logo-name { font-size: 20px; font-weight: 800; color: var(--blue); letter-spacing: -0.02em; line-height: 1; }
.logo-tag { font-size: 11.5px; color: var(--green); font-weight: 600; margin-top: 3px; letter-spacing: 0.03em; }
.nav { display: flex; gap: 28px; justify-content: center; align-items: center; }
.nav > a, .nav > .nav-item > a { color: var(--ink); font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 14.5px; padding: 6px 2px; border-bottom: 2px solid transparent; transition: all 0.2s; display: inline-flex; align-items: center; gap: 4px; }
.nav > a:hover, .nav > a.active, .nav > .nav-item > a:hover, .nav > .nav-item.active > a { color: var(--blue); border-bottom-color: var(--green); }
.nav-item { position: relative !important; }
.nav-item .caret { font-size: 10px; color: var(--text-lighter); transition: transform 0.2s; }
.nav-item:hover .caret { transform: rotate(180deg); color: var(--blue); }
.dropdown-menu { position: absolute !important; top: 100% !important; left: 50% !important; transform: translateX(-50%) translateY(8px) !important; min-width: 260px !important; background: #fff !important; border: 1px solid var(--border) !important; border-radius: 10px !important; box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06) !important; padding: 10px 0 !important; opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; transition: all 0.25s ease !important; z-index: 1000 !important; display: block !important; }
.dropdown-menu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-item:hover .dropdown-menu { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; transform: translateX(-50%) translateY(0) !important; }
.dropdown-menu a { display: block !important; padding: 9px 20px !important; font-family: 'Poppins', sans-serif !important; font-size: 14px !important; color: var(--ink) !important; font-weight: 500 !important; border-bottom: none !important; transition: all 0.15s !important; white-space: nowrap !important; }
.dropdown-menu a:hover { background: #f0f7ff !important; color: var(--blue) !important; padding-left: 24px !important; border-bottom: none !important; }
.dropdown-menu .dropdown-divider { height: 1px; background: var(--border); margin: 8px 0; }
.dropdown-menu .view-all { color: var(--green) !important; font-weight: 600 !important; }
.dropdown-menu .view-all:hover { background: #ecfdf3 !important; color: var(--green-dark) !important; }
.header-cta { display: flex; gap: 10px; align-items: center; }
.phone-block { text-align: right; padding-right: 6px; border-right: 2px solid var(--border); margin-right: 2px; }
.phone-lbl { font-size: 11px; color: var(--text-lighter); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.phone-num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; color: var(--blue); line-height: 1.1; margin-top: 1px; }
.phone-num:hover { color: var(--green); }
.btn-primary { background: var(--green); color: #fff; padding: 11px 22px; border-radius: 6px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13.5px; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: all 0.25s; box-shadow: var(--shadow-green); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; padding: 70px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,166,81,0.22) 0%, transparent 65%); }
.page-hero::after { content: ''; position: absolute; bottom: -150px; left: -150px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%); }
.page-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; text-align: center; }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 18px; font-family: 'Poppins', sans-serif; font-weight: 500; }
.breadcrumb a { color: rgba(255,255,255,0.85); } .breadcrumb a:hover { color: #4ade80; }
.breadcrumb span { color: rgba(255,255,255,0.5); }
.page-hero h1 { color: #fff; font-size: clamp(32px, 4.5vw, 54px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px; max-width: 900px; margin-left: auto; margin-right: auto; }
.page-hero h1 .green { color: #4ade80; } .page-hero h1 .yellow { color: var(--yellow); }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.92); max-width: 720px; margin: 0 auto 24px; line-height: 1.55; }
.page-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-btn-primary { background: var(--green); color: #fff; padding: 13px 26px; border-radius: 6px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; box-shadow: 0 8px 24px rgba(0, 166, 81, 0.4); }
.hero-btn-primary:hover { background: #00c25f; transform: translateY(-2px); }
.hero-btn-ghost { background: rgba(255, 255, 255, 0.1); color: #fff; padding: 13px 26px; border-radius: 6px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14.5px; border: 1.5px solid rgba(255, 255, 255, 0.4); display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; backdrop-filter: blur(8px); }
.hero-btn-ghost:hover { background: rgba(255, 255, 255, 0.2); border-color: #fff; }

/* ARTICLE */
.article { background: #fff; }
.article-wrap { max-width: 1100px; margin: 0 auto; padding: 70px 24px; }
.article-content h2 { font-size: clamp(24px, 2.8vw, 34px); color: var(--ink); margin: 40px 0 18px; letter-spacing: -0.02em; font-weight: 800; padding-bottom: 12px; border-bottom: 2px solid var(--blue-light); position: relative; }
.article-content h2::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 60px; height: 2px; background: var(--green); }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-size: clamp(19px, 2vw, 23px); color: var(--blue); margin: 28px 0 12px; font-weight: 700; letter-spacing: -0.01em; }
.article-content p { font-size: 15.5px; color: var(--text); line-height: 1.75; margin-bottom: 16px; }
.article-content p strong { color: var(--blue); font-weight: 700; }
.article-content p em { color: var(--green); font-style: normal; font-weight: 600; }
.article-content ul, .article-content ol { margin: 14px 0 18px 24px; padding-left: 12px; }
.article-content li { font-size: 15.5px; color: var(--text); line-height: 1.7; margin-bottom: 8px; }
.article-content ul li::marker { color: var(--green); font-size: 18px; }
.article-content ol li::marker { color: var(--blue); font-weight: 700; }

.highlight-box { background: linear-gradient(135deg, var(--blue-light) 0%, var(--green-light) 100%); border-left: 4px solid var(--green); border-radius: 10px; padding: 20px 24px; margin: 24px 0; font-size: 15px; color: var(--ink); line-height: 1.65; }
.highlight-box strong { color: var(--blue); font-weight: 700; }

.check-list { list-style: none !important; margin: 16px 0 20px !important; padding-left: 0 !important; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.check-list li { position: relative; padding-left: 30px; font-size: 14.5px; color: var(--text); line-height: 1.55; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; background: var(--green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }

.pricing-table-wrap { margin: 24px 0; overflow-x: auto; border-radius: 12px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.pricing-table-wrap table { width: 100%; border-collapse: collapse; background: #fff; }
.pricing-table-wrap thead { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; }
.pricing-table-wrap th { padding: 14px 16px; text-align: left; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13.5px; }
.pricing-table-wrap td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
.pricing-table-wrap tr:nth-child(even) td { background: var(--blue-lighter); }
.pricing-table-wrap tr:hover td { background: var(--green-light); }
.pricing-table-wrap td:first-child { font-weight: 600; color: var(--ink); }
.pricing-table-wrap td .price { color: var(--green); font-weight: 600; white-space: nowrap; }

/* FAQ */
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: 12px; margin-bottom: 14px; overflow: hidden; transition: all 0.3s; }
.faq-item:hover { border-color: var(--blue-light); }
.faq-item.active { border-color: var(--blue); box-shadow: var(--shadow); }
.faq-question { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15.5px; color: var(--ink); user-select: none; transition: color 0.2s; }
.faq-item:hover .faq-question, .faq-item.active .faq-question { color: var(--blue); }
.faq-q-text { display: flex; align-items: center; gap: 14px; flex: 1; }
.faq-q-num { width: 32px; height: 32px; background: var(--blue-light); color: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; transition: all 0.3s; }
.faq-item.active .faq-q-num { background: var(--blue); color: #fff; }
.faq-toggle { width: 32px; height: 32px; background: var(--green-light); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; font-size: 18px; font-weight: 700; }
.faq-item.active .faq-toggle { background: var(--green); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 24px 22px 70px; color: var(--text-light); font-size: 14.5px; line-height: 1.7; }
.faq-answer-inner strong { color: var(--blue); font-weight: 600; }

/* ENQUIRY */
.enquiry-inline { background: linear-gradient(135deg, var(--blue-light) 0%, var(--green-light) 100%); border-radius: 16px; padding: 40px; margin: 36px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.enquiry-inline-info h3 { font-size: 26px; color: var(--ink); margin-bottom: 10px; font-weight: 800; letter-spacing: -0.02em; }
.enquiry-inline-info h3 span { color: var(--blue); }
.enquiry-inline-info p { color: var(--text); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.enquiry-inline-info ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.enquiry-inline-info li { padding-left: 26px; position: relative; margin-bottom: 8px; font-size: 14px; color: var(--text); }
.enquiry-inline-info li::before { content: '✓'; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; background: var(--green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.enquiry-form-inline { background: #fff; border-radius: 12px; padding: 24px; box-shadow: var(--shadow); }
.enquiry-form-inline h4 { font-size: 18px; color: var(--ink); margin-bottom: 14px; font-weight: 700; }
.enq-form-grp { margin-bottom: 12px; }
.enq-form-grp input, .enq-form-grp select, .enq-form-grp textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'Roboto', sans-serif; font-size: 14px; color: var(--ink); transition: all 0.2s; background: #fff; outline: none; }
.enq-form-grp input:focus, .enq-form-grp select:focus, .enq-form-grp textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); }
.enq-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.enq-submit { width: 100%; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; padding: 13px; border-radius: 8px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14.5px; border: none; cursor: pointer; margin-top: 6px; transition: all 0.3s; }
.enq-submit:hover { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); transform: translateY(-2px); }

/* RELATED */
.related-services { background: var(--blue-lighter); }
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 70px 24px; }
.section-head { text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-label { display: inline-block; padding: 5px 14px; background: var(--green-light); color: var(--green-dark); border-radius: 100px; font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.03em; }
.section-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.section-title .blue { color: var(--blue); } .section-title .green { color: var(--green); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.related-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px 22px; transition: all 0.3s; text-align: center; display: block; }
.related-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow); }
.related-icon { width: 56px; height: 56px; margin: 0 auto 14px; background: linear-gradient(135deg, var(--blue-light) 0%, var(--green-light) 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--blue); transition: all 0.3s; }
.related-card:hover .related-icon { background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%); color: #fff; }
.related-icon svg { width: 26px; height: 26px; }
.related-card h4 { font-size: 16px; color: var(--ink); margin-bottom: 6px; font-weight: 700; }
.related-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; margin: 0; }

/* CTA */
.cta { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; padding: 70px 24px; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,166,81,0.3) 0%, transparent 65%); }
.cta-inner { max-width: 1000px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.cta h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; font-weight: 800; letter-spacing: -0.02em; }
.cta h2 span { color: #4ade80; }
.cta p { font-size: 17px; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 28px; line-height: 1.55; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { background: var(--ink); color: #fff; padding: 60px 24px 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .logo-mark { box-shadow: none; } .footer-brand .logo-name { color: #fff; }
.footer-desc { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.65; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 14px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.footer-contact:hover { color: var(--green); }
.footer-col h5 { color: var(--green); font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--green); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 13.5px; transition: all 0.2s; display: inline-flex; align-items: center; gap: 4px; }
.footer-col a:hover { color: var(--green); transform: translateX(3px); }
.footer-col a::before { content: '›'; color: var(--green); font-size: 14px; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,0.6); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,0.7); } .footer-bottom a:hover { color: var(--green); }
.disclaimer { background: rgba(0,0,0,0.3); padding: 12px 24px; text-align: center; font-size: 11.5px; color: rgba(255,255,255,0.55); font-style: italic; margin: 0 -24px; }

/* MOBILE STICKY */
.mobile-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: #fff; padding: 8px; border-top: 1px solid var(--border); box-shadow: 0 -8px 20px rgba(0,0,0,0.1); gap: 6px; }
.mobile-sticky a { flex: 1; padding: 12px; text-align: center; font-size: 13px; font-weight: 600; border-radius: 6px; font-family: 'Poppins', sans-serif; display: flex; align-items: center; justify-content: center; gap: 5px; }
.mobile-sticky a.call { background: var(--blue); color: #fff; }
.mobile-sticky a.whatsapp { background: #25D366; color: #fff; }
.mobile-sticky a.quote { background: var(--green); color: #fff; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; z-index: 50; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); transition: all 0.3s; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* MOBILE */
@media (max-width: 1000px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .enquiry-inline { grid-template-columns: 1fr; padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .check-list { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { padding-bottom: 80px; }
  .topbar-inner { flex-direction: column; gap: 8px; font-size: 12px; }
  .topbar-left { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .topbar-left span:nth-child(n+3) { display: none; }
  .header-inner { grid-template-columns: 1fr auto; gap: 12px; padding: 12px 16px; }
  .nav, .phone-block { display: none; }
  .logo-mark { width: 44px; height: 44px; font-size: 18px; }
  .logo-name { font-size: 16px; } .logo-tag { font-size: 10px; }
  .btn-primary { padding: 9px 16px; font-size: 12.5px; }
  .page-hero { padding: 48px 0; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 38px); }
  .page-hero-sub { font-size: 15px; }
  .page-hero-actions { flex-direction: column; padding: 0 16px; }
  .hero-btn-primary, .hero-btn-ghost { justify-content: center; }
  .section-wrap, .article-wrap { padding: 48px 16px; }
  .section-title { font-size: clamp(24px, 7vw, 32px); }
  .article-content h2 { font-size: clamp(22px, 6vw, 28px); margin: 30px 0 14px; }
  .article-content h3 { font-size: 18px; margin: 22px 0 10px; }
  .article-content p, .article-content li { font-size: 14.5px; }
  .highlight-box { padding: 16px 18px; }
  .related-grid { grid-template-columns: 1fr; }
  .enquiry-inline { padding: 26px 20px; }
  .enquiry-form-inline { padding: 20px; }
  .enq-form-row { grid-template-columns: 1fr; gap: 0; }
  .faq-question { padding: 16px 18px; font-size: 14px; gap: 12px; }
  .faq-q-num, .faq-toggle { width: 28px; height: 28px; }
  .faq-answer-inner { padding: 0 18px 18px 54px; font-size: 13.5px; }
  .cta { padding: 50px 16px; }
  .cta h2 { font-size: clamp(24px, 7vw, 32px); }
  .cta p { font-size: 15px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .footer { padding: 48px 16px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-sticky { display: flex; }
  .whatsapp-float { display: none; }
  .pricing-table-wrap th, .pricing-table-wrap td { padding: 10px 12px; font-size: 12.5px; }
}

/* =============================================================
   UX & ACCESSIBILITY ENHANCEMENTS
   ============================================================= */

/* Skip to main content link (for keyboard users & screen readers) */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
}
.skip-to-content:focus {
  left: 0;
  outline: 3px solid #fbbf24;
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Enhanced focus for form fields */
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 86, 167, 0.15) !important;
}

/* Minimum tap target size for mobile (WCAG 2.5.5) */
@media (max-width: 768px) {
  .nav a,
  .topbar-btn,
  button,
  .btn-primary,
  .hero-btn-primary,
  .hero-btn-ghost,
  .cta-btn-primary,
  .cta-btn-outline {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Footer links mobile tap size */
  .footer-col a,
  .footer-bottom-links a {
    display: inline-block;
    padding: 6px 0;
    min-height: 36px;
  }
  
  /* Ensure dropdown items are tappable */
  .dropdown-menu a {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
  }
}

/* Better form accessibility */
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.form-label .required {
  color: #dc2626;
  margin-left: 2px;
}

/* Ensure text is readable (WCAG AA contrast) */
.text-lighter-accessible {
  color: #666 !important; /* Darker than original for 4.5:1 contrast */
}

/* Loading states for better UX */
.btn-loading {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Screen reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Print styles */
@media print {
  .topbar,
  .mobile-sticky,
  .whatsapp-float,
  .cta,
  .header .btn-primary,
  nav,
  .enquiry-section {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  .article-content {
    max-width: 100%;
  }
}

/* Back-to-top button */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 86, 167, 0.3);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}
.back-to-top:focus-visible {
  outline: 3px solid #fbbf24;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 80px;
    right: 14px;
    width: 44px;
    height: 44px;
  }
}

/* Better readability on all text */
.article-content p,
.article-content li {
  line-height: 1.75;
}

/* High-contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary,
  .hero-btn-primary {
    border: 2px solid currentColor;
  }
  a {
    text-decoration: underline;
  }
}

/* ===== NEW LOGO IMAGE STYLING (added April 2026) ===== */
.logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.logo-img-footer {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: brightness(1.1) drop-shadow(0 0 2px rgba(255,255,255,0.2));
}
@media (max-width: 768px) {
  .logo-img { height: 40px; max-width: 180px; }
  .logo-img-footer { height: 38px; max-width: 170px; }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
/* Hide text block since new logo image contains brand name already */
.logo .logo-text {
  display: none;
}
.footer-brand .logo .logo-text {
  display: none;
}
