/* =============================================
   Credge Technologies - Main Stylesheet
   Brand Colors: #4A90C4 (blue), #F5A623 (orange)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --blue: #3d7fc1;
  --blue-dark: #2d6aa8;
  --blue-light: #5a9fd4;
  --orange: #F5A623;
  --orange-dark: #e09010;
  --orange-light: #f7b94a;
  --dark: #1a2535;
  --dark-2: #243047;
  --gray: #6b7280;
  --light-gray: #f4f6fa;
  --white: #ffffff;
  --gradient-hero: linear-gradient(135deg, #1a2535 0%, #2d4a6e 50%, #1a3a5c 100%);
  --gradient-btn: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  --gradient-blue: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.18);
  --shadow-blue: 0 8px 30px rgba(61, 127, 193, 0.35);
  --shadow-orange: 0 8px 30px rgba(245, 166, 35, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.3; }

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

img { max-width: 100%; }

/* ===== UTILITY ===== */
.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.badge-label {
  display: inline-block;
  background: rgba(61,127,193,0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(61,127,193,0.2);
}

.badge-label.orange {
  background: rgba(245,166,35,0.1);
  color: var(--orange-dark);
  border-color: rgba(245,166,35,0.25);
}

.btn-primary-custom {
  background: var(--gradient-btn);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.5);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-blue {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: var(--transition);
}
.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(61,127,193,0.5);
  color: var(--white);
}

/* ===== NAVBAR ===== */
#mainNav {
  background: rgba(26, 37, 53, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  transition: var(--transition);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

#mainNav .navbar-brand img {
  height: 48px;
  filter: brightness(1.1);
}

#mainNav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 28px 16px !important;
  position: relative;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--orange) !important;
}

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

#mainNav .dropdown-menu {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-top: 0;
  padding: 8px;
}

#mainNav .dropdown-item {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

#mainNav .dropdown-item:hover {
  background: rgba(245,166,35,0.15);
  color: var(--orange);
}

#mainNav .nav-cta {
  background: var(--gradient-btn);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  margin-left: 8px;
  font-weight: 700;
  box-shadow: var(--shadow-orange);
}
#mainNav .nav-cta::after { display: none; }
#mainNav .nav-cta:hover {
  transform: translateY(-2px);
  color: var(--white) !important;
  box-shadow: 0 8px 24px rgba(245,166,35,0.5);
}

.navbar-toggler {
  border: 2px solid rgba(255,255,255,0.3);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(61,127,193,0.25) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulse-glow 5s ease-in-out infinite alternate;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulse-glow 7s ease-in-out infinite alternate-reverse;
}

@keyframes pulse-glow {
  0% { transform: scale(1) translate(0,0); opacity: 0.6; }
  100% { transform: scale(1.15) translate(20px, -20px); opacity: 1; }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-title .highlight {
  color: var(--orange);
  position: relative;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.9s ease 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.9s ease 0.8s both;
}

.hero-stat .number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-card-main {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card-float.card-1 {
  bottom: -20px;
  left: -30px;
  animation: float 3s ease-in-out infinite;
}

.hero-card-float.card-2 {
  top: -20px;
  right: -20px;
  animation: float 4s ease-in-out infinite 1s;
}

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

.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.float-icon.orange { background: rgba(245,166,35,0.15); color: var(--orange); }
.float-icon.blue { background: rgba(61,127,193,0.15); color: var(--blue); }

.float-text .ft-number { font-size: 1.1rem; font-weight: 800; color: var(--dark); font-family: 'Poppins', sans-serif; }
.float-text .ft-label { font-size: 0.72rem; color: var(--gray); font-weight: 600; }

/* Tech stack pills in hero */
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.tech-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition);
}
.tech-pill:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--light-gray); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-btn);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61,127,193,0.15);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-icon.blue-bg { background: rgba(61,127,193,0.1); color: var(--blue); }
.service-icon.orange-bg { background: rgba(245,166,35,0.1); color: var(--orange); }

.service-card:hover .service-icon {
  background: var(--gradient-blue);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 1.2rem;
  transition: var(--transition);
}

.service-link:hover { gap: 12px; color: var(--orange); }

/* ===== PORTFOLIO ===== */
.portfolio-section { background: var(--white); }

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid rgba(61,127,193,0.2);
  background: transparent;
  color: var(--gray);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--light-gray);
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img-wrap img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,127,193,0.9), rgba(26,37,53,0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay a {
  background: var(--white);
  color: var(--blue);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.portfolio-overlay a:hover {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}

.portfolio-body { padding: 22px; }

.portfolio-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 6px;
}

.portfolio-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.portfolio-body p { font-size: 0.85rem; color: var(--gray); }

/* ===== WHY US ===== */
.whyus-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.whyus-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61,127,193,0.2) 0%, transparent 65%);
  border-radius: 50%;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--orange);
  transform: translateY(-5px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(245,166,35,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 1.2rem;
}

.why-card h5 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.6rem; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* ===== TECHNOLOGIES ===== */
.tech-section { background: var(--light-gray); }

.tech-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  cursor: default;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(61,127,193,0.2);
}

.tech-item .ti-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.tech-item span { font-size: 0.85rem; font-weight: 700; color: var(--dark); }

/* ===== PROCESS ===== */
.process-section { background: var(--white); }

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--orange));
  z-index: 0;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-blue);
  transition: var(--transition);
}

.process-step:hover .step-circle {
  background: var(--gradient-btn);
  box-shadow: var(--shadow-orange);
  transform: scale(1.1);
}

.process-step h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: var(--gray); }

/* ===== TEAM ===== */
.team-section { background: var(--light-gray); }

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 3px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
}

.team-body { padding: 22px; text-align: center; }
.team-body h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.team-body p { font-size: 0.84rem; color: var(--gray); }

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray);
  transition: var(--transition);
}

.team-social a:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

/* ===== TESTIMONIALS ===== */
.testimonial-section { background: var(--white); }

.testimonial-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(61,127,193,0.15);
}

.stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 1rem; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--dark);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--blue);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info .name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.author-info .company { font-size: 0.8rem; color: var(--gray); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--dark) 50%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

/* ===== CONTACT ===== */
.contact-section { background: var(--light-gray); }

.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.ci-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(245,166,35,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
}

.ci-text .ci-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); font-weight: 700; margin-bottom: 4px; }
.ci-text .ci-value { color: var(--white); font-weight: 600; font-size: 0.95rem; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.form-control, .form-select {
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  transition: var(--transition);
  background: var(--light-gray);
}

.form-control:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61,127,193,0.15);
  background: var(--white);
}

.form-label { font-weight: 700; font-size: 0.85rem; color: var(--dark); margin-bottom: 6px; }

/* ===== FOOTER ===== */
footer {
  background: #0f1824;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

.footer-top { padding: 70px 0 50px; }

.footer-brand img { height: 44px; margin-bottom: 1.2rem; filter: brightness(1.2); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; }

.footer-social { display: flex; gap: 10px; margin-top: 1.5rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }

.footer-heading {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--orange); gap: 10px; }
.footer-links a::before { content: '›'; font-size: 1rem; color: var(--blue); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--orange); }

/* ===== WHATSAPP BTN ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.6);
}

.whatsapp-float img, .whatsapp-float i {
  font-size: 1.6rem;
  color: var(--white);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(61,127,193,0.2) 0%, transparent 65%);
  border-radius: 50%;
}

.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.page-hero .breadcrumb-item.active { color: var(--orange); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== ABOUT ===== */
.about-section { background: var(--white); }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrap img { border-radius: var(--radius-lg); width: 100%; }

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gradient-btn);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
}

.about-badge .ab-number { font-size: 2rem; font-weight: 900; font-family: 'Poppins', sans-serif; line-height: 1; }
.about-badge .ab-text { font-size: 0.8rem; font-weight: 600; }

.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--dark);
  font-weight: 600;
}

.feature-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(61,127,193,0.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-stats { gap: 24px; }
  .process-step:not(:last-child)::after { display: none; }
  #mainNav .nav-link { padding: 12px 16px !important; }
  #mainNav .nav-link::after { bottom: 4px; }
}

@media (max-width: 768px) {
  .hero-section { padding-top: 90px; min-height: auto; padding-bottom: 60px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-card-float { display: none; }
  .section-padding { padding: 60px 0; }
  .contact-form-card, .contact-info-card { padding: 28px 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}

/* ===== STATS COUNT ===== */
.stats-section { background: var(--white); }

.stat-box {
  text-align: center;
  padding: 30px;
}

.stat-box .stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box .stat-number span { color: var(--orange); }
.stat-box .stat-label { font-size: 0.9rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 120px;
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.95); opacity: 0.7; }
}

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 9998;
  box-shadow: var(--shadow-blue);
  transition: var(--transition);
}

#backToTop:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(61,127,193,0.5); }
#backToTop.show { display: flex; }

/* map */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
