/* ==========================================================
   কাজী অফিস ওয়েবসাইট - প্রধান স্টাইলশীট (CSS)
   Font: Hind Siliguri | Modern Govt & Legal Portal Aesthetic
   ========================================================== */

:root {
  --primary-color: #0b6b45;
  --primary-hover: #085436;
  --primary-dark: #043d26;
  --primary-light: #e8f5e9;
  --primary-subtle: #f0fdf4;
  --primary-border: #bbf7d0;

  --accent-gold: #d97706;
  --accent-gold-bg: #fef3c7;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  
  --bg-page: #f8faf7;
  --bg-card: #ffffff;
  --border-card: #e2e8f0;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 30px -4px rgba(11, 107, 69, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 14px 34px -4px rgba(11, 107, 69, 0.14), 0 6px 16px -2px rgba(0, 0, 0, 0.06);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ==========================================================
   Fix for Hind Siliguri Bengali Digit 1 (১ - U+09E7)
   Replaces only digit 1 (১) with standard Bengali numeral
   while keeping 100% pure Hind Siliguri for all other text
   ========================================================== */
@font-face {
  font-family: 'BanglaOneFix';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosansbengali/v33/Cn-fJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mc4I3mYvNY.woff2) format('woff2');
  unicode-range: U+09E7;
}

@font-face {
  font-family: 'BanglaOneFix';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosansbengali/v33/Cn-fJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mc4I3mYvNY.woff2) format('woff2');
  unicode-range: U+09E7;
}

@font-face {
  font-family: 'BanglaOneFix';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosansbengali/v33/Cn-fJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mc4I3mYvNY.woff2) format('woff2');
  unicode-range: U+09E7;
}

@font-face {
  font-family: 'BanglaOneFix';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosansbengali/v33/Cn-fJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mc4I3mYvNY.woff2) format('woff2');
  unicode-range: U+09E7;
}

body, button, input, select, textarea {
  font-family: 'BanglaOneFix', 'Hind Siliguri', 'SolaimanLipi', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.text-center {
  text-align: center;
}

/* ==========================================================
   Header & Navigation Bar
   ========================================================== */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

.brand-subtitle {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Desktop Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: var(--primary-light);
}

.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-card);
  margin-bottom: 16px;
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.drawer-link:hover {
  background: var(--primary-light);
  color: var(--primary-color);
}

.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1999;
}

.drawer-backdrop.active {
  display: block;
}

/* ==========================================================
   Hero Section / অফিস পরিচিতি
   ========================================================== */
.hero-section {
  padding: 56px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: start;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  border: 1px solid var(--primary-border);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.hero-title .highlight-text {
  color: var(--primary-color);
}

.hero-area {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Kazi Designation Box */
.kazi-designation-box {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 8px 18px 8px 10px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--primary-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.kazi-avatar-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-color), #34d399);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.kazi-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
}

.kazi-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.kazi-role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* CTA Group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(11, 107, 69, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 107, 69, 0.35);
}

.btn-outline {
  background-color: #ffffff;
  color: var(--text-main);
  border-color: var(--border-card);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: var(--primary-subtle);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary-border);
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

/* Disclaimer Alert */
.disclaimer-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: #92400e;
  line-height: 1.6;
}

.disclaimer-alert i {
  font-size: 1.2rem;
  color: #d97706;
  margin-top: 2px;
}

/* Right Card: Profile & QR */
.hero-card-column {
  position: sticky;
  top: 100px;
}

.profile-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.profile-card:hover {
  box-shadow: var(--shadow-hover);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.avatar-ring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--primary-color), #34d399);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.kazi-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
}

.profile-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.profile-role {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #047857;
  background: #d1fae5;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.profile-divider {
  height: 1px;
  background: var(--border-card);
  margin: 20px 0;
}

.profile-bio {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.qr-box {
  background: var(--primary-subtle);
  border: 1px dashed var(--primary-border);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}

.qr-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.qr-title {
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.qr-hint {
  color: var(--text-light);
  font-size: 0.82rem;
}

.qr-display-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.qr-canvas {
  background: #ffffff;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
}

.qr-canvas canvas {
  display: none !important;
}

.qr-canvas img {
  display: block !important;
  margin: 0 auto;
  width: 140px !important;
  height: 140px !important;
}

.btn-facebook-full {
  width: 100%;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  font-size: 0.95rem;
}

.btn-facebook-full:hover {
  background: var(--primary-hover);
  color: #ffffff;
}

/* ==========================================================
   Section Common Styles
   ========================================================== */
.section-wrapper {
  padding: 56px 0;
}

.section-title-wrap {
  margin-bottom: 36px;
}

.badge-sub {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================
   Services Section (প্রধান সেবা ও তথ্য)
   ========================================================== */
.services-section {
  background-color: #ffffff;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-page);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-border);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--primary-color);
  color: #ffffff;
}

.service-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
  flex-grow: 1;
}

.service-footer-badge {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================
   Age Verification Tool (বয়স যাচাই)
   ========================================================== */
.age-checker-section {
  background: var(--bg-page);
}

.age-calc-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
  padding: 36px;
  max-width: 960px;
  margin: 0 auto;
}

.age-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.age-calc-box {
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.person-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.person-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.groom-icon {
  background: #dbeafe;
  color: #1d4ed8;
}

.bride-icon {
  background: #fce7f3;
  color: #db2777;
}

.person-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-main);
}

.person-req {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.input-group {
  margin-bottom: 16px;
}

.input-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-main);
  background: #ffffff;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(11, 107, 69, 0.12);
}

.age-result-box {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  line-height: 1.6;
  animation: fadeIn 0.3s ease-in-out;
}

.result-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.result-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* ==========================================================
   Marriage Fee Calculator (বিবাহ ফি ক্যালকুলেটর)
   ========================================================== */
.fee-calculator-section {
  background: #ffffff;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.fee-calc-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.fee-form-side {
  background: var(--bg-page);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.fee-input-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.fee-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.fee-input {
  font-size: 1.35rem;
  font-weight: 700;
  padding: 12px 16px;
  padding-right: 90px;
  color: var(--primary-dark);
}

.currency-badge {
  position: absolute;
  right: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  pointer-events: none;
}

.preset-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.preset-btn {
  background: #ffffff;
  border: 1px solid var(--border-card);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.preset-btn:hover, .preset-btn.active {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.fee-rules-info {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1px solid var(--border-card);
}

.fee-rules-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.fee-rules-info ul {
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Fee Result Card */
.fee-result-side {
  position: sticky;
  top: 100px;
}

.fee-summary-card {
  background: linear-gradient(145deg, var(--primary-dark), #0b593a);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}

.fee-result-heading {
  display: block;
  font-size: 0.96rem;
  font-weight: 500;
  color: #a7f3d0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.fee-total-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.fee-breakdown-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 18px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-row:last-child {
  border-bottom: none;
}

.breakdown-row.total-row {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fef08a;
  padding-top: 10px;
}

.fee-note {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* ==========================================================
   Contact Section (যোগাযোগ)
   ========================================================== */
.contact-section {
  background: var(--bg-page);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
}

.contact-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.whatsapp-icon-box {
  background: #dcfce7;
  color: #16a34a;
}

.messenger-icon-box {
  background: #e0f2fe;
  color: #0284c7;
}

.facebook-icon-box {
  background: #eff6ff;
  color: #2563eb;
}

.contact-type {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.contact-detail {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-action-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-action {
  background: var(--primary-color);
  color: #ffffff;
  padding: 7px 16px;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-action:hover {
  background: var(--primary-hover);
  color: #ffffff;
}

.btn-action-outline {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-card);
  padding: 7px 18px;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-action-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: var(--primary-subtle);
}

/* Address Card */
.address-card-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.address-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.address-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.address-details {
  flex-grow: 1;
}

.address-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.address-line {
  font-size: 1.02rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.address-office {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.address-email {
  font-size: 0.96rem;
  color: var(--text-muted);
}

.address-email a {
  color: var(--primary-color);
  font-weight: 600;
}

.address-email a:hover {
  text-decoration: underline;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.88rem;
}

/* ==========================================================
   Footer Section
   ========================================================== */
.footer-wrapper {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 36px 0;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-subtitle {
  font-size: 0.9rem;
  color: #a7f3d0;
}

.footer-copyright {
  font-size: 0.88rem;
  color: #cbd5e1;
}

/* ==========================================================
   Floating Quick Action Bar (Mobile only)
   ========================================================== */
.floating-quick-bar {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 1500;
  gap: 12px;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.float-call {
  background: var(--primary-color);
}

.float-wa {
  background: #16a34a;
}

/* ==========================================================
   Toast Notification
   ========================================================== */
.toast-box {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0f172a;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   Responsive Breakpoints
   ========================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .hero-card-column {
    position: static;
    max-width: 540px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fee-calc-container {
    grid-template-columns: 1fr;
  }
  
  .fee-result-side {
    position: static;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    height: 68px;
  }

  .brand-logo-img {
    width: 42px;
    height: 42px;
  }

  .brand-title {
    font-size: 1.02rem;
  }

  .brand-subtitle {
    font-size: 0.8rem;
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle-btn {
    display: block;
  }

  .hero-section {
    padding: 28px 0 24px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-area {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .hero-cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-cta-group .btn {
    padding: 10px 10px;
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .age-calc-grid {
    grid-template-columns: 1fr;
  }

  .address-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .floating-quick-bar {
    display: flex;
  }

  .contact-card {
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .kazi-designation-box {
    border-radius: var(--radius-md);
    padding: 10px 14px;
  }

  .contact-action-group {
    width: 100%;
    justify-content: flex-start;
  }
  .contact-action-group .btn-action {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}
