/* ============================================
   ORACLE INFRA — Design System & Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1F4E9A;
  --primary-dark: #163A74;
  --primary-light: #E8EFF8;
  --accent: #F58220;
  --accent-dark: #D96E10;
  --dark: #0D1B2A;
  --gray-900: #1A1A2E;
  --gray-600: #6C757D;
  --gray-200: #E9ECEF;
  --gray-100: #F8F9FA;
  --white: #FFFFFF;
  --font: 'Inter', sans-serif;
  --shadow: 0 4px 24px rgba(31, 78, 154, 0.08);
  --shadow-lg: 0 12px 40px rgba(31, 78, 154, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

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

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

a:hover {
  color: var(--accent);
}

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.section-subtitle {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto 48px;
}

.text-accent {
  color: var(--accent);
}

.text-primary-custom {
  color: var(--primary);
}

/* --- Buttons --- */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 78, 154, 0.25);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 130, 32, 0.3);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
}

/* --- Navbar --- */
.navbar-custom {
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1050;
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.navbar-custom .navbar-brand img {
  height: 54px;
  transition: var(--transition);
  border-radius: 5px;
}

.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 8px 16px !important;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-custom .nav-link.active {
  color: rgb(245 130 32) !important;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-custom .nav-link:hover {
  color: var(--white);
}

.navbar-custom.scrolled .nav-link {
  color: var(--gray-900);
}

.navbar-custom.scrolled .nav-link:hover {
  color: var(--primary);
}

.navbar-custom .navbar-toggler {
  border: none;
  color: var(--white);
  font-size: 1.5rem;
}

.navbar-custom.scrolled .navbar-toggler {
  color: var(--gray-900);
}

.navbar-custom .btn-nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  transition: var(--transition);
}

.navbar-custom .btn-nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* Inner pages: solid navbar */
.navbar-inner {
  background: var(--primary) !important;
}

.navbar-inner.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
}

/* --- Hero Sections --- */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.88) 0%, rgba(31, 78, 154, 0.82) 100%),
    url('../assets/images/hero-bg.png') center/cover no-repeat;
  color: var(--white);
  padding-top: 100px;
}

.hero-home h1 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-home p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 130, 32, 0.15);
  border: 1px solid rgba(245, 130, 32, 0.3);
  color: var(--accent);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-stat-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* Inner Page Hero */
.page-hero {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(31, 78, 154, 0.85) 100%),
    url('../assets/images/about-hero.png') center/cover no-repeat;
  padding: 160px 0 80px;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero .breadcrumb {
  justify-content: center;
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb-item.active {
  color: var(--accent);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* --- Cards --- */
.card-custom {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.card-custom:hover .card-icon {
  background: var(--primary);
  color: var(--white);
}

.card-custom h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.card-custom p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.card-link:hover {
  color: var(--accent);
  gap: 10px;
}

/* Service Detail Card */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card .benefits {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-card .benefits li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card .benefits li i {
  color: var(--accent);
  font-size: 0.75rem;
}

/* --- Stats Counter --- */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 64px 0;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  color: var(--accent);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  font-weight: 500;
}

/* --- Why Choose --- */
.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-item:hover {
  background: var(--primary-light);
}

.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.why-item:hover .why-icon {
  background: var(--primary);
  color: var(--white);
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 5%;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--accent);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--primary-light);
  z-index: 2;
}

.timeline-year {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
  }

  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px;
    margin-right: 0;
  }
}

/* --- Global Presence / Map --- */
.map-container {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.map-container svg {
  max-width: 100%;
  height: auto;
}

.country-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

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

.country-flag {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.country-card h5 {
  font-size: 0.85rem;
  margin-bottom: 3px;
}

.country-card p {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin: 0;
}

/* --- Process Steps (New Timeline) --- */
.how-it-works-section {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(245, 130, 32, 0.1), transparent 50%),
    radial-gradient(circle at bottom left, rgba(31, 78, 154, 0.2), transparent 50%);
  pointer-events: none;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.process-timeline::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  width: 0;
  height: 2px;
  background: var(--accent);
  z-index: 1;
  transition: width 1.5s ease-in-out;
}

.process-timeline:hover::after {
  width: 90%;
}

.pt-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

.pt-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gray-900);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-light);
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  position: relative;
}

.pt-step:hover .pt-icon {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(245, 130, 32, 0.4);
}

.pt-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pt-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.pt-step:hover .pt-content::before {
  transform: scaleX(1);
  background: var(--accent);
}

.pt-step:hover .pt-content {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.1);
}

.pt-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: -15px;
  right: 10px;
  line-height: 1;
  transition: var(--transition);
}

.pt-step:hover .pt-num {
  color: rgba(255, 255, 255, 0.08);
}

.pt-content h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.pt-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .process-timeline {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }

  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    height: 100%;
  }

  .process-timeline::after {
    top: 0;
    left: 40px;
    width: 2px;
    height: 0;
    transition: height 1.5s ease-in-out;
  }

  .process-timeline:hover::after {
    width: 2px;
    height: 100%;
  }

  .pt-step {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 30px;
    padding: 0;
  }

  .pt-icon {
    margin: 0;
    min-width: 80px;
  }

  .pt-content {
    flex: 1;
  }
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* --- Testimonials & Success Story --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  height: 100%;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 20px;
  padding-top: 24px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--gray-900);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.testimonial-company-badge {
  display: inline-block;
  background: var(--gray-100);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  margin-top: 12px;
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 8px;
}

.success-story-bar {
  background: linear-gradient(135deg, rgba(31, 78, 154, 0.05), rgba(245, 130, 32, 0.05));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
}

/* --- FAQ Section --- */
.faq-accordion .faq-item {
  border: none;
  border-bottom: 1px solid var(--gray-200);
  background: transparent;
  margin-bottom: 8px;
}

.faq-accordion .faq-item:last-child {
  border-bottom: none;
}

.faq-btn {
  background: transparent !important;
  color: var(--gray-900) !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 20px 0;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--primary) !important;
}

.faq-btn::after {
  background-size: 1rem;
}

.faq-body {
  padding: 0 0 20px 0;
  color: var(--gray-600);
}

/* --- CTA Banner --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* --- Contact Form & Info --- */
.contact-quick-strip {
  background: var(--dark);
  color: var(--white);
  padding: 24px 0;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--white);
  text-decoration: none;
}

.quick-contact-item:hover {
  color: var(--accent);
}

.quick-contact-item i {
  font-size: 2rem;
  color: var(--accent);
}

.quick-contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quick-contact-item span {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(31, 78, 154, 0.1);
}

.contact-info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  height: 100%;
}

.contact-info-card h4 {
  color: var(--white);
  margin-bottom: 24px;
}

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

.contact-info-item i {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 4px;
  min-width: 20px;
}

.contact-info-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.contact-info-item strong {
  color: var(--white);
}

.contact-phone-link {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.contact-phone-link:hover {
  color: var(--accent);
}

.contact-social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-social-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.whatsapp-btn:hover {
  background: #25D366;
}

.map-section-header {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer p {
  font-size: 0.9rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--accent);
}

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

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

.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 48px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-newsletter .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 12px 16px;
}

.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter .btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 20px;
  font-weight: 600;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
  }
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

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

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.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;
}

/* --- Divider Accent --- */
.divider-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 24px;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Misc --- */
.bg-gray {
  background: var(--gray-100);
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.icon-box-sm {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

/* Division Tabs */
.division-tab {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 32px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-weight: 600;
  color: var(--gray-600);
}

.division-tab.active,
.division-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* Values */
.value-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.value-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Leadership & Founder */
.founder-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: center;
}

.founder-photo-wrap {
  position: relative;
  height: 320px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo-placeholder {
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--white);
}

.founder-badge-tag {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background: var(--accent);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.3);
  white-space: nowrap;
}

.founder-card-body {
  padding: 48px 32px 32px;
}

.founder-exp-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
  background: var(--gray-100);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.exp-tag {
  font-size: 0.85rem;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 8px;
}

.exp-tag i {
  color: var(--accent);
}

.founder-message-block {
  font-size: 1.1rem;
  color: var(--gray-600);
  border-left: 4px solid var(--accent);
  padding-left: 24px;
  margin-bottom: 32px;
}

.founder-highlight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  transition: var(--transition);
}

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

.founder-highlight-card i {
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
}

.founder-highlight-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* Map Embed */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 0;
}

/* Interactive Map Markers */
.map-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: var(--radius);
  background: var(--primary-light);
  padding: 10px;
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.marker-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.map-marker:hover .marker-dot {
  transform: scale(1.3);
}

.marker-tooltip {
  position: absolute;
  top: -35px;
  background: var(--white);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  pointer-events: none;
}

.map-marker:hover .marker-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.map-marker.hq .marker-dot {
  width: 24px;
  height: 24px;
}

.map-marker.hq .marker-tooltip {
  opacity: 1;
  transform: translateY(0);
  top: -45px;
  background: var(--primary);
  color: var(--white);
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 78, 154, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(31, 78, 154, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(31, 78, 154, 0);
  }
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .navbar-custom .navbar-collapse {
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius);
    margin-top: 12px;
    box-shadow: var(--shadow-lg);
  }

  .navbar-custom .nav-link {
    color: var(--gray-900) !important;
  }

  .navbar-custom .nav-link:hover {
    color: var(--primary) !important;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-item {
    padding: 16px;
  }

  .marker-tooltip {
    display: none;
  }

  .map-marker.hq .marker-tooltip {
    display: block;
    font-size: 0.6rem;
    padding: 2px 6px;
    top: -25px;
  }
}