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

:root {
  --primary-navy: #031B4E;
  --primary-blue: #0E4399;
  --brand-blue: #1A56DB;
  --accent-red: #E60000;
  --accent-red-hover: #C80000;
  --bg-light: #F8FAFC;
  --card-bg: #FFFFFF;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(3, 27, 78, 0.08);
  --shadow-lg: 0 12px 32px rgba(3, 27, 78, 0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   1. TOP UTILITY HEADER BAR
   ========================================================================== */
.top-header {
  display: none;
}

.top-contact-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.top-contact-info span,
.top-contact-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #F1F5F9;
  font-weight: 500;
  white-space: nowrap;
}

.top-contact-info a:hover {
  color: #60A5FA;
}

.mara-badge-pill {
  background: rgba(230, 0, 0, 0.25);
  border: 1px solid rgba(230, 0, 0, 0.5);
  color: #FF9999;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.775rem;
  white-space: nowrap;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-socials a {
  color: #CBD5E1;
  font-size: 0.95rem;
  transition: var(--transition);
}

.top-socials a:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Google Translate Widget in Top Header */
.google-translate-box {
  display: inline-flex;
  align-items: center;
}

.goog-te-gadget-simple {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 3px 10px !important;
  border-radius: 20px !important;
  font-size: 0.8rem !important;
  line-height: 1.2 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  color: #FFFFFF !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.goog-te-gadget-simple:hover {
  background-color: rgba(255, 255, 255, 0.25) !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
  color: #FFFFFF !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
  color: #FFFFFF !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
}

.goog-te-gadget-simple .goog-te-menu-value img {
  filter: brightness(0) invert(1);
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}

/* ==========================================================================
   2. MAIN NAVIGATION NAVBAR
   ========================================================================== */
.main-navbar {
  background-color: #f1f3f5;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  border-bottom: 1px solid #d9dee3;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.64rem;
  color: var(--accent-red);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.45rem 0;
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid #dfe6ee;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 20;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
}

.submenu a:hover {
  background: #eef5ff;
  color: var(--primary-blue);
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-red);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-consultation {
  background: var(--accent-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.65rem 1.35rem;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(230, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-consultation:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 0, 0, 0.4);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  background: none;
}

/* ==========================================================================
   3. HERO BANNER SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #021235 0%, #031B4E 40%, #0E4399 100%);
  color: #FFFFFF;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(26, 86, 219, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(230, 0, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
  padding: 3.5rem 0;
}

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

.hero-welcome-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #93C5FD;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtext {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-badge i {
  color: #60A5FA;
  font-size: 1.1rem;
}

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

.hero-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.25);
  max-width: 440px;
  background: #031B4E;
}

.hero-card-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-card-overlay-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(3, 27, 78, 0.95) 0%, rgba(3, 27, 78, 0.7) 70%, transparent 100%);
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  color: #FFFFFF;
}

.hero-card-overlay-badge h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.hero-card-overlay-badge span {
  font-size: 0.8rem;
  color: #FF8080;
  font-weight: 700;
}

.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: #FFFFFF;
  width: 28px;
  border-radius: 10px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slider-arrow.prev { left: 1rem; }
.slider-arrow.next { right: 1rem; }

/* ==========================================================================
   4. RED ANNOUNCEMENT STRIP
   ========================================================================== */
.red-callout-strip {
  background: var(--accent-red);
  color: #FFFFFF;
  padding: 1.1rem 0;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
}

.red-callout-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.red-strip-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-white-pill {
  background: #FFFFFF;
  color: var(--accent-red);
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 800;
  padding: 0.6rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.btn-white-pill:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
  transform: scale(1.04);
}

/* ==========================================================================
   5. MARA VERIFICATION & TRUST SHIELD SECTION
   ========================================================================== */
.mara-trust-section {
  padding: 4rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.mara-card-banner {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  border: 2px solid #BFDBFE;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.mara-seal-icon {
  width: 95px;
  height: 95px;
  background: var(--primary-navy);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid #3B82F6;
  text-align: center;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.mara-seal-icon span:nth-child(1) { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; color: #93C5FD; }
.mara-seal-icon span:nth-child(2) { font-size: 1.15rem; font-weight: 900; color: #FFFFFF; line-height: 1; }
.mara-seal-icon span:nth-child(3) { font-size: 0.6rem; font-weight: 700; color: #FF8080; }

.mara-details h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.mara-details p {
  color: var(--text-body);
  font-size: 0.975rem;
  margin-bottom: 0.75rem;
}

.mara-verify-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tag-badge {
  background: #DBEAFE;
  color: #1E40AF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

.btn-verify-mara {
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-verify-mara:hover {
  background: var(--brand-blue);
}

/* ==========================================================================
   6. ANZSCO OCCUPATION SEARCH TOOL
   ========================================================================== */
.anzsco-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.anzsco-search-box {
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  position: relative;
}

.anzsco-search-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  border-radius: 50px;
  border: 2px solid var(--border-light);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.anzsco-search-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.15);
}

.anzsco-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.anzsco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.anzsco-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

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

.anzsco-code {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-red);
  text-transform: uppercase;
}

.anzsco-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.anzsco-authority {
  font-size: 0.85rem;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   7. MIGRATION ROADMAP TIMELINE
   ========================================================================== */
.roadmap-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #021235 0%, #031B4E 100%);
  color: #FFFFFF;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
  margin-top: 3rem;
}

.roadmap-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition);
}

.roadmap-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
}

.roadmap-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.roadmap-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.roadmap-card-desc {
  font-size: 0.875rem;
  color: #CBD5E1;
  margin-bottom: 1rem;
}

.roadmap-time {
  display: inline-block;
  background: rgba(96, 165, 250, 0.2);
  color: #93C5FD;
  font-size: 0.775rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* ==========================================================================
   8. STATE NOMINATION GRID
   ========================================================================== */
.state-nomination-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.state-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.state-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.state-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.state-capital {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.state-status {
  display: inline-block;
  background: #EFF6FF;
  color: var(--primary-blue);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ==========================================================================
   9. INTERACTIVE FLOATING MARA AI CONSULTATION ASSISTANT
   ========================================================================== */
.floating-ai-widget {
  position: fixed;
  bottom: 24px;
  right: 96px;
  z-index: 999;
}

.btn-ai-toggle {
  background: var(--primary-navy);
  color: #FFFFFF;
  border-radius: 50px;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(3, 27, 78, 0.4);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 2px solid #3B82F6;
}

.btn-ai-toggle:hover {
  background: var(--brand-blue);
  transform: translateY(-2px);
}

.ai-chat-box {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 360px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: none;
  flex-direction: column;
}

.ai-chat-box.active {
  display: flex;
}

.ai-chat-header {
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-chat-body {
  padding: 1rem;
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.ai-msg {
  background: #F1F5F9;
  color: var(--text-dark);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border-top-left-radius: 2px;
}

.user-msg {
  background: var(--primary-blue);
  color: #FFFFFF;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border-top-right-radius: 2px;
  align-self: flex-end;
}

.ai-chat-footer {
  padding: 0.75rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 0.5rem;
}

.ai-chat-input {
  flex-grow: 1;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
}

/* ==========================================================================
   COMMON TYPOGRAPHY & FOOTER
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 2.6rem auto;
}

.section-subtitle {
  color: var(--accent-red);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 5rem);
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.section-description {
  font-size: clamp(1.05rem, 1.6vw, 1.9rem);
  color: var(--text-muted);
  line-height: 1.45;
}

.services-section { padding: 5rem 0; background-color: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 2rem; }
.service-card { background: var(--card-bg); border-radius: var(--radius-lg); padding: 2.25rem; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary-blue); transition: var(--transition); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: #BFDBFE; }
.service-card:hover::before { background: var(--accent-red); }
.service-icon-box { width: 64px; height: 64px; border-radius: 14px; background: #EFF6FF; color: var(--primary-blue); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 1.5rem; transition: var(--transition); }
.service-card:hover .service-icon-box { background: var(--primary-blue); color: #FFFFFF; }
.service-title { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--primary-navy); margin-bottom: 0.75rem; }
.service-subclasses { font-size: 0.8rem; font-weight: 700; color: var(--accent-red); text-transform: uppercase; margin-bottom: 0.75rem; }
.service-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; }
.service-features-list { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-features-list li { font-size: 0.875rem; color: var(--text-body); display: flex; align-items: center; gap: 0.5rem; }
.service-features-list li i { color: #10B981; font-size: 0.9rem; }
.btn-card-action { color: var(--primary-blue); font-weight: 700; font-size: 0.925rem; display: inline-flex; align-items: center; gap: 0.4rem; background: transparent; padding: 0; }
.btn-card-action:hover { color: var(--accent-red); gap: 0.75rem; }

.calculator-section { padding: 5.5rem 0; background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%); }
.calculator-box { background: #FFFFFF; border-radius: var(--radius-lg); border: 1px solid var(--border-light); box-shadow: var(--shadow-lg); overflow: hidden; display: grid; grid-template-columns: 1.4fr 0.8fr; }
.calc-form-container { padding: 3rem; }
.calc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.calc-group { display: flex; flex-direction: column; gap: 0.5rem; }
.calc-label { font-size: 0.875rem; font-weight: 700; color: var(--primary-navy); }
.calc-select { padding: 0.75rem 1rem; border-radius: var(--radius-md); border: 1px solid var(--border-light); background: #F8FAFC; color: var(--text-dark); font-family: inherit; font-size: 0.925rem; outline: none; transition: var(--transition); }
.calc-select:focus { border-color: var(--primary-blue); background: #FFFFFF; box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15); }
.calc-summary-sidebar { background: var(--primary-navy); color: #FFFFFF; padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: space-between; }
.score-display-box { text-align: center; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: var(--radius-md); padding: 2rem 1.5rem; margin: 1.5rem 0; }
.score-number { font-family: var(--font-heading); font-size: 4.5rem; font-weight: 900; color: #60A5FA; line-height: 1; }
.score-status { display: inline-block; margin-top: 0.75rem; padding: 0.35rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; }
.status-eligible { background: rgba(16, 185, 129, 0.2); color: #34D399; border: 1px solid #10B981; }
.status-near { background: rgba(245, 158, 11, 0.2); color: #FBBF24; border: 1px solid #F59E0B; }

.srilanka-office-section { padding: 5rem 0; background: #FFFFFF; }
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.office-info-card { background: #F8FAFC; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.office-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: #FEF2F2; color: var(--accent-red); font-weight: 800; font-size: 0.8rem; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 50px; margin-bottom: 1rem; }
.office-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--primary-navy); margin-bottom: 1.5rem; }
.office-details-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.office-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.office-icon { width: 42px; height: 42px; border-radius: 10px; background: #EFF6FF; color: var(--primary-blue); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.office-detail-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary-navy); }
.office-detail-content p, .office-detail-content a { font-size: 0.9rem; color: var(--text-body); }
.btn-whatsapp-direct { background: #25D366; color: #FFFFFF; font-weight: 700; padding: 0.75rem 1.5rem; border-radius: var(--radius-md); display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3); }
.btn-whatsapp-direct:hover { background: #1DA851; transform: translateY(-2px); }
.map-embed-box { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 400px; position: relative; background: #E2E8F0; }
.map-embed-box iframe { width: 100%; height: 100%; border: 0; }

.about-section { padding: 5rem 0; background: #F8FAFC; }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3.5rem; align-items: center; }
.agent-profile-card { background: #FFFFFF; border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); text-align: center; }
.agent-img { width: 100%; border-radius: var(--radius-md); height: 380px; object-fit: cover; object-position: center top; margin-bottom: 1.25rem; border: 2px solid #BFDBFE; }
.agent-name { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 800; color: var(--primary-navy); }
.agent-role { font-size: 0.875rem; font-weight: 700; color: var(--accent-red); margin-bottom: 0.5rem; }
.agent-mara-no { display: inline-block; background: #EFF6FF; color: var(--primary-blue); font-weight: 800; font-size: 0.85rem; padding: 0.35rem 1rem; border-radius: 50px; border: 1px solid #BFDBFE; }

.payments-section { padding: 5rem 0; background: #FFFFFF; }
.payment-card-box { max-width: 680px; margin: 0 auto; background: #F8FAFC; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.payment-option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.pay-option-btn { border: 2px solid var(--border-light); border-radius: var(--radius-md); padding: 1rem; text-align: left; background: #FFFFFF; transition: var(--transition); }
.pay-option-btn.active { border-color: var(--primary-blue); background: #EFF6FF; }
.pay-option-btn h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary-navy); }
.pay-option-btn p { font-size: 1.25rem; font-weight: 800; color: var(--accent-red); }

.testimonials-section { padding: 5rem 0; background: #F8FAFC; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.testimonial-card { background: #FFFFFF; border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: space-between; }
.quote-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; }
.quote-text { font-size: 0.95rem; color: var(--text-body); font-style: italic; margin-bottom: 1.5rem; }
.client-info { display: flex; align-items: center; gap: 1rem; }
.client-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-blue); color: #FFFFFF; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; }
.client-meta h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary-navy); }
.client-meta span { font-size: 0.8rem; font-weight: 600; color: var(--accent-red); }

.contact-section { padding: 5rem 0; background: #FFFFFF; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.875rem; font-weight: 700; color: var(--primary-navy); }
.form-input, .form-textarea, .form-select { padding: 0.75rem 1rem; border-radius: var(--radius-md); border: 1px solid var(--border-light); background: #F8FAFC; font-family: inherit; font-size: 0.95rem; outline: none; transition: var(--transition); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--primary-blue); background: #FFFFFF; box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15); }
.btn-submit { background: var(--primary-navy); color: #FFFFFF; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; padding: 0.85rem 2rem; border-radius: var(--radius-md); width: 100%; }
.btn-submit:hover { background: var(--brand-blue); }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.65); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; pointer-events: none; transition: var(--transition); }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-content { background: #FFFFFF; border-radius: var(--radius-lg); width: 90%; max-width: 600px; padding: 2.5rem; position: relative; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); }
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: #F1F5F9; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1.25rem; color: var(--text-dark); }

.footer { background: var(--primary-navy); color: #94A3B8; padding: 4rem 0 2rem 0; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: var(--font-heading); font-size: 1.5rem; color: #FFFFFF; margin-bottom: 0.75rem; }
.footer-col h4 { font-family: var(--font-heading); color: #FFFFFF; font-size: 1.05rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a:hover { color: #FFFFFF; }
.footer-mara-notice { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 1.25rem; border-radius: var(--radius-md); margin-top: 1rem; font-size: 0.8rem; line-height: 1.5; color: #CBD5E1; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }

.toast-notification { position: fixed; bottom: 24px; left: 24px; background: var(--primary-navy); color: #FFFFFF; padding: 1rem 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border-left: 4px solid #10B981; display: flex; align-items: center; gap: 0.75rem; z-index: 3000; transform: translateY(100px); opacity: 0; transition: var(--transition); }
.toast-notification.show { transform: translateY(0); opacity: 1; }

/* ==========================================================================
   LINKEDIN PROFILE & FEEDS SECTION
   ========================================================================== */
.linkedin-section {
  padding: 2.8rem 0 0;
  background: #f3f4f6;
  border-top: none;
  border-bottom: none;
}

.linkedin-company-wrapper {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.linkedin-header-card {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid #dfe6ee;
  box-shadow: none;
  overflow: hidden;
  margin-bottom: 2.5rem;
  position: relative;
}

.linkedin-banner-bg {
  height: 220px;
  background: linear-gradient(135deg, #0A66C2 0%, #0C5AAE 38%, #0B3F8A 100%);
  position: relative;
}

.linkedin-profile-info {
  padding: 1.2rem 2rem 2rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.75rem;
  align-items: center;
  margin-top: -18px;
}

.linkedin-avatar-wrapper {
  position: relative;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  background: linear-gradient(135deg, #F8FBFF 0%, #DCEEFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.linkedin-avatar-plain {
  background: linear-gradient(135deg, #FFFFFF 0%, #DDEEFF 100%);
}

.linkedin-monogram {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #0A66C2;
}

.linkedin-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.linkedin-badge-check {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: #FFFFFF;
  color: #0A66C2;
  font-size: 1.25rem;
  border-radius: 50%;
  line-height: 1;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.9);
}

.linkedin-company-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.03em;
}

.linkedin-official-tag {
  background: #E0F2FE;
  color: #0A66C2;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.linkedin-tagline {
  color: var(--text-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

.linkedin-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.linkedin-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.linkedin-actions {
  display: flex;
  gap: 0.75rem;
  align-self: center;
}

.btn-linkedin-connect {
  background: #0A66C2;
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.25);
}

.btn-linkedin-connect:hover {
  background: #004182;
  color: #FFFFFF;
}

.btn-linkedin-follow {
  background: #FFFFFF;
  color: #0A66C2;
  border: 2px solid #0A66C2;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-linkedin-follow:hover {
  background: #F0F7FF;
}

.linkedin-feed-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feed-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.linkedin-tab-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.15rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.linkedin-tab-btn:hover {
  border-color: #0A66C2;
  color: #0A66C2;
}

.linkedin-tab-btn.active {
  background: #0A66C2;
  color: #FFFFFF;
  border-color: #0A66C2;
  box-shadow: 0 4px 10px rgba(10, 102, 194, 0.2);
}

.linkedin-view-all-link {
  color: #0A66C2;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.linkedin-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.linkedin-post-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.linkedin-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #BFDBFE;
}

.post-header {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1rem;
}

.post-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

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

.post-author-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.1rem;
}

.post-author-meta p {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.post-time {
  font-size: 0.725rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.post-badge-pill {
  background: #F1F5F9;
  color: var(--primary-navy);
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.post-body {
  margin-bottom: 1.25rem;
}

.post-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.post-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.post-hashtags {
  font-size: 0.825rem;
  color: #0A66C2;
  font-weight: 600;
}

.post-stats-row {
  display: flex;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-top: 1px solid #F1F5F9;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 1rem;
}

.post-footer-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-action-btn {
  flex: 1;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  font-weight: 700;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #F8FAFC;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.post-action-btn.primary {
  background: #0A66C2;
  color: #FFFFFF;
  border-color: #0A66C2;
}

.post-action-btn.primary:hover {
  background: #004182;
  color: #FFFFFF;
}

.post-action-btn:hover:not(.primary) {
  background: #F1F5F9;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* ==========================================================================
   ADVANCED LINKEDIN COMPANY PAGE STYLES
   ========================================================================== */
.linkedin-banner-overlay-text {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.linkedin-sub-nav {
  display: flex;
  border-top: 1px solid var(--border-light);
  background: #FFFFFF;
  padding: 0 1.5rem;
  gap: 0.5rem;
  overflow-x: auto;
}

.linkedin-nav-tab {
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: var(--transition);
}

.linkedin-nav-tab:hover {
  color: #0A66C2;
}

.linkedin-nav-tab.active {
  color: #0A66C2;
  border-bottom-color: #0A66C2;
}

.linkedin-tab-pane {
  display: none;
}

.linkedin-tab-pane.active {
  display: block;
}

.btn-linkedin-follow-interactive {
  background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.2);
}

.btn-linkedin-follow-interactive:hover {
  background: linear-gradient(135deg, #004182 0%, #003566 100%);
}

.btn-linkedin-follow-interactive.following {
  background: #E2E8F0;
  color: var(--text-dark);
  box-shadow: none;
}

.btn-linkedin-share {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--primary-navy);
  font-weight: 700;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.btn-linkedin-share:hover {
  background: #F8FAFC;
  border-color: var(--primary-blue);
}

/* Create Post Card */
.linkedin-create-post-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
}

.create-post-input-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.post-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.btn-fake-post-input {
  flex: 1;
  text-align: left;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 0.85rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-fake-post-input:hover {
  background: #E2E8F0;
  border-color: #CBD5E1;
}

.create-post-actions-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-action-chip {
  background: #F1F5F9;
  border: none;
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-body);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.post-action-chip:hover {
  background: #E2E8F0;
}

/* Post Actions Bar & Comments */
.post-actions-bar {
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid #F1F5F9;
  border-bottom: 1px solid #F1F5F9;
  padding: 0.4rem 0;
  margin-bottom: 1rem;
}

.btn-post-interact {
  flex: 1;
  background: none;
  border: none;
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.btn-post-interact:hover {
  background: #F1F5F9;
  color: #0A66C2;
}

.btn-post-interact.liked {
  color: #0A66C2;
}

.post-comments-drawer {
  display: none;
  background: #F8FAFC;
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
}

.post-comments-drawer.active {
  display: block;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  max-height: 200px;
  overflow-y: auto;
}

.comment-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.comment-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.comment-form {
  display: flex;
  gap: 0.5rem;
}

.comment-input {
  flex: 1;
  padding: 0.5rem 0.85rem;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  outline: none;
}

.btn-submit-comment {
  background: #0A66C2;
  color: #FFFFFF;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* About Tab */
.linkedin-about-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.tab-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.about-desc-text {
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 1.75rem;
}

.about-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  background: #F8FAFC;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.info-item {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.info-val {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.specialties-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.spec-chip {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #0A66C2;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
}

/* Services Sub-Tab */
.linkedin-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.linkedin-service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.linkedin-service-card:hover {
  border-color: #0A66C2;
  transform: translateY(-3px);
}

.service-icon-wrapper {
  width: 48px;
  height: 48px;
  background: #EFF6FF;
  color: #0A66C2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.subclass-tag {
  background: #FEF2F2;
  color: var(--accent-red);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* Offices Sub-Tab */
.offices-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.office-location-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}

.office-location-card.srilanka {
  border-left: 4px solid var(--accent-red);
}

.location-badge {
  background: #EFF6FF;
  color: #0A66C2;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.location-badge.red {
  background: #FEF2F2;
  color: var(--accent-red);
}

/* Recommendations Sub-Tab */
.recommendations-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.recommendation-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.rec-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rec-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.rec-role {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 600;
}

.rec-rel {
  font-size: 0.75rem;
  color: var(--accent-red);
  font-weight: 700;
}

.rec-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.55;
  font-style: italic;
}

@media (max-width: 1200px) { .nav-menu { gap: 0.85rem; } .nav-link { font-size: 0.85rem; } }
@media (max-width: 992px) { 
  .linkedin-profile-info { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .linkedin-actions { width: 100%; justify-content: center; }
  .linkedin-meta-row { justify-content: center; }
  .offices-dual-grid { grid-template-columns: 1fr; }
  .hero-grid-container { grid-template-columns: 1fr; text-align: center; } .hero-content { margin: 0 auto; } .hero-title { font-size: 2.5rem; } .hero-badges-row { justify-content: center; } .mara-card-banner { grid-template-columns: 1fr; text-align: center; } .mara-seal-icon { margin: 0 auto; } .calculator-box { grid-template-columns: 1fr; } .office-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } 
  .nav-menu { 
    display: none; 
    position: absolute; 
    top: 72px; 
    left: 0; 
    width: 100%; 
    background: #FFFFFF; 
    flex-direction: column; 
    padding: 1.5rem; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
    border-bottom: 2px solid var(--primary-blue);
    align-items: flex-start;
    gap: 0.5rem;
  } 
  .nav-menu.active { display: flex; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid #E2E8F0; }
  .submenu { 
    position: static; 
    box-shadow: none; 
    border: 1px solid #E2E8F0; 
    margin: 0.5rem 0 0.5rem 1rem; 
    width: calc(100% - 1rem); 
    transform: none; 
    opacity: 1; 
    visibility: visible; 
    display: none; 
  }
  .has-submenu.mobile-open .submenu { display: flex; }
  .mobile-toggle { display: block; } 
}
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; } .top-header .container { flex-direction: column; align-items: flex-start; } }

/* ==========================================================================
   MULTI-PAGE INNER PAGE HERO & BREADCRUMBS
   ========================================================================== */
.page-hero-section {
  background: linear-gradient(135deg, #071938 0%, #0F2D6B 60%, #1A56DB 100%);
  color: #FFFFFF;
  padding: 4rem 0 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #93C5FD;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-hero-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #CBD5E1;
  margin-bottom: 1.75rem;
}

.breadcrumbs-bar {
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
  padding: 0.85rem 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.breadcrumb-item a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #94A3B8;
  font-size: 0.75rem;
}

.breadcrumb-item.active {
  color: var(--text-muted);
  font-weight: 600;
}

/* Common Content Elements for Inner SEO Pages */
.page-main-content {
  padding: 4.5rem 0;
}

.content-grid-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .content-grid-sidebar {
    grid-template-columns: 1fr;
  }
}

.article-content {
  background: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 2rem 0 1rem 0;
  line-height: 1.25;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 1.75rem 0 0.75rem 0;
}

.article-content p {
  margin-bottom: 1.25rem;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.feature-callout-card {
  background: #EFF6FF;
  border-left: 4px solid var(--primary-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem;
  margin: 2rem 0;
}

.feature-callout-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.sidebar-sticky-box {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #EFF6FF;
}

.subpage-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.subpage-menu-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  background: #F8FAFC;
}

.subpage-menu-list a:hover,
.subpage-menu-list a.active {
  background: var(--primary-blue);
  color: #FFFFFF;
}

.agent-mini-card {
  text-align: center;
  background: #F8FAFC;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid #E2E8F0;
}

.agent-mini-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem auto;
  border: 3px solid var(--primary-blue);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #10B981;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 90vw;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Payments Section */
.payments-section {
  padding: 5rem 0;
  background: #F8FAFC;
}

.payment-card-box {
  max-width: 680px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.payment-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pay-option-btn {
  background: #F8FAFC;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.pay-option-btn:hover {
  border-color: var(--primary-blue);
  background: #F0F7FF;
}

.pay-option-btn.active {
  border-color: var(--primary-blue);
  background: #EFF6FF;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.pay-option-btn h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: var(--primary-navy);
  font-family: var(--font-heading);
}

.pay-option-btn p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-red);
}
