/* ==========================================================================
   Plan-It Incorporated - Modern Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #126255;
  --primary-hover: #0c473e;
  --primary-light: #e4f4f1;
  --card-bg: #d9ece8;
  --card-bg-gradient: linear-gradient(135deg, #ddf0ec 0%, #d4eae5 100%);
  --hero-bg-gradient: linear-gradient(160deg, #edf7f5 0%, #e1f2ef 100%);
  --text-main: #1e293b;
  --text-muted: #475569;
  --text-light: #64748b;
  --border-accent: #126255;
  --border-light: #e2e8f0;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px rgba(18, 98, 85, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-muted);
  background-color: #f8fbfa;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-normal);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

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

.container-narrow {
  max-width: 860px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18, 98, 85, 0.08);
  padding: 16px 0;
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-hover);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--primary-color);
  transition: var(--transition-normal);
  border-radius: 2px;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* ==========================================================================
   Page Hero (Inner Pages)
   ========================================================================== */
.page-hero {
  position: relative;
  background: var(--hero-bg-gradient);
  padding: 60px 0 70px;
  text-align: center;
  overflow: hidden;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 20px;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(18, 98, 85, 0.1);
}

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

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Hero Section (Home)
   ========================================================================== */
.hero-section {
  position: relative;
  background: var(--hero-bg-gradient);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-shape-top-left {
  top: -60px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 219, 210, 0.45) 0%, rgba(225, 242, 239, 0) 70%);
}

.hero-shape-bottom-right {
  bottom: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 219, 210, 0.5) 0%, rgba(225, 242, 239, 0) 70%);
}

.hero-network-overlay {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 500px;
  height: 350px;
  opacity: 0.35;
  background-image: radial-gradient(#126255 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  z-index: 1;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-constellation {
  position: absolute;
  top: 40px;
  left: 80px;
  width: 380px;
  height: 260px;
  z-index: 1;
  opacity: 0.4;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.22;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title .highlight,
.page-hero-title .highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--primary-color);
  background-color: var(--white);
  transition: transform var(--transition-normal);
}

.hero-image-card:hover {
  transform: translateY(-4px);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  text-align: center;
  letter-spacing: 0.2px;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(18, 98, 85, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(18, 98, 85, 0.35);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-card {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 22px;
  font-size: 13.5px;
  border-radius: var(--radius-pill);
  box-shadow: 0 3px 10px rgba(18, 98, 85, 0.2);
}

.btn-card:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(18, 98, 85, 0.3);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

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

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 16px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.section-divider span {
  display: inline-block;
  height: 3px;
  background-color: #126255;
  border-radius: 2px;
}

.section-divider span.dot {
  width: 4px;
  background-color: #8bbbb2;
}

.section-divider span.bar {
  width: 28px;
  background-color: #126255;
}

/* ==========================================================================
   Service Cards & Grids
   ========================================================================== */
.cards-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.service-card {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  z-index: 1;
}

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

/* Decorative Background Accents on Cards */
.card-decor-diamond {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #a9d6ce;
  transform: rotate(45deg);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0.85;
}

.card-decor-diamond.d-1 { top: 36px; right: 68px; }
.card-decor-diamond.d-2 { top: 72px; right: 36px; }
.card-decor-diamond.d-3 { top: 108px; right: 80px; }

.card-decor-circle {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(162, 219, 210, 0.4);
  pointer-events: none;
  z-index: 0;
}

.card-icon-box {
  width: 136px;
  height: 136px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.card-icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.card-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 28px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.card-action {
  align-self: flex-start;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Horizontal Feature Cards
   ========================================================================== */
.feature-card-horizontal {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  z-index: 1;
}

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

.feature-media {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-box {
  width: 170px;
  height: 170px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.feature-icon-box.media-avatar {
  background: transparent;
  padding: 0;
}

.feature-icon-box.media-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.feature-icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.feature-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.feature-action {
  align-self: flex-start;
}

/* ==========================================================================
   About Page - Stats & Values
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.stat-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border-bottom: 4px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.stat-box:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Blog Styles
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid rgba(18, 98, 85, 0.08);
}

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

.blog-thumb-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #edf7f5;
}

.blog-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb-wrapper img {
  transform: scale(1.05);
}

.blog-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.blog-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-snippet {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-read-more:hover {
  color: var(--primary-hover);
  gap: 10px;
}

/* Featured Blog Card */
.featured-blog-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.featured-blog-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.featured-blog-thumb img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ==========================================================================
   Blog Details / Article Layout
   ========================================================================== */
.article-header {
  text-align: center;
  margin-bottom: 36px;
}

.article-category {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.article-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 20px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: var(--text-light);
}

.article-featured-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 44px;
  border: 3px solid var(--primary-color);
}

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

.article-body {
  font-size: 16.5px;
  line-height: 1.8;
  color: #334155;
}

.article-body p {
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-main);
  margin: 40px 0 16px;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  color: var(--text-main);
  margin: 32px 0 14px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 28px 24px;
}

.article-body li {
  margin-bottom: 10px;
}

/* ==========================================================================
   Article Share Options
   ========================================================================== */
.article-share-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid rgba(18, 98, 85, 0.12);
  border-radius: var(--radius-md);
  margin: 36px 0;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  gap: 16px;
}

.share-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
}

.share-header svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
}

.share-buttons-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  background: #f1f7f5;
  border: 1px solid rgba(18, 98, 85, 0.1);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.share-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.share-btn:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.share-btn:hover svg {
  transform: scale(1.1);
}

/* Individual Platform Hover Colors */
.share-btn-twitter:hover {
  background-color: #000000;
  border-color: #000000;
}

.share-btn-linkedin:hover {
  background-color: #0a66c2;
  border-color: #0a66c2;
}

.share-btn-facebook:hover {
  background-color: #1877f2;
  border-color: #1877f2;
}

.share-btn-whatsapp:hover {
  background-color: #25d366;
  border-color: #25d366;
}

.share-btn-copy:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.share-btn.copied {
  background-color: #059669 !important;
  border-color: #059669 !important;
  color: var(--white) !important;
}

.article-quote {
  background: var(--primary-light);
  border-left: 5px solid var(--primary-color);
  padding: 24px 30px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 36px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--primary-color);
  font-weight: 500;
}

.article-author-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  margin-top: 48px;
  border: 1px solid rgba(18, 98, 85, 0.1);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.author-bio {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   Contact Page - Form & Info
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateY(-3px);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14px;
  color: var(--text-muted);
}

/* Contact Form Card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--primary-color);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: #f8fafc;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-main);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(18, 98, 85, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(18, 98, 85, 0.1);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-color);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  font-size: 18px;
  color: var(--primary-color);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(18, 98, 85, 0.12);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(18, 98, 85, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(18, 98, 85, 0.12);
  border-color: rgba(18, 98, 85, 0.35);
}

.blog-card-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #edf6f4;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 10px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 18.5px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-title a {
  color: inherit;
  transition: color 0.2s ease;
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-snippet {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
}

/* Featured Blog Card */
.featured-blog-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  border: 1px solid rgba(18, 98, 85, 0.12);
  box-shadow: 0 10px 30px rgba(18, 98, 85, 0.08);
}

.featured-blog-thumb {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background: #edf6f4;
}

.featured-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-blog-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-badge {
  background: var(--primary-light);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ==========================================================================
   Contact / CTA Banner
   ========================================================================== */
.contact-section {
  padding: 50px 0 90px;
}

.cta-card {
  position: relative;
  background: var(--white);
  border-left: 6px solid var(--primary-color);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.cta-content {
  max-width: 720px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

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

.cta-description {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

.cta-action {
  flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 32px 0;
  text-align: center;
}

.footer-text {
  font-size: 13.5px;
  color: var(--text-light);
}

.footer-text a {
  color: var(--primary-color);
  font-weight: 500;
}

.footer-text a:hover {
  text-decoration: underline;
}

/* Scroll To Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background-color: #046bd2;
  color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(4, 107, 210, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 99;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: #0352a0;
  transform: translateY(-3px);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-image-wrapper {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-card-horizontal {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
  }

  .feature-media {
    justify-content: center;
  }

  .feature-action {
    align-self: center;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

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

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

  .featured-blog-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .main-nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    text-align: center;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .cards-grid-2x2,
  .cards-grid-3,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 30px;
  }

  .page-hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .section {
    padding: 40px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 20px;
  }
}

/* ==========================================================================
   Custom Pagination Styling
   ========================================================================== */
.custom-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  padding: 12px 0;
}

.custom-pagination-info {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.custom-pagination-info span {
  color: var(--text-main);
  font-weight: 700;
}

.custom-pagination-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-pagination-list .page-item {
  display: inline-flex;
}

.custom-pagination-list .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  text-decoration: none;
  border: 1.5px solid var(--border-light);
  background: #ffffff;
  color: var(--text-main);
  transition: all 0.2s ease;
  cursor: pointer;
}

.custom-pagination-list .page-link:hover {
  background: var(--primary-light);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.custom-pagination-list .page-item.active .page-link {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.custom-pagination-list .page-item.disabled .page-link {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f8fbfa;
  border-color: var(--border-light);
  color: var(--text-light);
}

.custom-pagination-list .page-link.ellipsis {
  border: none;
  background: transparent;
  cursor: default;
}

/* ==========================================================================
   Frontend Dynamic Animations & Micro-Interactions
   ========================================================================== */

/* Keyframe Definitions */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(35px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatElement {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(18, 98, 85, 0.35);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(18, 98, 85, 0);
  }
}

@keyframes shimmerLight {
  0% {
    transform: translateX(-150%) rotate(45deg);
  }
  100% {
    transform: translateX(150%) rotate(45deg);
  }
}

@keyframes gentleBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Base Reveal Animation Classes (Triggered via IntersectionObserver) */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-up {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-35px);
}

.reveal-right {
  transform: translateX(35px);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Interactive Hover Animations for Cards */
.feature-card,
.blog-card,
.stat-card,
.service-feature-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.feature-card:hover,
.blog-card:hover,
.stat-card:hover,
.service-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(18, 98, 85, 0.12);
  border-color: rgba(18, 98, 85, 0.35);
}

.blog-card .blog-card-img img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

/* Animated Shimmer on Primary Buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: translateX(-150%) rotate(30deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  transform: translateX(150%) rotate(30deg);
}

.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.97);
}

/* Floating Badges and Icons */
.hero-badge,
.floating-badge {
  animation: floatElement 4s ease-in-out infinite;
}

.pulse-glow {
  animation: pulseGlow 2.5s infinite;
}

/* Nav Link Underline Expansion */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

/* Scroll to Top Bounce */
.scroll-to-top:hover {
  animation: gentleBounce 1.2s infinite;
}



