/* =============================================
   DR. SHAHRUKH KHAN - ORTHOPEDIC SURGEON DELHI
   Custom Stylesheet v1.0
   ============================================= */

/* --- ROOT VARIABLES --- */
:root {
  --primary: #1e3a8a;
  --primary-dark: #162d6b;
  --primary-light: #2d4fa3;
  --secondary: #3b82f6;
  --accent: #06b6d4;
  --cta: #eab308;
  --cta-hover: #ca8a04;
  --green: #16a34a;
  --gold: #f59e0b;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --text: #0f172a;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.12), 0 4px 10px -5px rgba(0,0,0,0.08);
  --radius: 14px;
  --transition: all 0.3s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; font-size: 16px; }
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', system-ui, sans-serif; font-weight: 700; line-height: 1.3; color: var(--primary); }
a { color: var(--secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }
p { margin-bottom: 1rem; }

/* --- TOP BAR --- */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}
.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--accent); }

/* --- NAVBAR --- */
.navbar {
  background: var(--primary) !important;
  padding: 0 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 1050;
}
.navbar-brand { padding: 10px 0; }
.brand-name { color: white; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem; display: block; line-height: 1.2; }
.brand-sub { color: var(--accent); font-size: 0.75rem; font-weight: 500; display: block; }
.navbar-nav .nav-link { color: rgba(255,255,255,0.9) !important; font-weight: 500; padding: 22px 13px !important; transition: var(--transition); font-size: 0.875rem; letter-spacing: 0.01em; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--accent) !important; }
.nav-cta { background: var(--cta) !important; color: #0f172a !important; border-radius: 7px !important; padding: 10px 18px !important; margin: 13px 0 13px 8px !important; font-weight: 600 !important; font-size: 0.85rem !important; }
.nav-cta:hover { background: var(--cta-hover) !important; color: #0f172a !important; }
.dropdown-menu { border: none; box-shadow: var(--shadow-lg); border-radius: var(--radius); padding: 8px; min-width: 230px; }
.dropdown-item { border-radius: 8px; padding: 9px 16px; font-size: 0.875rem; color: var(--text); font-weight: 500; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.dropdown-item:hover { background: #eff6ff; color: var(--primary); }
.dropdown-item i { color: var(--secondary); font-size: 0.75rem; }
.navbar-toggler { border: none !important; padding: 8px; }
.navbar-toggler:focus { box-shadow: none !important; }

/* --- HERO --- */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4fb5 55%, #0284c7 100%);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero::before { content: ''; position: absolute; top: -20%; right: -8%; width: 600px; height: 600px; background: rgba(255,255,255,0.04); border-radius: 50%; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -25%; left: -5%; width: 450px; height: 450px; background: rgba(255,255,255,0.03); border-radius: 50%; pointer-events: none; }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); color: var(--accent); padding: 5px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 14px; border: 1px solid rgba(255,255,255,0.2); letter-spacing: 0.05em; }
.hero h1 { color: white; font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; margin-bottom: 10px; }
.hero h1 span { color: var(--accent); }
.hero-subtitle { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 6px; font-weight: 500; }
.hero-quals { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-bottom: 18px; line-height: 1.6; }
.hero-desc { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 0.95rem; max-width: 500px; line-height: 1.8; }
.hero-img { position: relative; z-index: 2; text-align: center; }
.hero-img img { max-height: 460px; object-fit: cover; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.35)); border-radius: 20px; }
.hero-trust { display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.hero-trust-item i { color: var(--gold); }

/* --- BUTTONS --- */
.btn-red { background: var(--cta); color: #0f172a; padding: 13px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; border: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.btn-red:hover { background: var(--cta-hover); color: #0f172a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(234,179,8,0.45); }
.btn-white-outline { background: transparent; color: white; padding: 13px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.5); transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: white; color: white; }
.btn-blue { background: var(--primary); color: white; padding: 12px 26px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; border: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-blue:hover { background: var(--primary-light); color: white; transform: translateY(-2px); }
.btn-outline-blue { background: transparent; color: var(--primary); padding: 11px 24px; border-radius: 8px; font-weight: 600; border: 2px solid var(--primary); transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-blue:hover { background: var(--primary); color: white; }

/* --- STATS BAR --- */
.stats-bar { background: white; box-shadow: var(--shadow); position: relative; z-index: 5; }
.stat-item { padding: 22px 16px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; display: block; }
.stat-number sup { font-size: 1.1rem; color: var(--cta); }
.stat-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; margin-top: 4px; display: block; }

/* --- SECTION UTILITIES --- */
.section-py { padding: 80px 0; }
.section-py-sm { padding: 50px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge { display: inline-block; background: #dbeafe; color: var(--primary); padding: 4px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.section-badge.green { background: #dcfce7; color: var(--green); }
.section-badge.gold { background: #fef3c7; color: #92400e; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.section-title span { color: var(--secondary); }
.section-desc { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 0.95rem; }
.bg-white { background: white; }
.bg-light-blue { background: #eff6ff; }

/* --- ABOUT --- */
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 20px; width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; bottom: -16px; right: -16px; background: var(--primary); color: white; padding: 16px 22px; border-radius: 16px; text-align: center; box-shadow: var(--shadow-lg); }
.about-badge .badge-num { font-size: 2rem; font-weight: 800; display: block; line-height: 1; color: var(--accent); }
.about-badge .badge-text { font-size: 0.72rem; opacity: 0.85; margin-top: 2px; }
.about-content .role { color: var(--secondary); font-weight: 600; font-size: 0.9rem; margin-bottom: 14px; }
,.quals-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.qual-tag { background: #dbeafe; color: var(--primary); padding: 5px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.check-list { list-style: none; padding: 0; }
.check-list li { padding: 6px 0; color: var(--text-light); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; }
.check-list li::before { content: '✓'; color: var(--green); font-weight: 700; margin-top: 1px; flex-shrink: 0; }

/* --- SERVICE CARDS --- */
.service-card { background: white; border-radius: var(--radius); padding: 26px 22px; height: 100%; border: 1.5px solid var(--border); transition: var(--transition); display: block; color: var(--text); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--secondary); color: var(--text); }
.service-icon { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, #dbeafe, #bfdbfe); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 26px; color: var(--primary); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.6; }
.service-link { color: var(--secondary); font-weight: 600; font-size: 0.82rem; display: inline-flex; align-items: center; gap: 5px; }

/* --- WHY CHOOSE --- */
.why-section { background: linear-gradient(135deg, var(--primary) 0%, #1e4fc0 100%); color: white; }
.why-section .section-title { color: white; }
.why-section .section-desc { color: rgba(255,255,255,0.75); }
.why-card { background: rgba(255,255,255,0.1); border-radius: var(--radius); padding: 22px; border: 1px solid rgba(255,255,255,0.15); transition: var(--transition); height: 100%; }
.why-card:hover { background: rgba(255,255,255,0.17); transform: translateY(-4px); }
.why-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 20px; color: var(--accent); }
.why-card h4 { color: white; font-size: 0.95rem; margin-bottom: 7px; }
.why-card p { color: rgba(255,255,255,0.72); font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* --- OPD TIMINGS --- */
.opd-card { background: white; border-radius: var(--radius); padding: 28px; border: 2px solid var(--border); transition: var(--transition); height: 100%; position: relative; overflow: hidden; }
.opd-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--primary), var(--accent)); }
.opd-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.opd-badge { display: inline-block; background: #dcfce7; color: var(--green); padding: 3px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; margin-bottom: 14px; }
.opd-hospital { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.opd-address { color: var(--text-light); font-size: 0.85rem; margin-bottom: 18px; display: flex; align-items: flex-start; gap: 6px; }
.opd-timing-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.opd-timing-row:last-of-type { border-bottom: none; }
.opd-timing-row i { color: var(--secondary); width: 14px; font-size: 0.85rem; }
.opd-timing-row .t-label { font-weight: 600; font-size: 0.875rem; color: var(--text); flex: 1; }
.opd-timing-row .t-val { color: var(--primary); font-size: 0.85rem; font-weight: 600; }
.opd-btn { display: block; background: var(--primary); color: white; text-align: center; padding: 11px; border-radius: 8px; margin-top: 18px; font-weight: 600; font-size: 0.875rem; transition: var(--transition); }
.opd-btn:hover { background: var(--secondary); color: white; }

/* --- ACHIEVEMENTS --- */
.achievement-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: white; border-radius: var(--radius); margin-bottom: 14px; border: 1px solid var(--border); transition: var(--transition); }
.achievement-item:hover { box-shadow: var(--shadow); border-color: var(--secondary); }
.ach-icon { width: 46px; height: 46px; min-width: 46px; border-radius: 12px; background: linear-gradient(135deg, #fef3c7, #fde68a); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.achievement-item h4 { font-size: 0.9rem; margin-bottom: 3px; }
.achievement-item p { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* --- TESTIMONIALS --- */
.testimonial-card { background: var(--bg); border-radius: var(--radius); padding: 26px; border: 1px solid var(--border); height: 100%; position: relative; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--secondary); }
.testimonial-card::before { content: '\201C'; position: absolute; top: 12px; right: 18px; font-size: 64px; color: var(--border); font-family: Georgia, serif; line-height: 1; }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text); font-size: 0.875rem; line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 0.875rem; color: var(--text); display: block; }
.author-proc { font-size: 0.78rem; color: var(--text-light); }

/* --- FAQ --- */
.faq-item { background: white; border-radius: var(--radius); margin-bottom: 10px; border: 1.5px solid var(--border); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: #bfdbfe; }
.faq-question { width: 100%; background: none; border: none; padding: 18px 22px; text-align: left; font-weight: 600; font-size: 0.9rem; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: var(--transition); font-family: 'Inter', sans-serif; }
.faq-question:hover { color: var(--primary); }
.faq-question.active { color: var(--primary); border-bottom: 1px solid var(--border); background: #f8fbff; }
.faq-answer { display: none; padding: 18px 22px; color: var(--text-light); font-size: 0.875rem; line-height: 1.75; }
.faq-answer.show { display: block; }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: #eff6ff; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: var(--transition); flex-shrink: 0; color: var(--primary); border: 1.5px solid #bfdbfe; }
.faq-question.active .faq-icon { transform: rotate(45deg); background: var(--primary); color: white; border-color: var(--primary); }

/* --- BLOG --- */
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); height: 100%; transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.blog-card-img { height: 190px; overflow: hidden; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; position: relative; }
.blog-card-img .blog-icon { font-size: 55px; color: rgba(255,255,255,0.18); }
.blog-card-img .blog-cat { position: absolute; top: 14px; left: 14px; background: var(--cta); color: #0f172a; padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 0.78rem; color: var(--text-light); margin-bottom: 7px; display: flex; align-items: center; gap: 5px; }
.blog-card h3 { font-size: 1rem; margin-bottom: 9px; color: var(--primary); line-height: 1.4; }
.blog-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.blog-read-more { color: var(--secondary); font-weight: 600; font-size: 0.82rem; display: inline-flex; align-items: center; gap: 4px; margin-top: auto; }
.blog-read-more:hover { color: var(--primary); }

/* --- CTA BANNER --- */
.cta-banner { background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%); padding: 55px 0; text-align: center; }
.cta-banner h2 { color: #0f172a; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.cta-banner p { color: rgba(0,0,0,0.72); margin-bottom: 26px; font-size: 1rem; }

/* --- HOSPITAL STRIP --- */
.hospital-strip { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.hospital-pill { display: inline-flex; align-items: center; gap: 8px; background: #eff6ff; color: var(--primary); padding: 8px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; margin: 4px; }
.hospital-pill i { color: var(--secondary); }

/* --- FOOTER --- */
.footer { background: #0f172a; color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer .brand-name { color: white; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem; }
.footer .brand-sub { color: var(--accent); font-size: 0.78rem; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer h5 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 18px; padding-bottom: 10px; position: relative; }
.footer h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--accent); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; display: flex; align-items: center; gap: 7px; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-links a i { font-size: 0.7rem; color: var(--accent); }
.fc-item { display: flex; gap: 11px; margin-bottom: 14px; }
.fc-item i { color: var(--accent); margin-top: 3px; width: 14px; font-size: 0.85rem; flex-shrink: 0; }
.fc-item .fc-text { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.fc-item .fc-text a { color: rgba(255,255,255,0.6); }
.fc-item .fc-text a:hover { color: var(--accent); }
.social-icons { display: flex; gap: 9px; margin-top: 16px; }
.social-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 13px; transition: var(--transition); }
.social-icon:hover { background: var(--accent); color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; margin-top: 40px; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* --- WHATSAPP FLOAT --- */
.wa-float { position: fixed; bottom: 26px; right: 26px; background: #25d366; color: white; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.55); z-index: 9999; transition: var(--transition); }
.wa-float:hover { background: #128c7e; color: white; transform: scale(1.1); }
.wa-float::after { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; background: rgba(37,211,102,0.35); animation: wapulse 2.2s infinite; }
@keyframes wapulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }

/* --- PAGE HERO (inner pages) --- */
.page-hero { background: linear-gradient(135deg, var(--primary) 0%, #1a4fb5 100%); padding: 46px 0; color: white; }
.page-hero h1 { color: white; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.page-hero .breadcrumb { margin: 0; background: transparent; padding: 0; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.page-hero .breadcrumb-item.active { color: var(--accent); }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.65); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* --- SERVICE PAGES --- */
.proc-content { padding: 60px 0; }
.proc-sidebar { background: white; border-radius: var(--radius); padding: 26px; border: 1.5px solid var(--border); position: sticky; top: 80px; }
.sidebar-appt { background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius); padding: 22px; color: white; margin-bottom: 22px; }
.sidebar-appt h4 { color: white; font-size: 1rem; margin-bottom: 14px; }
.sidebar-appt .appt-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.85); }
.sidebar-appt .appt-row i { color: var(--accent); margin-top: 3px; width: 14px; }
.sidebar-services h5 { font-size: 0.9rem; margin-bottom: 14px; color: var(--primary); border-bottom: 2px solid var(--border); padding-bottom: 10px; }
.sidebar-services ul { list-style: none; padding: 0; }
.sidebar-services ul li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-services ul li:last-child { border-bottom: none; }
.sidebar-services ul li a { color: var(--text); font-size: 0.875rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.sidebar-services ul li a:hover { color: var(--primary); }
.sidebar-services ul li a i { color: var(--secondary); font-size: 0.75rem; }
.proc-article h2 { font-size: 1.5rem; margin: 30px 0 12px; }
.proc-article h3 { font-size: 1.15rem; margin: 22px 0 10px; }
.proc-article p { color: var(--text-light); line-height: 1.8; }
.proc-article ul, .proc-article ol { color: var(--text-light); line-height: 1.8; padding-left: 22px; margin-bottom: 16px; }
.proc-article li { margin-bottom: 6px; }
.highlight-box { background: #eff6ff; border-left: 4px solid var(--secondary); padding: 18px 22px; border-radius: 0 12px 12px 0; margin: 22px 0; }
.highlight-box p { margin: 0; color: var(--text); }

/* --- BLOG POST PADE --- */
.blog-post-wrap { padding: 60px 0; }
.blog-post-wrap h2 { font-size: 1.5rem; margin: 28px 0 10px; }
.blog-post-wrap h3 { font-size: 1.15rem; margin: 22px 0 8px; }
.blog-post-wrap p { color: var(--text-light); line-height: 1.85; }
.blog-post-wrap ul, .blog-post-wrap ol { color: var(--text-light); line-height: 1.8; padding-left: 22px; margin-bottom: 18px; }
.blog-post-wrap li { margin-bottom: 7px; }
.blog-author-box { background: #eff6ff; border-radius: var(--radius); padding: 22px; display: flex; gap: 18px; align-items: flex-start; margin-top: 36px; border: 1px solid #bfdbfe; }
.blog-author-box img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.blog-author-box h4 { font-size: 1rem; margin-bottom: 4px; }
.blog-author-box p { font-size: 0.85rem; margin: 0; }

/* --- CONTACT PAGE --- */
.contact-form-wrap { background: white; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-control, .form-select { border-radius: 8px; border: 1.5px solid var(--border); padding: 11px 16px; font-size: 0.9rem; transition: var(--transition); }
.form-control:focus, .form-select:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.form-label { font-weight: 600; font-size: 0.875rem; color: var(--text); margin-bottom: 6px; }

/* --- RESPONSIVE --- */
@media (max-width: 991.98px) {
  .hero { padding: 50px 0 40px; min-height: auto; }
  .hero-img { margin-top: 30px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .navbar-nav .nav-link { padding: 12px 16px !important; }
  .about-badge { bottom: -12px; right: -8px; }
}

@media (max-width: 767.98px) {
  .section-py { padding: 55px 0; }
  .hero h1 { font-size: 1.75rem; }
  .top-bar .d-flex { flex-direction: column; gap: 4px; font-size: 0.78rem; }
  .wa-float { bottom: 20px; right: 18px; width: 52px; height: 52px; font-size: 22px; }
  .about-badge { position: static; display: inline-block; margin-top: 16px; }
}
