/* ===== TAILWIND CSS CDN + CUSTOM STYLES ===== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: #4b5563;
}

/* ===== LAYOUT & CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(224, 112, 32, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E07020;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #E07020;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #E07020;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #374151;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #E07020 0%, #F59E3A 50%, #FAC460 100%);
  color: white;
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: #ffffff;
  color: #E07020;
}

.btn-primary:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(224, 112, 32, 0.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(224, 112, 32, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E07020, #F59E3A);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.card h3 {
  color: #1f2937;
  margin-bottom: 1rem;
}

.card p {
  color: #6b7280;
  margin-bottom: 0;
}

/* ===== GRID LAYOUTS ===== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ===== CLIENTS SECTION ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  align-items: center;
}

.client-logo {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===== ABOUT SECTION ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ===== CONTACT FORM ===== */
/* Form removed - contact via email only */

/* ===== CONTACT INFO CARDS ===== */
.contact-info-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(224, 112, 32, 0.1);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(224, 112, 32, 0.2);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item:hover {
  background: rgba(224, 112, 32, 0.05);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E07020, #F59E3A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-details strong {
  font-size: 1.1rem;
  color: #1f2937;
  margin-bottom: 0.25rem;
  display: block;
}

.contact-details span {
  font-size: 1.1rem;
  color: #374151;
  display: block;
  line-height: 1.4;
}

.contact-subtitle {
  color: #6b7280 !important;
  font-size: 0.95rem !important;
  margin-top: 0.25rem;
}

.contact-link {
  color: #E07020;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  color: #F59E3A;
  transform: translateY(-1px);
}

/* ===== FEATURE ITEMS ===== */
.feature-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(224, 112, 32, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(224, 112, 32, 0.2);
}

.feature-item p {
  margin: 0;
  font-weight: 500;
  color: #374151;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
  background: #f8fafc;
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid rgba(224, 112, 32, 0.1);
}

/* ===== SIMPLIFIED CONTACT SECTION ===== */
.contact-info-simple {
  max-width: 800px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-item-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(224, 112, 32, 0.1);
  transition: all 0.3s ease;
}

.contact-item-simple:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(224, 112, 32, 0.2);
}

.contact-icon-simple {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E07020, #F59E3A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-details-simple {
  text-align: center;
}

.contact-details-simple strong {
  font-size: 1.1rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-details-simple span {
  font-size: 1rem;
  color: #6b7280;
  display: block;
  line-height: 1.4;
}

.contact-link-simple {
  color: #E07020;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-link-simple:hover {
  color: #F59E3A;
  transform: translateY(-1px);
}

.contact-description {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #FAC460;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  

  
  .contact-info-card {
    padding: 1.5rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .why-choose-us {
    padding: 2rem;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .contact-info-card {
    padding: 1rem;
  }
  
  .contact-item {
    padding: 0.75rem;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .why-choose-us {
    padding: 1.5rem;
  }
  
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-item-simple {
    padding: 1rem;
  }
  
  .contact-icon-simple {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .contact-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/* ===== NAV CTA BUTTON ===== */
.nav-cta {
  background: #E07020;
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #C05A10 !important;
  transform: translateY(-1px);
  color: white !important;
}
.nav-cta::after {
  display: none !important;
}

/* Phone button in nav */
.btn-tel-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  color: #E07020;
  border: 1.5px solid #E07020;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-tel-nav:hover {
  background: #E07020;
  color: white;
  transform: translateY(-1px);
}
.btn-tel-nav::after { display: none !important; }

/* ===== HERO BADGE ===== */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* ===== HERO TRUST BAR ===== */
.hero-trust {
  margin-top: 2.5rem;
  opacity: 0.8;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}
.hero-trust span {
  margin: 0 0.5rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: #1f2937;
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: #F59E3A;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.5rem;
  display: block;
  line-height: 1.4;
}

/* ===== PROCESS SECTION ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 2.5rem;
  right: -1rem;
  font-size: 1.5rem;
  color: #F59E3A;
  font-weight: 700;
  z-index: 1;
}
.process-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #E07020, #F59E3A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(224,112,32,0.3);
}
.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}
.process-step p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

/* ===== CONTACT FORM ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(224,112,32,0.1);
}
.contact-form-card h3 {
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.contact-form-card > p {
  color: #6b7280;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1f2937;
  transition: border-color 0.3s ease;
  background: white;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #E07020;
  box-shadow: 0 0 0 3px rgba(224,112,32,0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #E07020, #F59E3A);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(224,112,32,0.4);
}
.contact-side-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-side-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid rgba(224,112,32,0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-side-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E07020, #F59E3A);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-side-card strong {
  display: block;
  color: #1f2937;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.contact-side-card span {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.4;
}
.contact-side-card a {
  color: #E07020;
  text-decoration: none;
  font-weight: 500;
}
.contact-side-card a:hover {
  color: #C05A10;
}

/* ===== FLOATING DEVIS CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #E07020, #F59E3A);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 3rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(224,112,32,0.45);
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  animation: floatPulse 2.5s ease-in-out infinite;
}
.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(224,112,32,0.6);
  color: white;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(224,112,32,0.45); }
  50% { box-shadow: 0 8px 35px rgba(224,112,32,0.7); }
}

/* ===== ABOUT STATS INLINE ===== */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.about-stat {
  text-align: center;
  padding: 1rem;
  background: #fff7ed;
  border-radius: 0.75rem;
  border: 1px solid rgba(224,112,32,0.15);
}
.about-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #E07020;
  line-height: 1;
}
.about-stat span {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.25rem;
  display: block;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step:not(:last-child)::after {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .nav-cta {
    display: none;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 1.5rem;
  }
  .floating-cta .cta-label {
    display: none;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* ===== HERO SPLIT LAYOUT ===== */
.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}
.hero-split .hero-buttons {
  justify-content: flex-start;
}
.hero-split .hero-trust {
  text-align: left;
}
.hero-img-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(224,112,32,0.2), transparent);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-split .hero-buttons {
    justify-content: center;
  }
  .hero-split .hero-trust {
    text-align: center;
  }
  .hero-img-wrap {
    display: none;
  }
}

/* ===== SERVICE CARD WITH IMAGE ===== */
.card-img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  display: block;
}

/* ===== TERRAIN PHOTO STRIP ===== */
.terrain-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.terrain-photo {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
}
.terrain-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.terrain-photo:hover img {
  transform: scale(1.06);
}
.terrain-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  color: white;
  padding: 1.25rem 0.75rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .terrain-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .terrain-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .terrain-photo img {
    height: 150px;
  }
}

/* LinkedIn share */
.share-bar { display:flex; align-items:center; gap:1rem; margin: 2rem 0 1rem; flex-wrap:wrap; }
.share-btn-linkedin {
  display:inline-flex; align-items:center; gap:0.4rem;
  padding:0.5rem 1.25rem; border-radius:0.5rem; font-weight:600;
  background:#0077B5; color:white; text-decoration:none; font-size:0.9rem;
  transition: background 0.2s;
}
.share-btn-linkedin:hover { background:#005f8f; }
