/* ===============================
   MediCare Plus - Modern Online Pharmacy
   Website 1 | Blue/Green Theme
   =============================== */

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

/* ── CSS Variables ── */
:root {
  --primary:        #0d6efd;
  --primary-dark:   #0a58ca;
  --secondary:      #198754;
  --secondary-dark: #146c43;
  --accent:         #20c997;
  --light:          #f0f6ff;
  --dark:           #1b2631;
  --white:          #ffffff;
  --gray:           #6c757d;
  --light-gray:     #f8f9fa;
  --border:         #dee2e6;
  --shadow:         0 4px 20px rgba(0,0,0,.10);
  --shadow-hover:   0 10px 35px rgba(13,110,253,.20);
  --transition:     all .3s ease;
  --radius:         12px;
  --font:           'Poppins', sans-serif;
}

[data-theme="dark"] {
  --light:      #0f1923;
  --dark:       #e8eaed;
  --white:      #1a2533;
  --light-gray: #1e2d3d;
  --border:     #2c3e50;
  --gray:       #adb5bd;
  --shadow:     0 4px 20px rgba(0,0,0,.40);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.7;
  transition: background-color .3s, color .3s;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul  { list-style: none; padding: 0; margin: 0; }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .5s, visibility .5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo  { font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.pulse-ring {
  width: 60px; height: 60px;
  border: 4px solid var(--primary);
  border-top-color: transparent;
  border-radius: 50%;
  margin: 0 auto;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Top Bar ── */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: .82rem;
  padding: 7px 0;
}
.top-bar a { color: var(--white); }
.top-bar a:hover { color: #c8e6ff; }
.top-bar .separator { margin: 0 10px; opacity: .5; }

/* ── Sticky Navbar ── */
.navbar-main {
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  padding: 12px 0;
}
.navbar-main.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.navbar-brand .brand-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}
.navbar-brand .brand-logo span { color: var(--secondary); }
.navbar-brand small {
  display: block;
  font-size: .65rem;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: .5px;
  margin-top: -4px;
}
.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: rgba(13,110,253,.08);
}
.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 8px 20px !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
}
#darkModeToggle {
  border: none; background: none; cursor: pointer;
  font-size: 1.1rem; color: var(--gray); padding: 6px;
  transition: var(--transition);
}
#darkModeToggle:hover { color: var(--primary); }

/* ── Search Bar ── */
.search-section {
  background: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.search-wrapper {
  display: flex;
  max-width: 650px;
  margin: 0 auto;
}
.search-wrapper .form-control {
  border-radius: 50px 0 0 50px;
  padding: 10px 20px;
  border: 2px solid var(--primary);
  font-size: .92rem;
  background: var(--white);
  color: var(--dark);
  flex: 1;
  min-width: 0;
}
.search-wrapper .form-control:focus { box-shadow: 0 0 0 .25rem rgba(13,110,253,.18); }
.search-btn {
  background: var(--primary); color: #fff;
  border: none; border-radius: 0 50px 50px 0;
  padding: 10px 24px; font-size: .85rem; cursor: pointer;
  flex-shrink: 0; white-space: nowrap;
  transition: var(--transition);
}
.search-btn:hover { background: var(--primary-dark); }

/* ── Section Utilities ── */
.section-title { font-size: 1.9rem; font-weight: 700; color: var(--dark); }
.section-sub   { color: var(--gray); font-size: .95rem; }
.title-badge {
  display: inline-block;
  background: rgba(13,110,253,.1);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.divider-line {
  width: 55px; height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 12px auto 0;
}
section { padding: 70px 0; }

/* ── Hero ── */
.hero-section {
  background: linear-gradient(135deg, #eaf2ff 0%, #e8f8f5 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}
[data-theme="dark"] .hero-section { background: linear-gradient(135deg, #1a2533 0%, #0f1d2a 100%); }
.hero-badge {
  display: inline-block;
  background: rgba(13,110,253,.12);
  color: var(--primary);
  font-size: .8rem; font-weight: 600;
  padding: 5px 16px; border-radius: 50px;
  margin-bottom: 16px; letter-spacing: .5px;
}
.hero-title {
  font-size: 3rem; font-weight: 800;
  line-height: 1.2; color: var(--dark);
  margin-bottom: 18px;
}
.hero-title span { color: var(--primary); }
.hero-desc { color: var(--gray); font-size: 1.05rem; margin-bottom: 30px; }
.hero-stats .stat-item { text-align: center; }
.hero-stats .stat-num  { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.hero-stats .stat-lbl  { font-size: .75rem; color: var(--gray); }
.hero-img-wrap {
  position: relative;
  text-align: center;
}
.hero-img-wrap img {
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
  max-height: 440px;
  width: 100%;
  object-fit: cover;
}
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px 16px;
  font-size: .8rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  animation: floatBadge 3s ease-in-out infinite;
}
.hero-float-badge.badge-1 { top: 20px; left: -10px; color: var(--secondary); }
.hero-float-badge.badge-2 { bottom: 40px; right: -10px; color: var(--primary); }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Category Cards ── */
.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.category-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(13,110,253,.12), rgba(32,201,151,.12));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}
.category-card:hover .category-icon {
  background: var(--primary);
  color: #fff;
}
.category-card h6 { font-weight: 600; font-size: .9rem; margin-bottom: 4px; color: var(--dark); }
.category-card small { color: var(--gray); font-size: .78rem; }

/* ── Product Cards ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--light-gray);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.badge-rx   { background: #dc3545; color: #fff; font-size: .68rem; padding: 3px 8px; border-radius: 4px; }
.badge-otc  { background: var(--secondary); color: #fff; font-size: .68rem; padding: 3px 8px; border-radius: 4px; }
.badge-sale { background: #ff6b35; color: #fff; font-size: .68rem; padding: 3px 8px; border-radius: 4px; }
.product-quick-btn {
  position: absolute; bottom: -40px; left: 0; right: 0;
  text-align: center;
  transition: bottom .3s ease;
}
.product-card:hover .product-quick-btn { bottom: 10px; }
.product-quick-btn button {
  background: rgba(255,255,255,.9);
  border: none; border-radius: 8px;
  padding: 6px 16px; font-size: .8rem; cursor: pointer;
  color: var(--primary); font-weight: 600;
  backdrop-filter: blur(4px);
}
.product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: .72rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; }
.product-name { font-size: .95rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.product-mfg  { font-size: .78rem; color: var(--gray); margin-bottom: 8px; }
.product-rating { color: #ffc107; font-size: .8rem; margin-bottom: 10px; }
.product-rating span { color: var(--gray); font-size: .78rem; margin-left: 4px; }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; margin-top: auto; }
.price-current { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.price-original { font-size: .88rem; color: var(--gray); text-decoration: line-through; }
.price-discount { font-size: .75rem; background: #fff3cd; color: #856404; padding: 2px 7px; border-radius: 4px; font-weight: 600; }
.btn-enquire {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none; border-radius: 8px;
  padding: 9px 0; font-size: .88rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.btn-enquire:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(13,110,253,.35); }

/* ── Services Section ── */
.services-section { background: var(--white); }
.service-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.service-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
  transition: var(--transition);
}
.service-card:hover .service-icon { color: #fff; }
.service-card h5 { font-weight: 600; margin-bottom: 10px; transition: color .3s; }
.service-card p  { font-size: .88rem; color: var(--gray); margin: 0; transition: color .3s; }
.service-card:hover p { color: rgba(255,255,255,.85); }

/* ── Why Choose Us ── */
.why-section { background: linear-gradient(135deg, var(--primary) 0%, #00b4db 100%); color: #fff; }
.why-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.2); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(255,255,255,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
}
.why-card h6 { font-weight: 600; margin-bottom: 5px; font-size: 1rem; }
.why-card p  { font-size: .83rem; opacity: .88; margin: 0; }

/* ── Testimonials ── */
.testimonials-section { background: var(--light-gray); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-quote { font-size: 2rem; color: var(--primary); line-height: 1; margin-bottom: 12px; }
.testimonial-text  { font-size: .9rem; color: var(--gray); font-style: italic; margin-bottom: 18px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--primary);
}
.author-name  { font-weight: 600; font-size: .9rem; }
.author-title { font-size: .75rem; color: var(--gray); }
.star-rating  { color: #ffc107; font-size: .85rem; margin-bottom: 2px; }

/* ── Health Tips ── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-img {
  height: 200px; overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-img img { transform: scale(1.07); }
.blog-body    { padding: 20px; }
.blog-meta    { font-size: .75rem; color: var(--gray); margin-bottom: 8px; display: flex; gap: 10px; flex-wrap: wrap; }
.blog-meta i  { margin-right: 4px; }
.blog-title   { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.blog-excerpt { font-size: .85rem; color: var(--gray); margin-bottom: 14px; }
.blog-tag     { display: inline-block; background: rgba(13,110,253,.1); color: var(--primary); font-size: .72rem; padding: 3px 10px; border-radius: 20px; font-weight: 500; }

/* ── Newsletter ── */
.newsletter-section {
  background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
  color: #fff;
}
.newsletter-form .form-control {
  border-radius: 8px 0 0 8px;
  border: none; padding: 12px 18px;
  font-size: .9rem;
}
.newsletter-form .btn { border-radius: 0 8px 8px 0; padding: 12px 24px; }

/* ── Footer ── */
.footer-main {
  background: #0d1b2a;
  color: #c5cdd9;
  padding: 60px 0 0;
}
.footer-brand { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: .87rem; line-height: 1.8; margin-bottom: 20px; color: #8b9ab0; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #c5cdd9; font-size: .9rem;
  transition: var(--transition);
  margin-right: 6px;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-heading { font-size: .95rem; font-weight: 600; color: #fff; margin-bottom: 18px; position: relative; }
.footer-heading::after {
  content: ''; display: block;
  width: 30px; height: 3px;
  background: var(--primary);
  border-radius: 2px; margin-top: 7px;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #8b9ab0; font-size: .87rem; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: .87rem; color: #8b9ab0;
}
.footer-contact-item i { color: var(--primary); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
  text-align: center;
  font-size: .83rem;
  color: #5a6878;
  margin-top: 40px;
}
.footer-bottom a { color: var(--accent); }

/* ── Back to Top ── */
#backToTop {
  position: fixed; bottom: 90px; right: 22px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff; border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(13,110,253,.4);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover   { background: var(--primary-dark); transform: translateY(-2px); }

/* ── WhatsApp Float ── */
.whatsapp-btn {
  position: fixed; bottom: 90px; left: 22px;
  width: 50px; height: 50px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 999;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.7); }
}

/* ── Floating Call ── */
.call-btn {
  position: fixed; bottom: 22px; left: 22px;
  width: 50px; height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  box-shadow: 0 4px 16px rgba(25,135,84,.4);
  z-index: 999;
  transition: var(--transition);
}
.call-btn:hover { transform: scale(1.1); background: var(--secondary-dark); }

/* ── Enquiry Modal ── */
.enquiry-modal .modal-header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}
.enquiry-modal .modal-header .btn-close { filter: invert(1); }
.enquiry-modal .product-summary {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 18px;
  display: flex; gap: 12px; align-items: center;
}
.enquiry-modal .product-summary img {
  width: 65px; height: 65px;
  border-radius: 8px; object-fit: cover;
}
.enquiry-modal .product-summary h6 { font-weight: 600; margin-bottom: 3px; }
.enquiry-modal .product-summary small { color: var(--gray); }

/* ── Breadcrumb ── */
.page-hero {
  background: linear-gradient(135deg, #eaf2ff, #e8f8f5);
  padding: 55px 0 45px;
}
[data-theme="dark"] .page-hero { background: linear-gradient(135deg, #1a2533, #0f1d2a); }
.page-hero h1 { font-size: 2.2rem; font-weight: 700; color: var(--dark); }
.breadcrumb-item.active { color: var(--gray); }
.breadcrumb-item a     { color: var(--primary); }

/* ── Filter Bar ── */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.filter-btn {
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--gray);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* ── About Page ── */
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-img-grid img { border-radius: var(--radius); height: 200px; width: 100%; object-fit: cover; }
.about-img-grid img:last-child { grid-column: span 2; height: 180px; }
.counter-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.counter-num { font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.counter-lbl { font-size: .85rem; color: var(--gray); margin-top: 4px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.team-card img { width: 100%; height: 240px; object-fit: cover; }
.team-body    { padding: 18px; }
.team-name    { font-weight: 700; font-size: 1rem; margin-bottom: 3px; }
.team-role    { font-size: .82rem; color: var(--primary); margin-bottom: 8px; }
.team-social a { color: var(--gray); font-size: .9rem; margin: 0 5px; }
.team-social a:hover { color: var(--primary); }

/* ── Services Page ── */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
  height: 100%;
}
.service-detail-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.service-num {
  font-size: 2.5rem; font-weight: 800;
  color: rgba(13,110,253,.1);
  line-height: 1;
  margin-bottom: 14px;
}

/* ── Offers Page ── */
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.offer-banner {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer-banner::before {
  content: ''; position: absolute;
  width: 140px; height: 140px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  top: -50px; right: -30px;
}
.offer-pct  { font-size: 3rem; font-weight: 800; line-height: 1; }
.offer-off  { font-size: 1rem; opacity: .9; }
.offer-body { padding: 20px; }
.offer-code {
  background: var(--light-gray);
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  letter-spacing: 2px;
  margin: 12px 0;
}

/* ── Contact ── */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.contact-icon {
  width: 56px; height: 56px;
  background: rgba(13,110,253,.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary);
  margin-bottom: 14px;
}
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; display: block; }

/* ── FAQ ── */
.faq-item .accordion-button {
  font-weight: 600; font-size: .95rem;
  background: var(--white); color: var(--dark);
}
.faq-item .accordion-button:not(.collapsed) {
  background: rgba(13,110,253,.06);
  color: var(--primary);
  box-shadow: none;
}
.faq-item .accordion-button::after { filter: none; }

/* ── Blog Page ── */
.blog-large-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 28px;
  transition: var(--transition);
}
.blog-large-card:hover { box-shadow: var(--shadow-hover); }
.blog-large-card .blog-img { height: 280px; }
.blog-large-card .blog-body { padding: 26px; }
.blog-large-card .blog-title { font-size: 1.2rem; }

/* ── Utility / Buttons ── */
.btn-primary-custom {
  background: var(--primary);
  color: #fff; border: none;
  border-radius: 8px;
  padding: 11px 28px;
  font-weight: 600; font-size: .92rem;
  transition: var(--transition); cursor: pointer;
}
.btn-primary-custom:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(13,110,253,.35); color: #fff; }

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 10px 26px;
  font-weight: 600; font-size: .92rem;
  transition: var(--transition); cursor: pointer;
}
.btn-outline-custom:hover { background: var(--primary); color: #fff; }

/* ── Alert / Toast ── */
.enquiry-success-toast {
  position: fixed; top: 20px; right: 20px;
  background: var(--secondary); color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(25,135,84,.35);
  font-size: .9rem; font-weight: 500;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform .4s ease;
  display: flex; align-items: center; gap: 10px;
}
.enquiry-success-toast.show { transform: translateX(0); }

/* ── Responsive Overrides ── */
@media (max-width: 991.98px) {
  .hero-title     { font-size: 2.2rem; }
  .section-title  { font-size: 1.6rem; }
  .hero-section   { padding: 55px 0 40px; }
}
@media (max-width: 767.98px) {
  .hero-title       { font-size: 1.8rem; }
  section           { padding: 50px 0; }
  .hero-float-badge { display: none; }
  .top-bar .d-md-block { display: none !important; }
  .navbar-brand .brand-logo { font-size: 1.3rem; }
  .filter-bar       { overflow-x: auto; white-space: nowrap; flex-wrap: nowrap !important; }
}
@media (max-width: 575.98px) {
  .hero-title    { font-size: 1.5rem; }
  .offer-pct     { font-size: 2.2rem; }
  .counter-num   { font-size: 1.7rem; }
}
