/* 
 * U N Nimbadkar & Associates - Cost & Management Accountants
 * Professional Website Stylesheet
 * Brand Colors: Deep Navy Blue (#003466) & Forest Green (#0A5C36)
 */

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

:root {
  --brand-navy: #003466;
  --brand-navy-dark: #002347;
  --brand-navy-light: #0a4d8f;
  --brand-navy-subtle: #edf4fb;
  
  --brand-green: #0A5C36;
  --brand-green-dark: #064226;
  --brand-green-light: #12824e;
  --brand-green-subtle: #edf7f1;

  --accent-gold: #c89524;
  --accent-gold-light: #fef7e7;
  
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-slate: #f1f5f9;
  --bg-card: #ffffff;
  
  --border-light: #e2e8f0;
  --border-brand: #cbd5e1;
  
  --shadow-sm: 0 1px 3px rgba(0, 52, 102, 0.06), 0 1px 2px rgba(0, 52, 102, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 52, 102, 0.08), 0 2px 4px rgba(0, 52, 102, 0.04);
  --shadow-lg: 0 12px 28px rgba(0, 52, 102, 0.12), 0 4px 8px rgba(0, 52, 102, 0.06);
  --shadow-hover: 0 18px 36px rgba(0, 52, 102, 0.15), 0 8px 16px rgba(10, 92, 54, 0.08);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

/* Base Reset & Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-light);
  line-height: 1.65;
  font-size: 15.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--brand-navy);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-green);
}

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

/* Top Utility Header */
.top-bar {
  background-color: var(--brand-navy-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.top-bar a:hover {
  color: #a7f3d0;
}

.top-bar-badge {
  background: rgba(10, 92, 54, 0.35);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #6ee7b7;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.3px;
}

/* Main Navigation */
.navbar-corporate {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-corporate.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

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

.nav-link-custom {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--brand-navy) !important;
  background-color: var(--brand-navy-subtle);
}

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 14px;
  right: 14px;
  height: 2.5px;
  background-color: var(--brand-green);
  border-radius: 2px;
}

/* Buttons */
.btn-cma-primary {
  background-color: var(--brand-navy);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--brand-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 10px rgba(0, 52, 102, 0.2);
}

.btn-cma-primary:hover {
  background-color: var(--brand-navy-dark);
  border-color: var(--brand-navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 52, 102, 0.28);
}

.btn-cma-secondary {
  background-color: var(--brand-green);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--brand-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 10px rgba(10, 92, 54, 0.2);
}

.btn-cma-secondary:hover {
  background-color: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10, 92, 54, 0.28);
}

.btn-cma-outline {
  background-color: transparent;
  color: var(--brand-navy) !important;
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--brand-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
}

.btn-cma-outline:hover {
  background-color: var(--brand-navy);
  color: #ffffff !important;
}

/* Enhanced Hero Card Bottom Button */
.hero-card-widget .btn-cma-outline {
  background-color: #edf4fb;
  color: var(--brand-navy) !important;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0, 52, 102, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 6px rgba(0, 52, 102, 0.08);
  transition: all var(--transition-normal);
}

.hero-card-widget .btn-cma-outline:hover {
  background-color: var(--brand-navy);
  color: #ffffff !important;
  border-color: var(--brand-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 52, 102, 0.25);
}

.btn-cma-outline-white {
  background-color: transparent;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
}

.btn-cma-outline-white:hover {
  background-color: #ffffff;
  color: var(--brand-navy-dark) !important;
  border-color: #ffffff;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #002447 0%, #003466 60%, #064024 100%);
  color: #ffffff;
  padding: 85px 0 70px;
  overflow: hidden;
}

.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;
  opacity: 0.6;
  pointer-events: none;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: #a7f3d0;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title span.highlight-green {
  color: #4ade80;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
  max-width: 620px;
}

.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature-pill i {
  color: #4ade80;
}

/* Hero Key Card Widget */
.hero-card-widget {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 2;
}

.hero-card-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.hero-card-rank-badge {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border-light);
}

.hero-service-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-service-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--brand-navy-subtle);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.hero-service-text h6 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-service-text p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.35;
}

/* Stats Counter Bar */
.stats-bar {
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 32px rgba(0, 52, 102, 0.08);
  padding: 24px 20px;
  margin-top: -30px;
  position: relative;
  z-index: 5;
  border-radius: var(--radius-lg);
}

.stat-item {
  text-align: center;
  padding: 10px 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.35;
}

/* Section Header Styling */
.section-padding {
  padding: 80px 0;
}

.section-padding-sm {
  padding: 50px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-green);
  background: var(--brand-green-subtle);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(10, 92, 54, 0.2);
}

.section-tag.navy-tag {
  color: var(--brand-navy);
  background: var(--brand-navy-subtle);
  border-color: rgba(0, 52, 102, 0.2);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.6;
}

/* About Section */
.about-quote-box {
  background: linear-gradient(135deg, var(--brand-navy-subtle) 0%, #f0fdf4 100%);
  border-left: 4px solid var(--brand-green);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 25px 0;
}

.about-quote-text {
  font-style: italic;
  font-weight: 600;
  color: var(--brand-navy);
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 4px;
}

.about-quote-author {
  font-size: 12.5px;
  color: var(--brand-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all var(--transition-normal);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-green);
}

.about-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-navy-subtle);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.about-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Service Nav Tabs & Cards */
.services-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: none;
}

.services-tab-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all var(--transition-fast);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.services-tab-btn:hover {
  background: var(--brand-navy-subtle);
  border-color: var(--brand-navy);
  color: var(--brand-navy);
}

.services-tab-btn.active {
  background: var(--brand-navy);
  color: #ffffff;
  border-color: var(--brand-navy);
  box-shadow: 0 4px 12px rgba(0, 52, 102, 0.25);
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px;
  height: 100%;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-green));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 52, 102, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--brand-navy-subtle);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

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

.service-icon-box.green-box {
  background: var(--brand-green-subtle);
  color: var(--brand-green);
}

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

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--brand-navy);
}

.service-card p.service-summary {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.55;
}

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex-grow: 1;
}

.service-feature-list li {
  font-size: 13.5px;
  color: var(--text-body);
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}

.service-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-green);
  font-weight: 800;
  font-size: 13px;
}

.service-card-footer {
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

/* Virtual CFO Feature Grid */
.cfo-highlight-banner {
  background: linear-gradient(135deg, #001f3d 0%, #003466 70%, #053b20 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cfo-pillar-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
  backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
}

.cfo-pillar-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  border-color: #6ee7b7;
}

.cfo-pillar-card h5 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.cfo-pillar-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 0;
}

.cfo-pillar-card .pillar-badge {
  background: rgba(74, 222, 128, 0.2);
  color: #86efac;
  border: 1px solid rgba(74, 222, 128, 0.3);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

/* Industries Grid */
.industry-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: all var(--transition-normal);
  height: 100%;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-green);
  box-shadow: var(--shadow-md);
  background: #fafdfb;
}

.industry-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--brand-green-subtle);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
  transition: all var(--transition-fast);
}

.industry-card:hover .industry-icon {
  background: var(--brand-green);
  color: #ffffff;
  transform: scale(1.08);
}

.industry-card h6 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--text-dark);
}

/* Founder Spotlight Section */
.founder-profile-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.founder-avatar-side {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-dark) 100%);
  color: #ffffff;
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  position: relative;
}

.founder-initial-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 800;
  font-family: var(--font-heading);
  border: 4px solid #6ee7b7;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.founder-rank-ribbon {
  background: linear-gradient(90deg, #d97706, #f59e0b);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}

.founder-details-side {
  padding: 45px;
}

.founder-cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-navy-subtle);
  color: var(--brand-navy);
  border: 1px solid rgba(0, 52, 102, 0.2);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 10px;
}

/* Why Choose Us Cards */
.why-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-navy);
  box-shadow: var(--shadow-md);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #cbd5e1;
  line-height: 1;
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.why-card:hover .why-number {
  color: var(--brand-green);
}

.why-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-navy);
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Consultation & Contact Form */
.contact-section-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-info-panel {
  background: linear-gradient(135deg, var(--brand-navy-dark) 0%, var(--brand-navy) 100%);
  color: #ffffff;
  padding: 45px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #6ee7b7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-row h6 {
  color: #ffffff;
  font-size: 14.5px;
  margin-bottom: 3px;
  font-weight: 700;
}

.contact-item-row a,
.contact-item-row p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 0;
  text-decoration: none;
  line-height: 1.45;
}

.contact-item-row a:hover {
  color: #6ee7b7;
}

.form-floating > .form-control,
.form-floating > .form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  font-size: 14.5px;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(0, 52, 102, 0.12);
}

.form-floating > label {
  color: var(--text-muted);
  font-size: 13.5px;
}

/* FAQ Accordion */
.custom-accordion .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--brand-navy);
  background-color: #ffffff;
  padding: 16px 20px;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: var(--brand-navy-subtle);
  color: var(--brand-navy);
  border-bottom: 1px solid var(--border-light);
}

.custom-accordion .accordion-body {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.6;
  padding: 18px 20px;
  background: #ffffff;
}

/* Footer */
.corporate-footer {
  background: #001e3b;
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 25px;
  border-top: 4px solid var(--brand-green);
  font-size: 14px;
}

.footer-logo-box {
  background: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 38px;
  width: auto;
}

.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--brand-green);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer-disclaimer-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 25px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 13px;
}

/* Floating Action Button (WhatsApp & Quick Call) */
.floating-contact-group {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.floating-whatsapp {
  background-color: #25d366;
}

.floating-whatsapp:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.floating-call {
  background-color: var(--brand-navy);
}

.floating-call:hover {
  background-color: var(--brand-navy-dark);
  transform: scale(1.1);
}

.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--text-dark);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.back-to-top.visible {
  opacity: 0.85;
  visibility: visible;
}

.back-to-top:hover {
  opacity: 1;
  background: var(--brand-navy);
}

/* Smooth Reveal Animations */
.reveal-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Responsive adjustments */
@media (min-width: 768px) {
  .stat-col:not(:last-child) .stat-item {
    border-right: 1px solid var(--border-light);
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .founder-avatar-side {
    padding: 35px 20px;
  }
  .founder-details-side {
    padding: 30px 20px;
  }
  .contact-info-panel {
    padding: 30px 20px;
  }
  .cfo-highlight-banner {
    padding: 30px 20px;
  }
}

@media (max-width: 767.98px) {
  .stats-bar {
    padding: 16px 10px;
    margin-top: -20px;
  }
  .stat-item {
    padding: 14px 8px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
  }
  .stat-number {
    font-size: 1.75rem;
    margin-bottom: 3px;
  }
  .stat-label {
    font-size: 11px;
    letter-spacing: 0.3px;
    line-height: 1.3;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .top-bar-location {
    display: none;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .brand-logo-img {
    height: 38px;
  }
  .stat-item {
    padding: 12px 6px;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .stat-label {
    font-size: 10px;
  }
}
