@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Noto+Sans+Bengali:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0a2540;
  --primary-light: #1a3a5c;
  --secondary: #0066cc;
  --accent: #ff6b00;
  --accent-hover: #e66000;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5a;
  --success: #10b981;
  --light-bg: #f0f4f8;
  --white: #ffffff;
  --dark: #0d1b2a;
  --text: #334155;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-bn: 'Noto Sans Bengali', sans-serif;
  --font-en: 'Inter', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-bn);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

.container { max-width: 1200px; }

.section { padding: 80px 0; }

.section-header { margin-bottom: 50px; text-align: center; }

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-header p { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* NAVBAR */
#mainNav {
  background: var(--primary);
  padding: 12px 0;
  transition: var(--transition);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

#mainNav.navbar-scrolled {
  padding: 8px 0;
  background: rgba(10, 37, 64, 0.97);
  backdrop-filter: blur(10px);
}

.brand-text { font-weight: 700; font-size: 1.3rem; color: var(--white); }

.navbar .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar .nav-link:hover, .navbar .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.1);
}

.btn-call-nav {
  background: var(--accent); color: var(--white); border: none;
  font-weight: 600; font-size: 0.85rem; padding: 8px 18px;
  border-radius: 50px; transition: var(--transition); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.btn-call-nav:hover { background: var(--accent-hover); color: var(--white); transform: scale(1.05); }

.btn-whatsapp-nav {
  background: var(--whatsapp); color: var(--white); border: none;
  font-weight: 600; font-size: 0.85rem; padding: 8px 18px;
  border-radius: 50px; transition: var(--transition); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.btn-whatsapp-nav:hover { background: var(--whatsapp-hover); color: var(--white); transform: scale(1.05); }

/* STICKY BUTTONS */
.sticky-buttons {
  position: fixed; right: 20px; bottom: 20px; z-index: 9999;
  display: flex; flex-direction: column; gap: 12px;
}

.sticky-call, .sticky-whatsapp {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: var(--transition);
}

.sticky-call { background: var(--accent); }
.sticky-whatsapp { background: var(--whatsapp); }
.sticky-call:hover, .sticky-whatsapp:hover { color: var(--white); transform: scale(1.1); }

/* HERO */
.hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #0d3b66 100%);
  overflow: hidden; padding-top: 80px;
}

.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,213.3C960,203,1056,181,1152,170.7C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover; pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-title { font-size: 2.6rem; font-weight: 800; color: var(--white); line-height: 1.3; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.8; max-width: 600px; }

.hero-cta .btn { padding: 14px 32px; font-weight: 700; font-size: 1rem; border-radius: 50px; transition: var(--transition); }

.btn-hero-call { background: var(--accent); color: var(--white); border: none; }
.btn-hero-call:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,0,0.35); }

.btn-hero-whatsapp { background: var(--whatsapp); color: var(--white); border: none; }
.btn-hero-whatsapp:hover { background: var(--whatsapp-hover); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); }

.hero-badges span { color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 500; }
.hero-badges i { font-size: 1.1rem; }

.hero-img { filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }

/* EMERGENCY */
.emergency-section { padding: 40px 0; margin-top: -40px; position: relative; z-index: 3; }
.emergency-box { background: linear-gradient(135deg, var(--accent), #ff8533); padding: 30px 40px; border-radius: var(--radius-lg); box-shadow: 0 10px 40px rgba(255,107,0,0.3); }
.emergency-title { color: var(--white); font-size: 1.5rem; font-weight: 700; }
.emergency-text { color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.btn-emergency { background: var(--white); color: var(--accent); font-weight: 700; font-size: 1.1rem; padding: 12px 28px; border-radius: 50px; transition: var(--transition); display: inline-block; }
.btn-emergency:hover { background: var(--primary); color: var(--white); transform: scale(1.05); }

/* WHY CHOOSE US */
.why-card { background: var(--white); padding: 35px 25px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); height: 100%; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--accent); }
.why-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--secondary), #0099ff); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; color: var(--white); }
.why-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.why-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; margin: 0; }

/* SERVICES */
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); height: 100%; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-img { height: 200px; overflow: hidden; background: #e8edf2; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-info { padding: 25px 20px; position: relative; }
.service-icon { width: 50px; height: 50px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); position: absolute; top: -25px; left: 20px; box-shadow: 0 4px 10px rgba(255,107,0,0.3); }
.service-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-top: 5px; margin-bottom: 10px; }
.service-info p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin: 0; }

/* BRANDS */
.brands-section { overflow: hidden; }
.brand-slider { overflow: hidden; position: relative; }
.brand-track { display: flex; gap: 30px; animation: scroll-brands 30s linear infinite; width: max-content; }
.brand-item { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 100px; }
.brand-item img { height: 50px; width: auto; filter: grayscale(100%); opacity: 0.6; transition: var(--transition); }
.brand-item:hover img { filter: grayscale(0); opacity: 1; }
.brand-item span { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }
@keyframes scroll-brands { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* PROCESS */
.process-card { background: var(--white); padding: 35px 25px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); position: relative; height: 100%; }
.process-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.process-step { width: 36px; height: 36px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; margin: 0 auto 15px; }
.process-icon { font-size: 2.2rem; color: var(--secondary); margin-bottom: 15px; }
.process-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.process-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* GALLERY */
.gallery-item { display: block; position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: var(--transition); background: #e8edf2; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,37,64,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { width: 50px; height: 50px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; }

/* REVIEWS */
.review-card { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); height: 100%; }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.review-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 15px; }
.review-text { font-size: 0.95rem; color: var(--text); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { font-size: 2.2rem; color: var(--secondary); }
.review-author strong { display: block; font-size: 0.95rem; color: var(--primary); }
.review-author small { color: var(--text-light); font-size: 0.8rem; }
.btn-google-review { background: #ea4335; color: var(--white); font-weight: 600; padding: 12px 30px; border-radius: 50px; transition: var(--transition); }
.btn-google-review:hover { background: #d33426; color: var(--white); transform: translateY(-2px); }

/* SERVICE AREAS */
.area-item { background: var(--white); padding: 15px 10px; border-radius: var(--radius-sm); text-align: center; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); font-weight: 500; color: var(--primary); font-size: 0.92rem; }
.area-item:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.area-item i { color: var(--accent); margin-right: 5px; font-size: 0.85rem; }
.area-item:hover i { color: var(--white); }

/* CONTACT */
.contact-section { background: var(--light-bg); }
.contact-info-box { background: var(--primary); padding: 35px; border-radius: var(--radius); color: var(--white); height: 100%; }
.contact-info-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 25px; }
.contact-detail { display: flex; gap: 15px; margin-bottom: 20px; }
.contact-icon { width: 45px; height: 45px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 0.85rem; opacity: 0.8; margin-bottom: 3px; }
.contact-detail p { margin: 0; font-size: 0.95rem; }
.contact-detail a { color: rgba(255,255,255,0.9); }
.contact-detail a:hover { color: var(--accent); }
.contact-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; transition: var(--transition); }
.contact-social a:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }
.contact-form-box { background: var(--white); padding: 35px; border-radius: var(--radius); box-shadow: var(--shadow); height: 100%; }
.contact-form-box h3 { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-bottom: 25px; }
.contact-form-box .form-control, .contact-form-box .form-select { padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-bn); font-size: 0.95rem; transition: var(--transition); }
.contact-form-box .form-control:focus, .contact-form-box .form-select:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(0,102,204,0.1); }
.btn-submit { background: var(--whatsapp); color: var(--white); font-weight: 700; padding: 14px; border-radius: var(--radius-sm); border: none; font-size: 1rem; transition: var(--transition); }
.btn-submit:hover { background: var(--whatsapp-hover); color: var(--white); transform: translateY(-2px); }

/* MAP */
.map-section { padding: 0; }
.map-container { width: 100%; height: 400px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* BLOG */
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); height: 100%; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-img { width: 100%; height: 200px; object-fit: cover; background: #e8edf2; }
.blog-body { padding: 20px; }
.blog-date { font-size: 0.8rem; color: var(--text-light); display: block; margin-bottom: 10px; }
.blog-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; line-height: 1.5; }
.blog-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 15px; }
.blog-read-more { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.blog-read-more:hover { color: var(--primary); }

/* FOOTER */
.footer-section { background: var(--primary); color: rgba(255,255,255,0.85); padding: 60px 0 30px; }
.footer-brand { display: flex; align-items: center; }
.footer-brand-text { font-weight: 700; font-size: 1.2rem; color: var(--white); }
.footer-desc { font-size: 0.9rem; line-height: 1.8; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.footer-social a:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }
.footer-section h4 { color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { margin-bottom: 12px; font-size: 0.9rem; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--accent); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 30px 0; }
.footer-copyright, .footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ================================
   RESPONSIVE - COMPLETE MOBILE FIX
   ================================ */
@media (max-width: 1199.98px) {
  .hero-title { font-size: 2.2rem; }
}

@media (max-width: 991.98px) {
  .hero-section { min-height: auto; padding: 110px 0 70px; }
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .nav-buttons { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.15); display: flex; gap: 8px; }
  .nav-buttons .btn { flex: 1; text-align: center; min-width: 0; font-size: 0.78rem; padding: 8px 8px; }
  .btn-call-nav, .btn-whatsapp-nav { font-size: 0.78rem; padding: 8px 8px; }
  .section { padding: 55px 0; }
  .section-header h2 { font-size: 1.5rem; }
  .emergency-section { margin-top: -30px; }
  .contact-info-box, .contact-form-box { padding: 28px; }
}

@media (max-width: 767.98px) {
  .navbar-brand img { height: 35px !important; }
  .brand-text { font-size: 1rem; }
  .hero-section { padding: 100px 0 50px; min-height: auto; }
  .hero-title { font-size: 1.4rem; line-height: 1.4; }
  .hero-subtitle { font-size: 0.9rem; margin-top: 10px; }
  .hero-cta { flex-wrap: wrap; }
  .hero-cta .btn { padding: 12px 14px; font-size: 0.85rem; flex: 1; min-width: 0; text-align: center; white-space: nowrap; }
  .hero-badges { flex-direction: column; gap: 6px !important; }
  .hero-badges span { font-size: 0.85rem; display: flex; align-items: center; gap: 4px; }
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 25px; }
  .section-header h2 { font-size: 1.3rem; }
  .section-header p { font-size: 0.9rem; }
  .emergency-section { margin-top: -20px; }
  .emergency-box { padding: 20px; text-align: center; }
  .emergency-title { font-size: 1.1rem; }
  .emergency-text { font-size: 0.85rem; }
  .btn-emergency { font-size: 0.9rem; padding: 10px 20px; display: inline-block; }
  .emergency-box .row { text-align: center; }
  .emergency-box .col-md-4 { margin-top: 15px; }
  .why-card { padding: 25px 18px; }
  .why-icon { width: 55px; height: 55px; font-size: 1.4rem; }
  .service-img { height: 160px; }
  .service-info { padding: 20px 16px; }
  .service-info h3 { font-size: 1rem; }
  .service-icon { width: 42px; height: 42px; font-size: 1.1rem; top: -21px; }
  .brand-item { min-width: 70px; }
  .brand-item img { height: 36px; }
  .process-card { padding: 25px 18px; }
  .process-icon { font-size: 1.8rem; }
  .gallery-item img { height: 140px; }
  .review-card { padding: 22px; }
  .area-item { padding: 12px 8px; font-size: 0.85rem; }
  .contact-info-box, .contact-form-box { padding: 22px; }
  .contact-info-box h3, .contact-form-box h3 { font-size: 1.1rem; margin-bottom: 18px; }
  .contact-detail { gap: 12px; margin-bottom: 16px; }
  .contact-icon { width: 38px; height: 38px; font-size: 0.95rem; }
  .contact-detail strong { font-size: 0.8rem; }
  .contact-detail p { font-size: 0.85rem; }
  .blog-img { height: 170px; }
  .blog-body { padding: 16px; }
  .blog-body h3 { font-size: 0.95rem; }
  .footer-section { padding: 40px 0 20px; }
  .map-container { height: 250px; }
  .sticky-call, .sticky-whatsapp { width: 50px; height: 50px; font-size: 1.2rem; }
  .sticky-buttons { right: 15px; bottom: 15px; gap: 10px; }
  .contact-form-box .form-control,
  .contact-form-box .form-select { font-size: 16px; padding: 14px 16px; }
  .footer-brand { flex-direction: column; gap: 8px; text-align: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 575.98px) {
  .navbar-brand img { height: 30px !important; }
  .brand-text { font-size: 0.85rem; }
  .hero-section { padding: 90px 0 40px; }
  .hero-title { font-size: 1.2rem; }
  .hero-subtitle { font-size: 0.85rem; }
  .hero-cta .btn { padding: 12px 14px; font-size: 0.85rem; }
  .hero-badges span { font-size: 0.8rem; }
  .section { padding: 35px 0; }
  .section-header h2 { font-size: 1.15rem; }
  .section-header p { font-size: 0.85rem; }
  .container { padding-left: 15px; padding-right: 15px; }
  .row { --bs-gutter-x: 15px; }
  .g-3 { --bs-gutter-x: 10px; --bs-gutter-y: 10px; }
  .g-4 { --bs-gutter-x: 12px; --bs-gutter-y: 12px; }
  .area-item { font-size: 0.8rem; padding: 10px 6px; }
  .footer-section { padding: 30px 0 15px; }
  .footer-desc { font-size: 0.85rem; }
  .footer-links a { font-size: 0.85rem; }
  .footer-contact li { font-size: 0.85rem; }
  .brand-track { gap: 18px; animation-duration: 20s; }
  .btn-call-nav, .btn-whatsapp-nav { font-size: 0.72rem; padding: 7px 8px; }
  .col-6 { flex: 0 0 auto; width: 50%; }
  .accordion-button { font-size: 0.9rem; padding: 14px 16px; }
  .accordion-body { font-size: 0.85rem; padding: 14px 16px; }
}

@media (max-width: 380px) {
  .brand-text { font-size: 0.75rem; }
  .navbar-brand img { height: 26px !important; }
  .hero-title { font-size: 1.05rem; }
  .section-header h2 { font-size: 1rem; }
  .hero-cta .btn { font-size: 0.85rem; padding: 11px 14px; }
  .emergency-box { padding: 16px; }
  .btn-emergency { font-size: 0.85rem; padding: 9px 16px; }
  .btn-call-nav, .btn-whatsapp-nav { font-size: 0.68rem; padding: 6px 6px; }
}

/* BLOG DETAIL PAGE */
.blog-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin: 30px 0 15px; }
.blog-content h3 { font-size: 1.25rem; font-weight: 600; color: var(--primary); margin: 25px 0 12px; }
.blog-content p { font-size: 1rem; line-height: 1.9; color: var(--text); margin-bottom: 18px; }
.blog-content ul, .blog-content ol { margin-bottom: 20px; padding-left: 25px; }
.blog-content li { margin-bottom: 8px; line-height: 1.7; }
.blog-meta { font-size: 0.9rem; }
.blog-meta .badge { font-size: 0.78rem; font-weight: 500; padding: 6px 12px; }
.blog-share h5 { font-size: 0.95rem; margin-bottom: 10px; }
aside .card { border-radius: var(--radius); }
aside .card-title { font-size: 1rem; color: var(--primary); border-bottom: 2px solid var(--accent); padding-bottom: 10px; }
aside .list-unstyled li:last-child { border-bottom: none !important; padding-bottom: 0 !important; margin-bottom: 0 !important; }
.cta-box { border-radius: var(--radius); }
.cta-box h3 { font-size: 1.3rem; }

@media (max-width: 767.98px) {
  .blog-content h2 { font-size: 1.25rem; }
  .blog-content h3 { font-size: 1.1rem; }
  .blog-content p { font-size: 0.95rem; }
  .cta-box h3 { font-size: 1.1rem; }
  .cta-box .btn { display: block; width: 100%; margin-bottom: 10px; }
  .cta-box .btn.me-2 { margin-right: 0 !important; }
}

/* PAGE HEADER */
.page-header { position: relative; }
.page-header h1 { text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* BRAND CARDS */
.brand-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover) !important; border-color: var(--accent) !important; }
.brand-card img { transition: var(--transition); }
.brand-card:hover img { transform: scale(1.05); }

/* REVIEWS SWIPER */
.reviewSwiper .swiper-slide { height: auto; }
.reviewSwiper .swiper-pagination { position: relative; margin-top: 30px; }
.reviewSwiper .swiper-pagination-bullet { background: var(--primary); opacity: 0.4; }
.reviewSwiper .swiper-pagination-bullet-active { opacity: 1; }
