/* ============================================
   TUEAM SERVICES - Main Stylesheet
   ============================================ */
@import url('variables.css');

/* ---- RESET & BASE ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

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

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

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

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- SECTION COMMON ---- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-sm {
  padding: var(--section-padding-sm) 0;
}

.section-gray {
  background: var(--gray-100);
}

.section-dark {
  background: var(--primary);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header .subtitle {
  font-size: 0.95rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-header .accent-line {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 15px auto 20px;
  border-radius: 2px;
}

/* ---- BUTTONS ---- */
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-hover);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
  border-radius: var(--radius-xl);
}

.btn-accent:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(247, 148, 29, 0.4);
}

.btn-accent:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  transition: var(--transition-fast);
  background: transparent;
}

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

.btn-primary-custom {
  background: var(--primary-light);
  color: var(--white);
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  border: none;
  transition: var(--transition-fast);
}

.btn-primary-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---- NAVBAR ---- */
.navbar-custom {
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
  z-index: 1000;
}

.navbar-custom.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-custom .navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar-custom.scrolled .navbar-brand {
  color: var(--primary);
}

.navbar-custom .navbar-brand span {
  color: var(--accent);
}

.navbar-custom .nav-link {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
}

.navbar-custom.scrolled .nav-link {
  color: var(--text-dark);
}

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

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 60%;
}

.navbar-custom .navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-custom .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-custom.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius-xl);
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
}

.navbar-cta:hover {
  background: var(--accent-hover);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.navbar-cta::after {
  display: none !important;
}

/* Dropdown */
.navbar-custom .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 15px 0;
  margin-top: 10px;
  animation: fadeInDown 0.3s ease;
}

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

.navbar-custom .dropdown-item {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  padding: 8px 25px;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.navbar-custom .dropdown-item:hover {
  background: var(--accent-light);
  color: var(--accent);
  padding-left: 30px;
}

.dropdown-item i {
  width: 24px;
  color: var(--accent);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(26,58,107,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(247,148,29,0.5);
  border-radius: var(--radius-xl);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
  background: rgba(247,148,29,0.08);
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 25px;
}

.hero h1 span {
  color: var(--accent);
  position: relative;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 5px;
}

.hero-stat p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.hero-scroll a {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  position: relative;
}

.hero-scroll .mouse::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.5s ease infinite;
}

@keyframes mouseScroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(247,148,29,0.15);
  border-radius: 50%;
  animation: floatShape 15s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 100px;
  left: -50px;
  animation-delay: -5s;
}

.hero-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 20%;
  animation-delay: -10s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* ---- ABOUT ---- */
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrapper img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 25px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1;
}

.about-experience-badge p {
  font-size: 0.8rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-features {
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.about-feature-item:hover {
  background: var(--gray-100);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
}

.about-feature-item h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-feature-item p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--text-muted);
}

/* Counter Row */
.counter-section {
  background: var(--primary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.counter-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");
}

.counter-item {
  text-align: center;
  position: relative;
}

.counter-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
  display: block;
}

.counter-item h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
}

.counter-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

/* ---- SERVICES ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 35px 28px;
  text-align: center;
  transition: var(--transition-medium);
  border: 1px solid var(--gray-300);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  transform: rotateY(180deg);
}

.service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

/* ---- ENVIRONMENT ---- */
.env-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-fast);
  border-left: 4px solid var(--green);
  height: 100%;
}

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

.env-card i {
  font-size: 2.2rem;
  color: var(--green);
  margin-bottom: 15px;
  display: block;
}

.env-card h5 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.env-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.env-highlight {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.env-highlight h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 20px;
}

.env-highlight p {
  opacity: 0.9;
  margin-bottom: 30px;
}

.env-highlight ul {
  list-style: none;
  padding: 0;
}

.env-highlight ul li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
  font-size: 0.95rem;
}

.env-highlight ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.8);
}

/* ---- LAVAGE AUTO ---- */
.lavage-section {
  position: relative;
  overflow: hidden;
}

.lavage-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

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

.lavage-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.lavage-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.lavage-card-body {
  padding: 25px;
}

.lavage-card-body h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.lavage-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.lavage-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(9,132,227,0.1);
  color: var(--blue-wash);
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
}

.lavage-stats {
  background: linear-gradient(135deg, var(--blue-wash), #0769b5);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  text-align: center;
}

.lavage-stat-item h4 {
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 800;
}

.lavage-stat-item p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
}

/* ---- PARTNERS ---- */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 20px 30px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300);
  transition: var(--transition-fast);
  filter: grayscale(100%);
  opacity: 0.6;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

.partner-logo img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
}

/* ---- BLOG ---- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

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

.blog-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-card-date {
  position: absolute;
  bottom: -20px;
  left: 25px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
}

.blog-card-body {
  padding: 35px 25px 25px;
}

.blog-card-category {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.blog-card-body h5 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.blog-card-body h5 a {
  color: var(--text-dark);
}

.blog-card-body h5 a:hover {
  color: var(--accent);
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- INVEST / CTA ---- */
.invest-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  overflow: hidden;
}

.invest-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.invest-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
  height: 100%;
}

.invest-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.invest-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 25px;
}

.invest-card h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.invest-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* ---- CONTACT ---- */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  background: var(--gray-100);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(247,148,29,0.15);
  background: var(--white);
}

.contact-info-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  margin-bottom: 15px;
}

.contact-info-card:hover {
  background: rgba(247,148,29,0.05);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}

.contact-info-card h6 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

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

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

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

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

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

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

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

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

.footer-newsletter .input-group {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.footer-newsletter .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 12px 20px;
  font-size: 0.9rem;
}

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

.footer-newsletter .btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 25px;
}

.footer-newsletter .btn:hover {
  background: var(--accent-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 25px 0;
  margin-top: 60px;
  font-size: 0.85rem;
}

/* ---- WHATSAPP BUTTON ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 5px 25px rgba(37,211,102,0.4);
  transition: var(--transition-fast);
  animation: whatsappPulse 2s infinite;
}

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

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 5px 25px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 5px 25px rgba(37,211,102,0.7), 0 0 0 15px rgba(37,211,102,0.1); }
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 45px;
  height: 45px;
  background: var(--primary-light);
  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-fast);
  box-shadow: var(--shadow-md);
}

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

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

/* ---- RESPONSIVE ---- */
@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section {
    padding: 70px 0;
  }

  .navbar-custom .offcanvas {
    background: var(--primary);
  }

  .navbar-custom .offcanvas .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-size: 1rem;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

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

  .navbar-custom .offcanvas .btn-close {
    filter: invert(1);
  }

  .about-experience-badge {
    right: 10px;
    bottom: 10px;
  }

  .invest-card {
    padding: 35px 25px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 100vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stat h3 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .counter-item h3 {
    font-size: 2.2rem;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .footer {
    padding-top: 50px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .back-to-top {
    right: 80px;
    bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
  }

  .hero-stats {
    margin-top: 30px;
    padding-top: 25px;
  }

  .section {
    padding: 50px 0;
  }
}
