/* ==========================================================================
   Hemophilia Society Rajkot - Master Stylesheet (style.css)
   ========================================================================== */

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  background-color: #ffffff;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  color: #1a3fa3;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

a:hover {
  color: #0d2568;
}

/* --- Primary Action Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1a3fa3;
  color: #ffffff !important;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #0f2b75;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* --- Container & Layout Wrapper --- */
.page-card {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Header Section (Full-Width Strip with Centered 1170px Container)
   ========================================================================== */
.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 20px;
  max-width: 1170px;
  margin: 0 auto;
  box-sizing: border-box;
}

.header-logo {
  width: 105px;
  height: 105px;
  flex-shrink: 0;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-title {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  min-width: 0;
}

.header-title img {
  max-width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
}

.header-badge {
  width: 105px;
  height: 105px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 4px;
  flex-shrink: 0;
  background: #ffffff;
}

.header-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================================================
   Main Navigation (Full-Width Strip with Centered 1170px Container)
   ========================================================================== */
nav.main-nav {
  width: 100%;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}

nav.main-nav ul.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  width: 100%;
}

nav.main-nav li {
  position: relative;
  display: inline-block;
}

nav.main-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 20px;
  color: #475569;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

nav.main-nav li:hover > a {
  color: #1a3fa3;
  background-color: #f1f5f9;
}

nav.main-nav li.active > a {
  background: #0f172a;
  color: #ffffff;
}

/* Submenu Dropdown (Desktop) */
nav.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 260px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  border-radius: 0 0 6px 6px;
  z-index: 1000;
}

nav.main-nav .sub-menu li {
  display: block;
  width: 100%;
}

nav.main-nav .sub-menu a {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  text-transform: none;
  border-bottom: 1px solid #f8fafc;
}

nav.main-nav .sub-menu a:hover {
  background-color: #f1f5f9;
  color: #1a3fa3;
  padding-left: 22px;
}

@media (min-width: 769px) {
  nav.main-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

.submenu-toggle {
  display: inline-block;
  font-size: 11px;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid #cbd5e1;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  margin: 8px 15px;
}

.mobile-menu-toggle svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}

.hero-slider,
.hero-swiper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}

.hero-slide {
  display: none;
  width: 100%;
  animation: fadeIn 0.6s ease-in-out;
}

.hero-slide.active {
  display: block;
}

.hero-swiper .swiper-slide {
  position: relative;
  width: 100%;
  display: block;
}

.hero-slide img,
.hero-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@keyframes fadeIn {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.hero-caption {
  position: absolute;
  top: 18px;
  right: 25px;
  background: rgba(255, 255, 255, 0.94);
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  z-index: 10;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  border-left: 4px solid #1a3fa3;
  backdrop-filter: blur(4px);
}

/* Swiper Navigation Arrows */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: #ffffff;
  background: rgba(15, 23, 42, 0.45);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.hero-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after {
  font-size: 16px;
  font-weight: 700;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: rgba(26, 63, 163, 0.85);
  transform: scale(1.1);
}

/* Swiper Pagination Bullets */
.hero-swiper .swiper-pagination {
  bottom: 12px !important;
}

.hero-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 0.7;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #1a3fa3;
  width: 26px;
  border-radius: 5px;
}

.hero-dots {
  text-align: center;
  padding: 14px 0 6px;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-dots button.active,
.hero-dots button:hover {
  background: #1a3fa3;
  transform: scale(1.2);
}

/* ==========================================================================
   Tagline & Dividers
   ========================================================================== */
.tagline {
  text-align: center;
  font-size: 21px;
  color: #334155;
  font-weight: 400;
  max-width: 820px;
  margin: 35px auto 25px;
  line-height: 1.6;
  padding: 0 20px;
}

hr.divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  max-width: 100%;
  margin: 30px auto;
}

/* ==========================================================================
   Feature Grid (Homepage 4 Columns)
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 35px 0;
  padding: 0 35px;
}

.feature-col {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.feature-image {
  width: 100%;
  height: 190px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

.feature-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.feature-col:hover .feature-image img {
  transform: scale(1.06);
}

.feature-col h3 {
  margin: 0 0 10px 0;
  font-size: 16.5px;
  line-height: 1.4;
}

.feature-col h3 a {
  color: #0f172a;
  font-weight: 600;
}

.feature-col h3 a:hover {
  color: #1a3fa3;
}

.feature-col p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 12px 0;
}

.feature-col ul {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  padding-left: 18px;
}

.feature-col li {
  margin-bottom: 6px;
}

/* ==========================================================================
   Homepage Support & Quick Contact Section
   ========================================================================== */
.bottom-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 35px;
  margin: 30px 0 0;
  padding: 35px 35px 45px;
  border-top: 1px solid #e2e8f0;
  background: #fafafa;
}

.info-block-col h3,
.widget-col h3 {
  font-size: 18px;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 16px;
}

.info-card-box h4 {
  margin: 0 0 8px;
  color: #1a3fa3;
  font-size: 15px;
}

.info-card-box p {
  margin: 0;
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
}

/* Widget / Contact Form */
.widget-col {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 22px;
}

.widget-col input,
.widget-col textarea,
.form-control {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 13.5px;
  font-family: inherit;
  color: #334155;
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.widget-col input:focus,
.widget-col textarea:focus,
.form-control:focus {
  outline: none;
  border-color: #1a3fa3;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 63, 163, 0.12);
}

.widget-col textarea {
  height: 90px;
  resize: vertical;
}

.widget-col button,
.btn-primary {
  background: #1a3fa3;
  color: #ffffff;
  border: none;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.widget-col button:hover,
.btn-primary:hover {
  background: #132e7a;
}

.widget-col button:disabled,
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13.5px;
  display: none;
  transition: opacity 0.4s ease;
}

.form-status.success {
  display: block;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-status.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-status.loading {
  display: block;
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #dbeafe;
}

/* ==========================================================================
   Inner Page Layout (Breadcrumb, Content, Sidebar)
   ========================================================================== */
.breadcrumb-bar {
  width: 100%;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
  max-width: 1170px;
  margin: 0 auto;
  padding: 12px 20px;
  box-sizing: border-box;
  font-size: 13px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: #64748b;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: #1a3fa3;
}

.breadcrumb .current {
  color: #0f172a;
  font-weight: 700;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 35px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 35px 20px;
  box-sizing: border-box;
  width: 100%;
  flex: 1;
}

.main-col {
  min-width: 0;
}

.main-col h1.page-title {
  font-size: 26px;
  color: #0f172a;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #1a3fa3;
  text-transform: capitalize;
}

.main-col h2 {
  font-size: 20px;
  color: #1e293b;
  margin: 24px 0 12px;
}

.main-col h3 {
  font-size: 17px;
  color: #1a3fa3;
  margin: 20px 0 10px;
}

.main-col p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 16px 0;
}

.main-col ul,
.main-col ol {
  font-size: 14.5px;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 20px 0;
  padding-left: 24px;
}

.main-col li {
  margin-bottom: 8px;
}

/* Sidebar Styles */
.sidebar-col {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 20px;
  height: fit-content;
}

.sidebar-col h2 {
  font-size: 16.5px;
  color: #0f172a;
  margin: 0 0 14px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #1a3fa3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-col li {
  border-bottom: 1px solid #e2e8f0;
}

.sidebar-col li:last-child {
  border-bottom: none;
}

.sidebar-col a {
  display: block;
  padding: 9px 8px;
  font-size: 13.5px;
  color: #475569;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sidebar-col a:hover,
.sidebar-col li.active a {
  color: #1a3fa3;
  padding-left: 14px;
  background-color: #f1f5f9;
  font-weight: 600;
}

/* ==========================================================================
   3-Column Structured Layout (What We Do & Overview)
   ========================================================================== */
.three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 25px 0 35px;
}

.card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 22px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.card-item.primary-card {
  border-top: 4px solid #1a3fa3;
}

.card-item.accent-card {
  border-top: 4px solid #0284c7;
}

.card-item.highlight-card {
  border-top: 4px solid #059669;
}

.card-item h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 17px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-item ul {
  padding-left: 20px;
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
}

.card-item li {
  margin-bottom: 8px;
}

/* Society Stats Banner */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 25px 0;
}

.stat-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 16px 12px;
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #1a3fa3;
  line-height: 1.2;
}

.stat-label {
  font-size: 12.5px;
  color: #64748b;
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ==========================================================================
   Photo Gallery Grid & Lightbox
   ========================================================================== */
.gallery-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.gallery-item {
  display: block;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  color: #ffffff;
  font-size: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -35px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ==========================================================================
   Videos Page Grid
   ========================================================================== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 20px 0;
}

.video-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.video-card-link {
  display: block;
  color: inherit;
}

.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail-wrapper img {
  transform: scale(1.05);
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 42px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.2s ease;
}

.video-item:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.15);
}

.video-caption {
  padding: 14px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

/* ==========================================================================
   Contact Page Layout & Info Box
   ========================================================================== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 20px;
}

.contact-info-panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
}

.contact-info-panel h3 {
  margin-top: 0;
  color: #0f172a;
  font-size: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #1a3fa3;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #334155;
}

.contact-detail-row svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #1a3fa3;
  margin-top: 2px;
}

.contact-map-wrapper {
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  height: 260px;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Universal Footer (Full-Width Strip with Centered 1170px Container)
   ========================================================================== */
.site-footer {
  width: 100%;
  margin-top: auto;
  background: #f8fafc;
  color: #475569;
  border-top: 3px solid #1a3fa3;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 35px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 45px 20px 35px;
  box-sizing: border-box;
}

.footer-col h4 {
  color: #0f172a;
  font-size: 15.5px;
  margin: 0 0 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: #1a3fa3;
}

.footer-col p {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 0 12px;
  color: #475569;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #475569;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #1a3fa3;
  padding-left: 6px;
}

.footer-bottom {
  width: 100%;
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
}

.footer-bottom-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 10px;
  box-sizing: border-box;
}

.footer-bottom a {
  color: #1a3fa3;
  font-weight: 600;
}

.footer-bottom a:hover {
  color: #0d2568;
  text-decoration: underline;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
.g-recaptcha {
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  margin-bottom: 12px;
  max-width: 100%;
}

@media (max-width: 992px) {
  .site-header {
    padding: 16px;
    gap: 15px;
  }
  .header-logo, .header-badge {
    width: 80px;
    height: 80px;
  }
  .header-title img {
    max-height: 65px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 15px;
  }
  .content-layout {
    grid-template-columns: 1fr;
    padding: 25px 15px;
  }
  .sidebar-col {
    order: 2;
  }
  .three-column-grid {
    grid-template-columns: 1fr;
  }
  .bottom-row {
    grid-template-columns: 1fr;
    padding: 25px 15px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 15px;
  }
  .hero {
    padding: 0;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .site-header {
    padding: 10px 8px;
    gap: 8px;
  }
  .header-inner {
    padding: 8px 10px;
    gap: 8px;
  }
  .header-logo, .header-badge {
    width: 55px;
    height: 55px;
  }
  .header-title img {
    max-height: 48px;
  }
  
  /* Mobile Navigation */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 24px);
    margin: 8px auto;
  }
  
  nav.main-nav ul.menu {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  nav.main-nav ul.menu.open {
    display: flex;
  }

  nav.main-nav li {
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
  }

  nav.main-nav li:last-child {
    border-bottom: none;
  }

  nav.main-nav a {
    padding: 12px 16px;
    justify-content: space-between;
  }

  nav.main-nav .sub-menu,
  nav.main-nav li.menu-item-has-children > .sub-menu {
    position: static;
    display: none !important;
    box-shadow: none;
    border: none;
    background: #f1f5f9;
    padding-left: 12px;
  }

  nav.main-nav li.menu-item-has-children.open > .sub-menu {
    display: block !important;
  }

  nav.main-nav li.menu-item-has-children.open .submenu-toggle {
    transform: rotate(180deg);
  }

  .hero {
    padding: 0;
    margin-top: 10px;
  }
  .hero-caption {
    top: 8px;
    right: 12px;
    font-size: 11px;
    padding: 4px 10px;
  }
  .tagline {
    font-size: 16px;
    margin: 15px auto;
    padding: 0 10px;
  }
  .bottom-row {
    padding: 20px 10px;
    gap: 20px;
    margin-top: 15px;
  }
  .info-card-box {
    padding: 14px 12px;
  }
  .widget-col {
    padding: 16px 12px;
  }
  .gallery-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 8px;
  }
  .site-header {
    padding: 6px 4px;
    gap: 4px;
  }
  .header-inner {
    padding: 6px 4px;
    gap: 4px;
  }
  .header-logo, .header-badge {
    width: 44px;
    height: 44px;
  }
  .header-title img {
    max-height: 38px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    padding: 0 6px;
    gap: 14px;
  }
  .gallery-list {
    grid-template-columns: 1fr;
  }
  .breadcrumb-bar {
    padding: 8px 10px;
  }
  .breadcrumb {
    padding: 8px 10px;
    font-size: 11.5px;
  }
  .content-layout {
    padding: 16px 8px;
  }
  .main-col h1.page-title {
    font-size: 20px;
  }
  .bottom-row {
    padding: 14px 6px;
    gap: 16px;
  }
  .info-card-box {
    padding: 12px 10px;
  }
  .widget-col {
    padding: 14px 10px;
  }
  .widget-col input,
  .widget-col textarea,
  .form-control {
    padding: 8px 10px;
    font-size: 13px;
  }
  .g-recaptcha {
    transform: scale(0.82);
    -webkit-transform: scale(0.82);
  }
}

@media (max-width: 360px) {
  .site-header {
    padding: 4px 2px;
    gap: 2px;
  }
  .header-inner {
    padding: 4px 2px;
    gap: 2px;
  }
  .header-logo, .header-badge {
    width: 36px;
    height: 36px;
  }
  .header-title img {
    max-height: 30px;
  }
  .g-recaptcha {
    transform: scale(0.72);
    -webkit-transform: scale(0.72);
  }
  .widget-col {
    padding: 12px 6px;
  }
}
