/* ==========================================================================
   Subhadra Yojana Custom WordPress Theme Stylesheet
   ========================================================================== */

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

html {
  font-family: var(--sy-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--sy-text-body);
  background-color: var(--sy-bg-card);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--sy-primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  touch-action: manipulation;
}

a:hover, a:focus {
  color: var(--sy-primary-hover);
  text-decoration: underline;
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--sy-text-dark);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: clamp(1rem, 2vw, 1.15rem); }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

p {
  margin-bottom: 1.2rem;
}

ul, ol {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.4rem;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* Layout Containers */
.sy-container {
  width: 100%;
  max-width: var(--sy-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.sy-container-narrow {
  max-width: var(--sy-container-narrow);
}

.site-main {
  flex: 1 0 auto;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

/* Header & Top Bar */
.sy-top-bar {
  background: #1e293b;
  color: #f8fafc;
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 2px solid #0284c7;
  position: relative;
  z-index: 10001;
}

.sy-lang-switcher, .sy-desktop-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 99999;
  pointer-events: auto !important;
}

.sy-lang-select {
  cursor: pointer;
  pointer-events: auto !important;
  position: relative;
  z-index: 99999;
}

.sy-top-bar-inner {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 12px;
  width: 100%;
}

.sy-top-bar-left, .sy-top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.sy-top-bar-left span, .sy-top-bar-right span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sy-top-bar-left a {
  color: #ffb142;
  font-weight: 700;
  text-decoration: none;
}

.sy-top-bar-left a:hover {
  text-decoration: underline;
}

.sy-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.sy-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.sy-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sy-branding img {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0284c7;
  flex-shrink: 0;
}

.sy-site-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0284c7;
  margin: 0;
  line-height: 1.15;
}

.sy-site-title a {
  color: #0284c7;
  text-decoration: none;
}

.sy-site-description {
  font-size: 0.8rem;
  color: #64748b;
  margin: 2px 0 0 0;
  font-weight: 600;
}

/* Header Navigation & Dropdown Sub-menu */
.sy-nav {
  display: flex;
  align-items: center;
}

.sy-primary-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sy-primary-menu > li {
  position: relative;
  margin: 0;
}

.sy-primary-menu > li > a {
  color: #1e293b;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.sy-primary-menu > li > a:hover,
.sy-primary-menu > li.current-menu-item > a,
.sy-primary-menu > li.current-page-ancestor > a {
  color: #0284c7;
  background: #f0f9ff;
}

.sy-dropdown-icon {
  font-size: 0.75rem;
  color: #0284c7;
  transition: transform 0.2s ease;
}

/* Desktop Hover Dropdown */
.sy-primary-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sy-primary-menu .menu-item-has-children:hover .sy-dropdown-icon {
  transform: rotate(180deg);
}

.sy-primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  list-style: none;
  margin: 6px 0 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 999;
}

.sy-primary-menu .sub-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 20px;
  width: 9px;
  height: 9px;
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  transform: rotate(45deg);
}

.sy-primary-menu .sub-menu li {
  margin: 0;
}

.sy-primary-menu .sub-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.sy-primary-menu .sub-menu li a:hover {
  background: #f0f9ff;
  color: #0284c7;
}

/* Mobile Hamburger Toggle */
.sy-mobile-toggle {
  display: none;
  background: #e0f2fe;
  border: 1.5px solid #0284c7;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  color: #0284c7;
  font-size: 1.2rem;
  font-weight: 700;
}

.sy-mobile-drawer {
  display: none;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0 15px;
}

.sy-mobile-drawer.is-active {
  display: block;
}

.sy-mobile-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sy-mobile-drawer li a,
.sy-mobile-parent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
}

.sy-mobile-drawer li a:hover,
.sy-mobile-parent-header:hover {
  background: #f8fafc;
  color: #0284c7;
}

.sy-mobile-submenu {
  display: none;
  background: #f8fafc;
  padding-left: 12px !important;
}

.sy-mobile-parent.is-open .sy-mobile-submenu {
  display: block;
}

.sy-mobile-parent.is-open .sy-mobile-arrow {
  transform: rotate(180deg);
}

.sy-mobile-arrow {
  transition: transform 0.2s ease;
  font-size: 0.8rem;
  color: #0284c7;
}

.sy-mobile-drawer li a {
  display: block;
  padding: 10px 20px;
  font-weight: 600;
  color: var(--sy-text-body);
  border-bottom: 1px solid #f7f7f7;
}

/* Hero Section */
.sy-hero {
  background: linear-gradient(135deg, #fff9ef 0%, #ffffff 100%);
  padding: 40px 0 50px;
  border-bottom: 1px solid var(--sy-border-subtle);
}

.sy-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sy-hero-content h1 {
  font-size: 2.2rem;
  color: var(--sy-text-dark);
  line-height: 1.25;
  margin-bottom: 10px;
}

.sy-hero-content h1 span {
  color: var(--sy-primary);
}

.sy-hero-subtitle {
  color: var(--sy-secondary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sy-hero-content p {
  color: var(--sy-text-body);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.sy-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.sy-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--sy-radius-sm);
  text-align: center;
  box-shadow: var(--sy-shadow-sm);
  transition: transform 0.2s ease, filter 0.2s ease;
  flex: 1 1 200px;
  max-width: 280px;
  min-height: 52px;
}

.sy-pill-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  text-decoration: none;
}

.sy-pill-1 { background-color: var(--sy-pill-1); }
.sy-pill-2 { background-color: var(--sy-pill-2); }
.sy-pill-3 { background-color: var(--sy-pill-3); }
.sy-pill-4 { background-color: var(--sy-pill-4); }

.sy-hero-image img {
  border-radius: var(--sy-radius-lg);
  box-shadow: var(--sy-shadow-lg);
  width: 100%;
  object-fit: cover;
}

/* Statistics Bar */
.sy-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.sy-stat-card {
  background: #ffffff;
  border: 1px solid var(--sy-border-light);
  border-radius: var(--sy-radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--sy-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sy-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sy-shadow-md);
}

.sy-stat-card h3 {
  font-size: 2.2rem;
  color: var(--sy-primary);
  margin-bottom: 4px;
}

.sy-stat-card p {
  margin: 0;
  color: var(--sy-text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Common Styles */
.sy-section {
  padding: 50px 0;
}

.sy-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.sy-section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.sy-section-header .sy-sub-title {
  color: var(--sy-secondary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* Objectives List */
.sy-objectives-list {
  list-style: none;
  padding: 0;
  max-width: 850px;
  margin: 0 auto;
}

.sy-objectives-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: var(--sy-radius-md);
  border: 1px solid var(--sy-border-light);
  margin-bottom: 15px;
  box-shadow: var(--sy-shadow-sm);
}

.sy-objectives-icon {
  color: var(--sy-accent);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Features Grid */
.sy-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.sy-card {
  background: #ffffff;
  border: 1px solid var(--sy-border-light);
  border-radius: var(--sy-radius-md);
  padding: 28px 24px;
  box-shadow: var(--sy-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sy-shadow-md);
}

.sy-card h3 {
  color: var(--sy-secondary);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.sy-card p {
  color: var(--sy-text-body);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Process Step Cards */
.sy-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.sy-step-card {
  background: var(--sy-bg-light);
  border: 1px solid var(--sy-border-light);
  border-radius: var(--sy-radius-md);
  padding: 28px 20px;
  position: relative;
}

.sy-step-number {
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: var(--sy-primary);
  border: 2px solid var(--sy-primary);
  border-radius: var(--sy-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.sy-step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.sy-step-card h3 span {
  display: block;
  color: var(--sy-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
}

.sy-step-card p {
  font-size: 0.9rem;
  color: var(--sy-text-muted);
  margin: 0;
}

/* Pre-Application Form Component */
.sy-form-wrap {
  background: #ffffff;
  border: 1px solid var(--sy-border-light);
  border-radius: var(--sy-radius-lg);
  padding: 35px;
  box-shadow: var(--sy-shadow-md);
  max-width: 900px;
  margin: 30px auto 0;
}

.sy-alert-info {
  background: #fff8f0;
  border-left: 4px solid var(--sy-primary);
  padding: 16px 20px;
  border-radius: 0 var(--sy-radius-sm) var(--sy-radius-sm) 0;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.sy-form-section {
  background: #fafafa;
  border: 1px solid var(--sy-border-light);
  border-radius: var(--sy-radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.sy-form-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sy-text-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sy-border-subtle);
}

.sy-form-section-title svg {
  color: var(--sy-primary);
}

.sy-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sy-form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.sy-field {
  margin-bottom: 16px;
}

.sy-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sy-text-dark);
  margin-bottom: 6px;
}

.sy-field label .req {
  color: #e24b4a;
}

.sy-field input[type="text"],
.sy-field input[type="date"],
.sy-field input[type="tel"],
.sy-field input[type="number"],
.sy-field select,
.sy-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--sy-border-subtle);
  border-radius: var(--sy-radius-sm);
  background: #ffffff;
  color: var(--sy-text-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sy-field input:focus,
.sy-field select:focus,
.sy-field textarea:focus {
  border-color: var(--sy-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.sy-doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sy-doc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  background: #ffffff;
  border: 1px solid var(--sy-border-subtle);
  border-radius: var(--sy-radius-sm);
  padding: 10px 14px;
  cursor: pointer;
}

.sy-doc-item input[type="checkbox"] {
  accent-color: var(--sy-primary);
  width: 18px;
  height: 18px;
}

.sy-consent-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.sy-consent-item input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--sy-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sy-btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--sy-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--sy-radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.sy-btn-submit:hover {
  background: var(--sy-primary-hover);
}

.sy-btn-submit:active {
  transform: scale(0.99);
}

.sy-success-box {
  display: none;
  background: #f0faf0;
  border: 2px solid #7bc47b;
  border-radius: var(--sy-radius-md);
  padding: 30px;
  text-align: center;
  margin-top: 25px;
}

.sy-success-icon {
  width: 56px;
  height: 56px;
  background: #27ae60;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 15px;
}

.sy-ref-badge {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #7bc47b;
  border-radius: var(--sy-radius-sm);
  padding: 8px 20px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a5c1a;
  margin: 15px 0;
  letter-spacing: 0.05em;
}

/* Age Calculator Widget */
.sy-calculator-card {
  background: #ffffff;
  border: 1px solid var(--sy-border-light);
  border-radius: var(--sy-radius-lg);
  padding: 30px;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: var(--sy-shadow-md);
}

.sy-calc-result {
  display: none;
  margin-top: 20px;
}

.sy-calc-badge-green {
  background: #f0faf0;
  border: 1.5px solid #5ab85a;
  border-radius: var(--sy-radius-md);
  padding: 16px 20px;
  color: #1a5c1a;
}

.sy-calc-badge-red {
  background: #fff5f5;
  border: 1.5px solid #e87070;
  border-radius: var(--sy-radius-md);
  padding: 16px 20px;
  color: #7a1a1a;
}

/* Blog & Archive Cards */
.sy-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.sy-post-card {
  background: #ffffff;
  border: 1px solid var(--sy-border-light);
  border-radius: var(--sy-radius-md);
  overflow: hidden;
  box-shadow: var(--sy-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sy-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sy-shadow-md);
}

.sy-post-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f7f7f7;
}

.sy-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sy-post-card:hover .sy-post-card-image img {
  transform: scale(1.04);
}

.sy-post-card-content {
  padding: 24px;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.sy-post-meta {
  font-size: 0.82rem;
  color: var(--sy-text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sy-post-category a {
  color: var(--sy-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sy-post-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.sy-post-card h3 a {
  color: var(--sy-text-dark);
}

.sy-post-card h3 a:hover {
  color: var(--sy-primary);
}

.sy-post-card p {
  font-size: 0.95rem;
  color: var(--sy-text-body);
  margin-bottom: 20px;
  flex: 1 0 auto;
}

.sy-btn-readmore {
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sy-primary);
}

/* Sidebar & Layout */
.sy-main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

.sy-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sy-widget {
  background: #ffffff;
  border: 1px solid var(--sy-border-light);
  border-radius: var(--sy-radius-md);
  padding: 24px;
  box-shadow: var(--sy-shadow-sm);
}

.sy-widget-title {
  font-size: 1.15rem;
  color: var(--sy-text-dark);
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--sy-primary);
}

.sy-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sy-widget li {
  padding: 8px 0;
  border-bottom: 1px solid var(--sy-border-subtle);
}

.sy-widget li:last-child {
  border-bottom: none;
}

/* Single Post & Page */
.sy-single-article {
  background: #ffffff;
  border: 1px solid var(--sy-border-light);
  border-radius: var(--sy-radius-lg);
  padding: 40px;
  box-shadow: var(--sy-shadow-sm);
}

/* Global Font Enforcement */
body, button, input, select, textarea, h1, h2, h3, h4, h5, h6, .sy-single-article, .sy-page-card, .sy-post-card, .sy-breadcrumbs {
  font-family: 'Mukta', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.sy-breadcrumbs {
  font-size: 0.88rem;
  color: #64748b;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.sy-breadcrumbs a {
  color: #0284c7;
  font-weight: 600;
  text-decoration: none;
}

.sy-breadcrumbs a:hover {
  color: #0369a1;
  text-decoration: underline;
}

.sy-breadcrumbs span {
  color: #334155;
  font-weight: 600;
}

.sy-post-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: #475569;
  padding: 12px 18px;
  background: #f8fafc;
  border-left: 4px solid #0284c7;
  border-radius: 6px;
  margin-bottom: 24px;
}

.sy-post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.sy-single-title {
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 15px;
}

.sy-single-featured-image {
  margin: 25px 0 35px;
  border-radius: var(--sy-radius-md);
  overflow: hidden;
}

.sy-single-featured-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.sy-entry-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

.sy-entry-content blockquote {
  border-left: 4px solid var(--sy-primary);
  padding-left: 20px;
  margin: 25px 0;
  font-style: italic;
  color: var(--sy-text-muted);
  background: var(--sy-bg-light);
  padding: 16px 20px;
  border-radius: 0 var(--sy-radius-sm) var(--sy-radius-sm) 0;
}

/* Pagination */
.sy-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.sy-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--sy-border-subtle);
  border-radius: var(--sy-radius-sm);
  color: var(--sy-text-body);
  font-weight: 700;
  font-size: 0.95rem;
}

.sy-pagination .page-numbers.current,
.sy-pagination .page-numbers:hover {
  background: var(--sy-primary);
  color: #ffffff;
  border-color: var(--sy-primary);
  text-decoration: none;
}

/* Footer */
.sy-footer {
  background: #020917;
  color: #a0aec0;
  padding-top: 50px;
  margin-top: auto;
}

.sy-footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1a202c;
}

.sy-footer-widget h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.sy-footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--sy-primary);
}

.sy-footer-widget p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.sy-footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sy-footer-widget li a {
  color: #a0aec0;
  font-size: 0.9rem;
  display: inline-block;
  padding: 4px 0;
}

.sy-footer-widget li a:hover {
  color: #ffffff;
  text-decoration: none;
}

.sy-footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #718096;
}

.sy-footer-bottom a {
  color: #a0aec0;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .sy-main-layout {
    grid-template-columns: 1fr;
  }
  
  .sy-hero-grid {
    grid-template-columns: 1fr;
  }
  
  .sy-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .sy-nav {
    display: none !important;
  }
  
  .sy-mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #e0f2fe;
    border: 1.5px solid #0284c7;
    color: #0284c7;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
  }
  
  .sy-form-grid-2,
  .sy-form-grid-3,
  .sy-doc-grid {
    grid-template-columns: 1fr;
  }
  
  .sy-hero-content h1 {
    font-size: 1.7rem;
  }
  
  .sy-single-article {
    padding: 24px 18px;
  }
  
  .sy-form-wrap {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .sy-stats {
    grid-template-columns: 1fr;
  }
  
  .sy-pill-link {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

/* Language Switcher Button Styling */
.sy-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0284c7;
}

.sy-lang-switcher label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sy-lang-select {
  border: none;
  background: transparent;
  color: #0284c7;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  outline: none;
  font-family: inherit;
}

/* Responsive Split Grid Helper Classes & Mobile Vertical Stacking */
.sy-split-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sy-split-grid-bonus {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: center;
}

@media (max-width: 900px) {
  .sy-main-layout,
  .sy-hero-grid,
  .sy-split-grid-2,
  .sy-split-grid-bonus,
  .sy-grid-cards {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .sy-hero-content, .sy-hero-image {
    width: 100% !important;
  }

  .sy-top-bar-left span.sy-source-text,
  .sy-top-bar-right span.sy-editorial-text,
  .sy-divider {
    display: none !important;
  }

  .sy-top-bar-inner {
    padding: 2px 0;
  }
}

/* Blog Grid Card & Article Styling */
.sy-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.sy-post-card {
  background: #ffffff;
  border: 1px solid var(--sy-border-light);
  border-radius: var(--sy-radius-md);
  overflow: hidden;
  box-shadow: var(--sy-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.sy-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sy-shadow-md);
}

.sy-post-card-image {
  height: 180px;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #0284c7;
  font-weight: 800;
  font-size: 1.3rem;
}

.sy-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sy-post-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sy-post-meta {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sy-post-category {
  color: #0284c7;
  font-weight: 700;
  text-transform: uppercase;
}

.sy-post-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.sy-post-card h3 a {
  color: #0f172a;
  text-decoration: none;
}

.sy-post-card h3 a:hover {
  color: #0284c7;
}

.sy-post-card p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.sy-btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0284c7;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}

.sy-btn-readmore:hover {
  color: #0369a1;
  text-decoration: underline;
}

/* Single Article & Page Content Styling */
.sy-single-article, .sy-page-card {
  background: #ffffff;
  border: 1px solid var(--sy-border-light);
  border-radius: var(--sy-radius-lg);
  padding: 35px;
  box-shadow: var(--sy-shadow-sm);
  margin-bottom: 40px;
}

.sy-single-header h1, .sy-page-card h1 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.sy-entry-content {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.8;
  margin-top: 20px;
}

.sy-entry-content p {
  margin-bottom: 18px;
}

.sy-entry-content h2 {
  font-size: 1.4rem;
  color: #0369a1;
  margin: 28px 0 14px;
}

.sy-entry-content h3 {
  font-size: 1.2rem;
  color: #0284c7;
  margin: 22px 0 10px;
}

.sy-entry-content ul, .sy-entry-content ol {
  margin-bottom: 18px;
  padding-left: 24px;
}

.sy-entry-content li {
  margin-bottom: 8px;
}

/* Contact Form Styling */
.sy-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.sy-contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sy-contact-field label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1e293b;
}

.sy-contact-field input,
.sy-contact-field select,
.sy-contact-field textarea {
  padding: 12px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.sy-contact-field input:focus,
.sy-contact-field select:focus,
.sy-contact-field textarea:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.sy-btn-submit {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s ease;

}

.sy-btn-submit:hover {
  opacity: 0.92;
}

