/* ============================
   GLOBAL VARIABLES
============================ */
:root {
  --blue: #1E3A8A;       /* Royal Blue */
  --teal: #0E9F6E;       /* Teal accent */
  --white: #ffffff;
  --text-dark: #1f2937;
  --light-bg: #f3f6fb;
  --radius: 12px;
  --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ---------- LAYOUT HELPERS ---------- */

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #4b5563;
    max-width: 32rem;
    margin: 0 auto;
}

.section-header.align-left {
    text-align: left;
}

/* ---------- BUTTONS ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: #1e3a8a;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    background-color: #233c7a;
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: #1e3a8a;
    border-color: #1e3a8a;
}

.btn-outline:hover {
    background-color: #1e3a8a;
    color: #ffffff;
}

/* ---------- BADGES ---------- */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: rgba(15, 23, 42, 0.06);
    color: #111827;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.badge-outline {
    background-color: transparent;
    border: 1px solid rgba(148, 163, 184, 0.8);
    color: #111827;
}

/* ==============================
   HEADER & NAVIGATION
   ============================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 34px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-left: 0.3rem;
}

.logo-main {
    font-weight: 700;
    color: #1e3a8a;
    font-size: 1.28rem;
}

.logo-sub {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0e9f6e;
}

.main-nav {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.nav-links a {
    position: relative;
    color: #0f172a;
    font-weight: 500;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e3a8a, #0e9f6e);
    transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-feedback-link {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
}

.nav-feedback-link:hover,
.nav-feedback-link.active {
    border-color: transparent;
    background: linear-gradient(135deg, #1e3a8a, #0e9f6e);
    color: #ffffff;
}
.site-header .site-logo {
  max-height: 44px;
  width: auto;
}

@media (max-width: 768px) {
  .site-header .site-logo {
    max-height: 38px;
  }
}

/* Mobile menu toggle */

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background-color: #ffffff;
    cursor: pointer;
    padding: 0.45rem;
}

.menu-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #0f172a;
    border-radius: 999px;
}

/* Mobile nav drawer */

.mobile-nav {
    display: none;
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    z-index: 45;
}

.mobile-nav-links {
    padding: 0.75rem 1.25rem 1rem;
}

.mobile-nav-links li + li {
    margin-top: 0.25rem;
}

.mobile-nav-links a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0f172a;
}
/* Desktop navigation visibility fix */
@media (min-width: 768px) {
  .main-nav {
    display: block;
  }

  .nav-links {
    display: flex;
  }
}

/* Header adjustments on scroll (class added by JS) */

.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* ==============================
   HERO SECTION
   ============================== */

.hero-section {
    position: relative;
    min-height: calc(100vh - 4rem);
    color: #ffffff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.55)
    ),
    radial-gradient(circle at 20% 20%, rgba(0,0,0,0.4), transparent 60%);
}


.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 4rem);
    z-index: 5;
}

.hero-text {
    max-width: 34rem;
    padding: 3rem 0 4rem;
    z-index: 10;
    
}

.hero-text h1 {
    font-size: clamp(2rem, 3vw + 1rem, 2.6rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 0.98rem;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-cta-group .btn {
    font-size: 0.95rem;
}

.hero-trust-badges .badge {
    background-color: rgba(15, 23, 42, 0.75);
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

/* ==============================
   SERVICES SECTION
   ============================== */

.services-section {
    background-color: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(59, 130, 246, 0.35);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.service-card p {
    font-size: 0.95rem;
    color: #4b5563;
}

/* ==============================
   PHIPA SECTION
   ============================== */

.phipa-section {
    background: radial-gradient(circle at 0 0, rgba(14, 159, 110, 0.15), transparent 50%),
                radial-gradient(circle at 100% 0, rgba(30, 58, 138, 0.25), transparent 50%),
                linear-gradient(135deg, #0f172a, #1e293b);
    color: #e5e7eb;
}

.phipa-inner {
    max-width: 880px;
}

.phipa-content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.phipa-content p {
    margin-bottom: 0.75rem;
}

.phipa-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #0e9f6e, #22c55e);
    color: #022c22;
    margin-bottom: 0.75rem;
}

.phipa-list {
    margin: 1rem 0;
    padding-left: 1rem;
}

.phipa-list li {
    position: relative;
    margin-bottom: 0.45rem;
    font-size: 0.95rem;
}

.phipa-list li::before {
    content: "";
    position: absolute;
    left: -0.8rem;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background-color: #0e9f6e;
}

.phipa-note {
    font-size: 0.9rem;
    color: #cbd5f5;
}

/* ==============================
   ABOUT SECTION
   ============================== */

.about-section {
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
    gap: 2rem;
    align-items: center;
}

.about-image-wrapper {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-content h2 {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.about-content p {
    margin-bottom: 0.75rem;
    color: #4b5563;
    font-size: 0.96rem;
}

.about-list {
    margin-top: 0.5rem;
}

.about-list li {
    font-size: 0.94rem;
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
}

.about-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0e9f6e;
}

/* ================================
   TRACKING SECTION (INDEX PAGE)
=================================*/
.tracking-section {
  text-align: center;
  padding: 40px 20px;
  margin-top: 30px;
}

.tracking-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b4d91; /* Royal Blue */
  margin-bottom: 15px;
}

.tracking-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px auto;
  max-width: 420px;
}

.tracking-box input {
  width: 70%;
  padding: 12px;
  border: 2px solid #0b4d91;
  border-radius: 8px;
  font-size: 1rem;
}

.tracking-box button {
  padding: 12px 20px;
  background: #089eac; /* Teal */
  color: #fff;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}

.tracking-box button:hover {
  background: #067c85;
}

.tracking-error {
  color: red;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ==============================
   FORMS (GLOBAL)
   ============================== */

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #111827;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 0.6rem;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
}

/* ==============================
   CONTACT SECTION
   ============================== */

.contact-section {
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: flex-start;
}

.service-areas h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.area-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.contact-details p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.25rem;
}

.contact-form-wrapper h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #111827;
}

.contact-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
}
/* ================================
   CONTACT BOX ON HOME PAGE
================================ */
.contact-info-box {
  background: #f7fbff;
  border-left: 4px solid #00b8d4;
  padding: 20px;
  border-radius: 10px;
  margin-top: 15px;
}

.contact-info-box h3 {
  color: #0056ff;
  margin-bottom: 8px;
}

.contact-info-box p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.contact-info-box .btn-secondary {
  background: #fff;
  color: #0056ff;
  border: 2px solid #0056ff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}

.contact-info-box .btn-secondary:hover {
  background: #0056ff;
  color: #fff;
}

/* ==============================
   FOOTER
   ============================== */

s

.footer-inner {
    text-align: center;
    font-size: 0.85rem;
}

.footer-meta {
    margin-top: 0.25rem;
    color: #6b7280;
}

/* ==============================
   FEEDBACK PAGE
   ============================== */

.feedback-page {
    min-height: calc(100vh - 4rem - 3.5rem);
    background-color: #f9fafb;
}

.feedback-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.feedback-form-wrapper h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.feedback-intro {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #4b5563;
}

/* Star rating */

.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #d1d5db;
}

.star {
    transition: transform 0.1s ease, color 0.1s ease;
}

.star:hover {
    transform: translateY(-1px) scale(1.05);
}

.star.selected,
.star.active {
    color: #f59e0b;
}

.rating-hint {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.feedback-privacy-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.feedback-info h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.feedback-info p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.feedback-points {
    margin-bottom: 1rem;
}

.feedback-points li {
    font-size: 0.94rem;
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
}

.feedback-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1e3a8a;
}

.feedback-highlight {
    background-color: #e0f2fe;
    border-radius: 0.75rem;
    padding: 0.9rem 1rem;
    border: 1px solid #bfdbfe;
    font-size: 0.9rem;
    color: #1e3a8a;
}

/* Thank-you popup */

.thank-you-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.65);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.thank-you-modal {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    max-width: 360px;
    width: 90%;
    text-align: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.thank-you-modal h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.thank-you-modal p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Visible state (set via JS) */
.thank-you-overlay.is-visible {
    display: flex;
}

/* =====================================================
   NEW PROFESSIONAL HOME PAGE SECTIONS (ADD-ONLY)
===================================================== */

/* ---------- WHY PHARMACIES CHOOSE US ---------- */
.why-choose {
  background: #f9fafb;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.why-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.9);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.why-card img {
  height: 52px;
  margin: 0 auto 0.9rem;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #111827;
}

.why-card p {
  font-size: 0.95rem;
  color: #4b5563;
}


/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  background: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin-top: 1.2rem;
}

.step-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  position: relative;
}

.step-num {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #1e3a8a, #0e9f6e);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: #111827;
}

.step-card p {
  font-size: 0.94rem;
  color: #4b5563;
}


/* ---------- SERVICE AREAS ---------- */
.service-areas {
  background: linear-gradient(135deg, #f8fafc, #eef3fb);
  text-align: center;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
  max-width: 720px;
  margin: 1.2rem auto 0;
}

.areas-grid span {
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0f172a;
}

.areas-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: #64748b;
}


/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: #f9fafb;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  font-style: italic;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 0.6rem;
}

.testimonial-card strong {
  font-size: 0.85rem;
  font-style: normal;
  color: #1e3a8a;
}


/* ---------- FINAL MOBILE POLISH FOR NEW SECTIONS ---------- */
@media (max-width: 767.98px) {
  .why-card,
  .step-card,
  .testimonial-card {
    padding: 1.3rem;
  }

  .step-num {
    left: -8px;
    top: -8px;
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }
}
/* Hero note — patient/pharmacy clarification text */
.hero-note {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 640px;
  color: #e5e7eb;          /* light gray on dark hero */
  opacity: 0.95;
}

/* Mobile tweak */
@media (max-width: 767.98px) {
  .hero-note {
    font-size: 0.8rem;
    text-align: left;
  }
}

/* ==============================
   ANIMATIONS (FADE-IN)
   ============================== */

.fade-in-section {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}






/* =====================================================
   BLOG / INSIGHTS PAGES (ADD-ONLY)
   Safe for existing layout
===================================================== */

/* ---------- Blog Listing Grid ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 1.5rem;
}

.blog-card {
  background: #ffffff;
  padding: 1.6rem 1.6rem 1.8rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.blog-card h2 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.blog-card h2 a {
  color: #1e3a8a;
  text-decoration: none;
}

.blog-card h2 a:hover {
  text-decoration: underline;
}

.blog-meta {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 0.6rem;
}

.blog-card p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.55;
}

.blog-read {
  display: inline-block;
  margin-top: 0.7rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0e9f6e;
}

/* ---------- Blog Article ---------- */
.blog-article {
  max-width: 820px;
  margin: 0 auto;
}

.blog-article h1 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.blog-article .blog-meta {
  margin-bottom: 1.2rem;
}

.blog-article .intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 1.6rem;
}

.blog-article h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #1e3a8a;
}

.blog-article p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 1rem;
}

.blog-article ul {
  margin: 0.6rem 0 1.2rem 1.2rem;
}

.blog-article ul li {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 0.4rem;
}

/* ---------- Call-to-Action Box ---------- */
.cta-box {
  margin-top: 2.2rem;
  padding: 1.6rem;
  background: #f1f5f9;
  border-left: 5px solid #1e3a8a;
  border-radius: 10px;
}

.cta-box p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.cta-box .btn {
  margin-top: 0.2rem;
}

/* ---------- Mobile Blog Optimization ---------- */
@media (max-width: 768px) {
  .blog-article h1 {
    font-size: 1.6rem;
  }

  .blog-article h2 {
    font-size: 1.15rem;
  }

  .blog-grid {
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .mobile-call-button {
    display: flex;
    position: fixed;
    right: 16px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1e3a8a, #0e9f6e);
    color: #ffffff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .mobile-call-button:active {
    transform: scale(0.94);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }
}
.phone-link {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
}

.phone-link:hover {
  text-decoration: underline;
}

/* ==============================
   RESPONSIVE BREAKPOINTS
   ============================== */

@media (min-width: 768px) {
    .main-nav {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

    .hero-text {
        padding-top: 4rem;
        padding-bottom: 5rem;
    }
  
}

@media (max-width: 767.98px) {
   main {
        padding-top: 1.5rem;
    } 
  .section {
        padding: 3.5rem 1.2rem;
    }
    .header-inner {
        height: 4.2rem;
    }

    .hero-text {
        max-width: 100%;
        padding: 2.25rem 0 3.25rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-cta-group {
        flex-direction: row;
    }

    .about-grid,
    .contact-grid,
    .feedback-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .feedback-page {
        padding-top: 3.5rem;
    }
     .feedback-form-wrapper {
        padding: 1rem 0;
    }
      .main-nav {
        display: none; /* hide desktop nav */
    }

    .menu-toggle {
        display: flex; /* show hamburger */
    }

.mobile-nav {
    display: none;
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    z-index: 50;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.mobile-nav-links {
    padding: 1rem;
}

.mobile-nav-links li {
    margin-bottom: 1rem;  
}

.mobile-nav-links a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #0f172a;
    font-weight: 500;
}
.mobile-nav .nav-feedback-link {
        display: block;
        width: 100%;
        padding: 0.5rem 0;        /* normal mobile padding */
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        text-align: left;
        color: #0f172a !important; /* normal text */
        font-weight: 500;
}
}
@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 2.4rem;
    }
}
/* ==============================
   FOOTER
============================== */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 1.2rem;
  text-align: center;
}

.footer-meta {
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

/* ============================
   BLOG BACK LINK
============================ */
.blog-back {
  margin-bottom: 1rem;
}

.blog-back a {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e3a8a;
  text-decoration: none;
}

.blog-back a:hover {
  text-decoration: underline;
}
/* ============================
   BLOG LISTING — SINGLE COLUMN
============================ */
.blog-grid {
  grid-template-columns: 1fr;
}
/* ==============================
   SEASONAL / HOLIDAY BANNER
   ============================== */

.seasonal-banner {
  background: linear-gradient(135deg, #f8fafc, #eef3fb);
  padding: 3rem 0;
}

.seasonal-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.seasonal-image {
  max-width: 480px;
  margin: 0 auto;
}

.seasonal-text h2 {
  font-size: 1.6rem;
  color: #1e3a8a;
  margin-bottom: 0.6rem;
}

.seasonal-text p {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 0.5rem;
}

.seasonal-note {
  font-size: 0.85rem;
  color: #64748b;
}

/* Mobile */
@media (max-width: 768px) {
  .seasonal-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .seasonal-image {
    max-width: 100%;
  }

}
.blog-article a {
  color: #1e3a8a;
  font-weight: 600;
  text-decoration: underline;
}

.blog-article a:hover {
  color: #0f2a6f;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #f8fafc;
  border-left: 4px solid #1e3a8a;
  padding: 16px 20px;
  margin-bottom: 16px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: #334155;
}
@media (max-width: 768px) {
  .btn,
  button {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }
}
@media (max-width: 768px) {
  .blog-card {
    padding: 18px;
  }
}
