/* Google Fonts - Optimized with font-display swap for faster rendering */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

/* HTML & BODY - iOS Safari viewport fix */
html {
  height: 100%;
  height: -webkit-fill-available;
}

/* BODY */
body {
  background-color: #111;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* ================= PRE-CHAT FORM OVERLAY =================== */

.pre-chat-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 20px 20px;
}

.pre-chat-overlay.hidden {
  display: none;
}

.pre-chat-form-container {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  backdrop-filter: blur(20px);
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  border-right: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 16px 14px 18px;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
  animation: slideUp 0.5s ease-out;
  position: relative;
}

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

.back-arrow {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: #d4af37;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 10;
}

.back-arrow:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateX(-2px);
}

.back-arrow i {
  color: #d4af37;
}

.pre-chat-header {
  text-align: center;
  margin-bottom: 18px;
}

.pre-chat-logo {
  width: 160px;
  height: auto;
  margin-bottom: 8px;
  filter: brightness(1.1);
}

.pre-chat-header h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  margin-top: 0px;
  color: #d4af37;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.pre-chat-header p {
  font-size: 0.8rem;
  color: #ccc;
  margin-top: 0px;
  margin-bottom: 0px;
}

.pre-chat-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #d4af37;
}

.form-group input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: #fff;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.pre-chat-submit-btn {
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 11px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.pre-chat-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #f0d06f, #d4af37);
}

.pre-chat-submit-btn:active {
  transform: translateY(0);
}

.pre-chat-submit-btn i {
  color: #0a0a0a;
}

.pre-chat-privacy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 6px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .pre-chat-overlay {
    padding: 25px 20px 20px;
  }

  .pre-chat-form-container {
    padding: 16px 12px 18px;
    max-width: 340px;
  }

  .pre-chat-header {
    margin-bottom: 16px;
  }

  .pre-chat-logo {
    width: 140px;
    margin-bottom: 6px;
  }

  .pre-chat-header h2 {
    font-size: 1rem;
    margin-top: 0px;
    margin-bottom: 3px;
  }

  .pre-chat-header p {
    font-size: 0.75rem;
  }

  .pre-chat-submit-btn {
    padding: 10px 22px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .pre-chat-overlay {
    padding: 20px 15px 20px;
  }

  .pre-chat-form-container {
    padding: 14px 12px 16px;
    max-width: 90%;
  }

  .pre-chat-form {
    gap: 12px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .pre-chat-header {
    margin-bottom: 14px;
  }

  .pre-chat-logo {
    width: 130px;
    margin-bottom: 6px;
  }

  .pre-chat-header h2 {
    font-size: 0.95rem;
    margin-top: 0px;
    margin-bottom: 3px;
  }

  .pre-chat-header p {
    font-size: 0.72rem;
  }

  .form-group label {
    font-size: 0.75rem;
  }

  .form-group input {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .pre-chat-submit-btn {
    padding: 9px 20px;
    font-size: 0.75rem;
  }

  .pre-chat-privacy {
    font-size: 0.63rem;
  }
}

/* ================= LOADING SCREEN =================== */

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.8s ease;
}

#loading-screen.fade-out {
  opacity: 0;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.loading-logo {
  width: 180px;
  height: auto;
  animation: logoFadeIn 1s ease;
}

.loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: #d4af37;
  border-radius: 50%;
  animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
  animation-delay: -0.45s;
  border-top-color: #d4af37;
}

.spinner-ring:nth-child(2) {
  animation-delay: -0.3s;
  border-top-color: rgba(212, 175, 55, 0.6);
}

.spinner-ring:nth-child(3) {
  animation-delay: -0.15s;
  border-top-color: rgba(212, 175, 55, 0.3);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.loading-text {
  font-size: 1.1rem;
  color: #d4af37;
  font-weight: 500;
  letter-spacing: 2px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ================= HEADER / NAV =================== */

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  box-shadow: none;
  z-index: 9999;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
  height: 140px;
  width: auto;
  max-height: 14vh;
  z-index: 10000;
  position: relative;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 10px;
}

/* Logo hide animation on scroll */
.hide-logo {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.menu-toggle {
  z-index: 10000;
  cursor: pointer;
}

.nav-header.scrolled {
  background: transparent;
  box-shadow: none;
}

@media (max-width: 768px) {
  .logo {
    height: 100px;
    margin-top: 15px;
  }

  .nav-header {
    padding: 20px 15px;
    align-items: center;
  }

  .menu-burger {
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 100px;
    margin-top: 20px;
  }

  .nav-header {
    padding: 15px 10px;
    align-items: center;
  }

  .menu-burger {
    min-width: 44px;
    min-height: 44px;
    padding: 14px 10px;
    width: 24px;
    height: 16px;
    margin-top: 20px;
  }

  .menu-burger .line {
    height: 2px;
  }
}

/* BURGER */
.menu-burger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 44px;
  min-height: 44px;
  padding: 12px 7px;
  width: 30px;
  height: 20px;
}

.menu-burger .line {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-burger:hover .line {
  background: #d4af37;
}

/* ================= HERO SLIDESHOW ================= */

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  height: 100dvh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* iOS Safari fix for proper viewport height */
@supports (-webkit-touch-callout: none) {
  .hero-slideshow {
    min-height: -webkit-fill-available;
  }
}

.hero-slideshow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
  pointer-events: none;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  filter: contrast(1.08) brightness(1.05) saturate(1.1);
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}

/* HERO CTA IN THE MIDDLE */

.hero-cta-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  max-width: 600px;
  width: 80%;
  padding: 28px 25px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Hero badge at top */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.5);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease, glow 3s ease-in-out infinite;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

.hero-badge i {
  color: #d4af37;
  font-size: 0.95rem;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.5));
}

.hero-badge span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 50%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-shadow: none;
  line-height: 1.1;
  letter-spacing: -1px;
  animation: fadeInUp 1s ease 0.2s backwards, titleGlow 4s ease-in-out infinite;
  position: relative;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
          drop-shadow(0 8px 30px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 40px rgba(212, 175, 55, 0.2));
}

.hero-title::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

@keyframes titleGlow {
  0%, 100% {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
            drop-shadow(0 8px 30px rgba(0, 0, 0, 0.6))
            drop-shadow(0 0 40px rgba(212, 175, 55, 0.2));
  }
  50% {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
            drop-shadow(0 8px 30px rgba(0, 0, 0, 0.6))
            drop-shadow(0 0 60px rgba(212, 175, 55, 0.4));
  }
}

.hero-subtitle {
  font-size: 1rem;
  color: #f0f0f0;
  margin-bottom: 25px;
  margin-top: 18px;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.9),
    0 4px 25px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  font-weight: 300;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease 0.4s backwards;
  opacity: 0.95;
  letter-spacing: 0.3px;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 44px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #f0d06f 50%, #d4af37 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: #000;
  border: none;
  box-shadow:
    0 8px 30px rgba(212, 175, 55, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(212, 175, 55, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  background-position: 100% 0%;
}

.hero-btn-primary:active {
  transform: translateY(-2px) scale(1);
}

.hero-btn-primary i {
  color: #000;
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
  transform: translateX(4px);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #d4af37;
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:active {
  transform: translateY(-2px) scale(1);
}

.hero-btn-secondary i {
  transition: transform 0.3s ease;
}

.hero-btn-secondary:hover i {
  transform: scale(1.1);
}

.hero-btn-commercial {
  background: rgba(212, 175, 55, 0.15);
  color: #fff;
  border: 2px solid rgba(212, 175, 55, 0.6);
  backdrop-filter: blur(15px);
  box-shadow:
    0 8px 30px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-btn-commercial:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: #d4af37;
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(212, 175, 55, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-btn-commercial:active {
  transform: translateY(-2px) scale(1);
}

.hero-btn-commercial i {
  color: #d4af37;
  transition: transform 0.3s ease;
}

.hero-btn-commercial:hover i {
  transform: scale(1.1);
  color: #ffd700;
}

.hero-btn-estimation {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.3));
  color: #fff;
  border: 2px solid rgba(76, 175, 80, 0.6);
  backdrop-filter: blur(15px);
  box-shadow:
    0 8px 30px rgba(76, 175, 80, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-btn-estimation:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(76, 175, 80, 0.4));
  border-color: #4caf50;
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(76, 175, 80, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-btn-estimation:active {
  transform: translateY(-2px) scale(1);
}

.hero-btn-estimation i {
  color: #4caf50;
  transition: transform 0.3s ease;
}

.hero-btn-estimation:hover i {
  transform: rotate(15deg) scale(1.1);
  color: #66bb6a;
}

/* Hero features */
.hero-features {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s backwards;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.feature-item i {
  color: #d4af37;
  font-size: 0.75rem;
  filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.3));
  flex-shrink: 0;
  line-height: 1;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Mobile responsive */
@media (max-width: 768px) {
  *:not(i):not(.fa):not(.fas):not(.far):not(.fab) {
    font-family: "Poppins", sans-serif !important;
  }

  .hero-slideshow {
    height: 100vh !important;
    height: 100dvh !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-cta-wrapper {
    padding: 20px 18px;
    width: 92%;
    max-width: 520px;
    top: 58% !important;
    transform: translate(-50%, -50%);
  }

  .hero-title {
    font-size: 1.5rem;
    padding: 0 5px;
    letter-spacing: -0.5px;
    font-family: "Poppins", sans-serif !important;
    font-weight: 700;
  }

  .hero-title::before {
    width: 60px;
    height: 2px;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    padding: 0 5px;
    margin-top: 12px;
    font-family: "Poppins", sans-serif !important;
    font-weight: 400;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 10px;
    gap: 10px;
  }

  .hero-btn {
    font-size: 0.85rem;
    padding: 12px 20px;
    justify-content: center;
    font-family: "Poppins", sans-serif !important;
    font-weight: 600;
  }

  .hero-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 15px;
    justify-content: center;
  }

  .feature-item {
    justify-content: center;
    font-size: 0.7rem;
    padding: 5px 8px;
    gap: 4px;
    white-space: nowrap;
    flex: 0 1 auto;
    font-family: "Poppins", sans-serif !important;
    font-weight: 500;
  }

  .feature-item i {
    font-size: 0.7rem;
    flex-shrink: 0;
    line-height: 1;
    filter: none;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    font-family: "Poppins", sans-serif !important;
    font-weight: 600;
  }

  .hero-badge span {
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    font-family: "Poppins", sans-serif !important;
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  .hero-slideshow {
    height: 100vh !important;
    height: 100dvh !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-cta-wrapper {
    padding: 18px 14px;
    width: 92%;
    top: 58% !important;
    transform: translate(-50%, -50%);
  }

  .hero-title {
    font-size: 1.4rem;
    font-family: "Poppins", sans-serif !important;
    font-weight: 700;
  }

  .hero-title::before {
    width: 50px;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    font-family: "Poppins", sans-serif !important;
    font-weight: 400;
  }

  .hero-btn {
    font-size: 0.8rem;
    padding: 11px 18px;
    font-family: "Poppins", sans-serif !important;
    font-weight: 600;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 10px;
    font-family: "Poppins", sans-serif !important;
    font-weight: 600;
  }

  .hero-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0 10px;
  }

  .feature-item {
    font-size: 0.65rem;
    padding: 4px 7px;
    gap: 3px;
    font-family: "Poppins", sans-serif !important;
    font-weight: 500;
    white-space: nowrap;
    flex: 0 1 auto;
  }

  .feature-item i {
    font-size: 0.5rem;
    flex-shrink: 0;
    line-height: 1;
    filter: none;
  }
}

/* ================= WHATSAPP FLOATING BUTTON ================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}

/* Mobile WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
}

/* ========== FULLSCREEN MENU OVERLAY ========== */

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.97);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9998;
  overflow: hidden;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.menu-content {
  text-align: center;
}

.menu-content a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  letter-spacing: 2px;
  margin: 20px 0;
  transition: color 0.3s ease;
}

.menu-content a:hover {
  color: #d4af37;
}

.menu-socials {
  margin-top: 40px;
}

.menu-socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

/* Mobile menu optimization */
@media (max-width: 768px) {
  .menu-content a {
    font-size: 1.6rem;
    margin: 18px 0;
    letter-spacing: 1.5px;
  }

  .menu-socials {
    margin-top: 35px;
  }

  .menu-socials a {
    font-size: 1.2rem;
    margin: 0 8px;
  }
}

@media (max-width: 480px) {
  .menu-content a {
    font-size: 1.4rem;
    margin: 15px 0;
  }

  .menu-socials a {
    font-size: 1.1rem;
  }
}

.menu-socials a:hover {
  color: #d4af37;
}

/* =============== PROJECTS PAGE =============== */

/* =============== PROJECTS PAGE - REVAMPED =============== */

.projects-section {
  background: linear-gradient(to bottom, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
  color: #fff;
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Animated Background for Projects */
.projects-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.projects-bg-animation .blueprint-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.25) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridSlide 60s linear infinite;
}

/* Projects Hero Section */
.projects-hero {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.projects-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.5);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
  backdrop-filter: blur(10px);
}

.projects-badge i {
  color: #d4af37;
  font-size: 1.1rem;
}

.projects-badge span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.projects-hero h1 {
  font-size: 3.5rem;
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  animation: fadeInUp 1s ease 0.2s backwards;
  background: linear-gradient(180deg, #d4af37 0%, #f0d06f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.projects-subtitle {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.4s backwards;
}

/* Stats Section */
.projects-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 50px;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number-wrapper {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #d4af37;
  line-height: 1;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.stat-plus {
  font-size: 3rem;
  font-weight: 900;
  color: #d4af37;
  line-height: 1;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  margin-left: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Project Cards */
.project-card {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease backwards;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }
.project-card:nth-child(6) { animation-delay: 0.6s; }
.project-card:nth-child(7) { animation-delay: 0.7s; }
.project-card:nth-child(8) { animation-delay: 0.8s; }

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

/* Image Wrapper with Overlay */
.project-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image-wrapper img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-overlay i {
  font-size: 3rem;
  color: #d4af37;
  transform: scale(0);
  transition: transform 0.3s ease 0.1s;
}

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

.project-card:hover .project-overlay i {
  transform: scale(1);
}

/* Category Badge */
.project-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  z-index: 10;
}

/* Project Content */
.project-content {
  padding: 25px;
  text-align: left;
}

.project-content h3 {
  color: #d4af37;
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.project-card:hover .project-content h3 {
  color: #f0d06f;
}

.project-content p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Project Meta */
.project-meta {
  display: flex;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #999;
  font-size: 0.85rem;
}

.project-meta i {
  color: #d4af37;
  font-size: 0.9rem;
}

/* Mobile optimization for projects page */
@media (max-width: 768px) {
  .projects-section {
    padding: 100px 20px 60px;
  }

  .projects-hero h1 {
    font-size: 2.5rem;
  }

  .projects-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .projects-stats {
    gap: 40px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-plus {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .project-image-wrapper {
    height: 240px;
  }

  .project-content {
    padding: 20px;
  }

  .project-content h3 {
    font-size: 1.25rem;
  }

  .project-content p {
    font-size: 0.9rem;
  }

  .project-meta {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .projects-hero h1 {
    font-size: 2rem;
  }

  .projects-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-plus {
    font-size: 2rem;
  }

  .project-image-wrapper {
    height: 200px;
  }

  .project-category {
    font-size: 0.7rem;
    padding: 5px 12px;
    top: 15px;
    right: 15px;
  }
}

/* =============== CONTACT PAGE - MODERN REDESIGN =============== */

.contact-section {
  background: linear-gradient(to bottom, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
  color: #fff;
  padding: 140px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-section-compact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 180px 20px 80px;
}

/* ANIMATED BACKGROUND EFFECTS */
.contact-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Blueprint grid pattern */
.blueprint-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.25) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridSlide 60s linear infinite;
}

@keyframes gridSlide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Floating geometric shapes */
.floating-shape {
  position: absolute;
  border: 3px solid rgba(212, 175, 55, 0.6);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation: float1 20s ease-in-out infinite;
  transform: rotate(45deg);
}

.shape-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 10%;
  animation: float2 25s ease-in-out infinite;
  border-radius: 50%;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  left: 15%;
  animation: float3 30s ease-in-out infinite;
  transform: rotate(15deg);
}

.shape-4 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 5%;
  animation: float4 22s ease-in-out infinite;
  transform: rotate(30deg);
  opacity: 0.8;
}

.shape-5 {
  width: 90px;
  height: 90px;
  top: 70%;
  left: 50%;
  animation: float5 28s ease-in-out infinite;
  border-radius: 50%;
  opacity: 0.7;
}

/* Blueprint lines - architectural style */
.blueprint-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
  width: 300px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.line-1 {
  top: 25%;
  left: 0;
  animation: lineMove1 15s ease-in-out infinite;
}

.line-2 {
  top: 55%;
  right: 0;
  animation: lineMove2 18s ease-in-out infinite;
}

.line-3 {
  top: 75%;
  left: 20%;
  animation: lineMove3 20s ease-in-out infinite;
  width: 200px;
}

/* Float animations */
@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0) rotate(45deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(55deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, 40px) scale(1.1);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translate(0, 0) rotate(15deg);
  }
  50% {
    transform: translate(25px, -25px) rotate(25deg);
  }
}

@keyframes float4 {
  0%, 100% {
    transform: translate(0, 0) rotate(30deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(-30px, 30px) rotate(40deg);
    opacity: 1;
  }
}

@keyframes float5 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(40px, -40px) scale(1.2);
    opacity: 0.9;
  }
}

/* Line movement animations */
@keyframes lineMove1 {
  0%, 100% {
    transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw - 300px));
    opacity: 0;
  }
}

@keyframes lineMove2 {
  0%, 100% {
    transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(-100vw + 300px));
    opacity: 0;
  }
}

@keyframes lineMove3 {
  0%, 100% {
    transform: translateX(0) scaleX(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateX(200px) scaleX(1.5);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(400px) scaleX(1);
    opacity: 0;
  }
}

/* Ensure content stays above background */
.contact-hero,
.contact-methods,
.form-wrapper,
.location-info {
  position: relative;
  z-index: 1;
}

.contact-hero {
  margin-bottom: 70px;
}

.contact-hero-compact {
  margin-bottom: 60px;
}

.contact-hero h1 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #d4af37 0%, #f0d06f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.contact-hero-compact h1 {
  font-size: 3rem;
  margin-bottom: 18px;
}

.contact-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-hero-compact .contact-subtitle {
  font-size: 1.15rem;
}

/* CONTACT METHOD CARDS */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.contact-section-compact .contact-methods {
  gap: 40px;
  margin: 0 auto 60px;
  max-width: 1200px;
}

.contact-method-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(17, 17, 17, 0.9) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 45px 35px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-section-compact .contact-method-card {
  padding: 55px 40px;
  border: 2px solid rgba(212, 175, 55, 0.25);
}

.contact-method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f0d06f, #d4af37);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.contact-method-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #d4af37;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3),
              0 0 40px rgba(212, 175, 55, 0.1);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(17, 17, 17, 0.95) 100%);
}

.method-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 3px solid rgba(212, 175, 55, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
              inset 0 2px 10px rgba(212, 175, 55, 0.1);
}

.contact-method-card:hover .method-icon {
  background: linear-gradient(135deg, #d4af37 0%, #f0d06f 100%);
  border-color: #f0d06f;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5),
              0 0 30px rgba(212, 175, 55, 0.3),
              inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

/* Contact icon images - all three */
.contact-icon-img {
  width: 45px;
  height: 45px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Phone icon - golden color */
.phone-img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(48%) saturate(468%) hue-rotate(5deg) brightness(96%) contrast(87%);
}

.contact-method-card:hover .phone-img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

/* WhatsApp icon - green color */
.whatsapp-img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(56%) saturate(826%) hue-rotate(76deg) brightness(95%) contrast(86%);
}

.contact-method-card:hover .whatsapp-img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

/* Email icon - golden color */
.email-img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(48%) saturate(468%) hue-rotate(5deg) brightness(96%) contrast(87%);
}

.contact-method-card:hover .email-img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

/* Card hover effects - scale icons */
.contact-method-card:hover .contact-icon-img {
  transform: scale(1.1);
}

/* Special border colors for each card */
.whatsapp-icon {
  border-color: rgba(37, 211, 102, 0.4);
}

.whatsapp-card:hover .whatsapp-icon {
  border-color: #25d366;
  background: #25d366;
}

.contact-method-card h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.method-detail {
  color: #d4af37;
  font-size: 1.15rem;
  margin: 10px 0 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.method-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* WhatsApp special styling */
.whatsapp-card {
  border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-card:hover {
  border-color: #25d366;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.15);
}

/* Service Area Pill */
.service-area-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 650px;
  margin: 50px auto;
  padding: 20px 40px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-area-pill i {
  color: #d4af37;
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.service-area-pill:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.12) 100%);
  border-color: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3),
              0 0 30px rgba(212, 175, 55, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .service-area-pill {
    font-size: 0.9rem;
    padding: 15px 25px;
  }
}

@media (max-width: 480px) {
  .service-area-pill {
    font-size: 0.85rem;
    padding: 12px 20px;
    gap: 10px;
  }

  .service-area-pill i {
    font-size: 1rem;
  }
}

/* FORM WRAPPER */
.form-wrapper {
  max-width: 800px;
  margin: 0 auto 80px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px;
  backdrop-filter: blur(10px);
}

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

.form-header h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-header p {
  color: #aaa;
  font-size: 1rem;
}

/* MODERN FORM */
.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.modern-contact-form input,
.modern-contact-form textarea,
.modern-contact-form select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus,
.modern-contact-form select:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.modern-contact-form input::placeholder,
.modern-contact-form textarea::placeholder {
  color: #666;
}

.modern-contact-form select {
  cursor: pointer;
}

.modern-contact-form select option {
  background: #1a1a1a;
  color: #fff;
}

.modern-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f0d06f 100%);
  color: #000;
  font-weight: 600;
  padding: 16px 40px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: center;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #f0d06f 0%, #d4af37 100%);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn i {
  color: #000;
}

/* LOCATION INFO */
.location-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* FREE ESTIMATION TOOL SECTION */
.estimation-tool-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.estimation-tool-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 25px;
  padding: 40px 35px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

/* Tool graphics decorations */
.tool-graphics {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.35;
}

.tool-icon {
  position: absolute;
  font-size: 3rem;
  color: #d4af37;
  transition: all 0.5s ease;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.tool-1 {
  top: 15%;
  left: 8%;
  transform: rotate(-25deg);
  animation: floatTool1 4s ease-in-out infinite;
}

.tool-2 {
  top: 20%;
  right: 10%;
  transform: rotate(35deg);
  animation: floatTool2 5s ease-in-out infinite;
}

.tool-3 {
  bottom: 15%;
  left: 12%;
  transform: rotate(15deg);
  animation: floatTool3 4.5s ease-in-out infinite;
}

.tool-4 {
  bottom: 20%;
  right: 8%;
  transform: rotate(-20deg);
  animation: floatTool4 5.5s ease-in-out infinite;
}

@keyframes floatTool1 {
  0%, 100% { transform: rotate(-25deg) translateY(0px); }
  50% { transform: rotate(-25deg) translateY(-10px); }
}

@keyframes floatTool2 {
  0%, 100% { transform: rotate(35deg) translateY(0px); }
  50% { transform: rotate(35deg) translateY(-12px); }
}

@keyframes floatTool3 {
  0%, 100% { transform: rotate(15deg) translateY(0px); }
  50% { transform: rotate(15deg) translateY(-8px); }
}

@keyframes floatTool4 {
  0%, 100% { transform: rotate(-20deg) translateY(0px); }
  50% { transform: rotate(-20deg) translateY(-10px); }
}

.estimation-tool-card:hover .tool-icon {
  opacity: 0.6;
  transform: scale(1.15);
}

.estimation-tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.6s ease;
}

.estimation-tool-card:hover::before {
  left: 100%;
}

.estimation-tool-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.3);
}

.estimation-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(212, 175, 55, 0.5);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.estimation-icon i {
  font-size: 2rem;
  color: #d4af37;
}

.estimation-tool-card:hover .estimation-icon {
  background: #d4af37;
  border-color: #d4af37;
  transform: rotate(10deg) scale(1.1);
}

.estimation-tool-card:hover .estimation-icon i {
  color: #000;
}

.estimation-tool-card h3 {
  font-size: 1.6rem;
  color: #d4af37;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
  flex: 1;
  text-align: center;
}

.estimation-desc {
  color: #ccc;
  font-size: 1rem;
  margin: 0;
  text-align: center;
  flex: 1;
}

.estimation-arrow {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.estimation-arrow i {
  font-size: 1.3rem;
  color: #d4af37;
  transition: transform 0.3s ease;
}

.estimation-tool-card:hover .estimation-arrow {
  background: #d4af37;
}

.estimation-tool-card:hover .estimation-arrow i {
  color: #000;
  transform: translateX(5px);
}

/* Mobile optimization for estimation tool */
@media (max-width: 768px) {
  .estimation-tool-section {
    margin: 40px auto;
  }

  .estimation-tool-card {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
    gap: 20px;
  }

  .tool-icon {
    font-size: 2rem;
  }

  .tool-1 {
    top: 10%;
    left: 5%;
  }

  .tool-2 {
    top: 12%;
    right: 5%;
  }

  .tool-3 {
    bottom: 10%;
    left: 5%;
  }

  .tool-4 {
    bottom: 12%;
    right: 5%;
  }

  .estimation-tool-card h3 {
    font-size: 1.4rem;
  }

  .estimation-desc {
    font-size: 0.95rem;
  }

  .estimation-icon,
  .estimation-arrow {
    width: 60px;
    height: 60px;
  }

  .estimation-icon i {
    font-size: 1.8rem;
  }

  .estimation-arrow i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .estimation-tool-card {
    padding: 30px 20px;
  }

  .tool-graphics {
    opacity: 0.25;
  }

  .tool-icon {
    font-size: 2rem;
  }

  .estimation-tool-card h3 {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }

  .estimation-desc {
    font-size: 0.9rem;
  }
}

.contact-section-compact .location-info {
  gap: 25px;
  max-width: 800px;
  margin-top: 20px;
}

.location-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 30px 25px;
  transition: all 0.3s ease;
}

.contact-section-compact .location-card {
  padding: 25px 20px;
}

.location-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.location-card i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.contact-section-compact .location-card i {
  font-size: 2rem;
  margin-bottom: 12px;
}

.location-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-section-compact .location-card h3 {
  font-size: 1.1rem;
}

.location-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.contact-section-compact .location-card p {
  font-size: 0.9rem;
}

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

  .contact-hero-compact h1 {
    font-size: 2.3rem;
  }

  .contact-subtitle {
    font-size: 1.05rem;
  }

  .contact-section-compact {
    padding: 140px 20px 60px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    padding: 0 15px;
    gap: 25px;
  }

  .contact-method-card {
    padding: 35px 25px;
  }

  .contact-section-compact .contact-method-card {
    padding: 40px 28px;
  }

  .method-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .contact-icon-img {
    width: 40px;
    height: 40px;
  }

  .contact-method-card h3 {
    font-size: 1.25rem;
  }

  .method-detail {
    font-size: 1rem;
  }

  .method-desc {
    font-size: 0.85rem;
  }

  .location-card {
    padding: 25px 20px;
  }

  .location-card h3 {
    font-size: 1.15rem;
  }

  .location-card p {
    font-size: 0.9rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-header h2 {
    font-size: 1.6rem;
  }

  .location-info {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
}

/* =============== SERVICES SECTION (OTHER PAGE) =============== */

.services-section {
  background: #0f0f0f;
  color: #fff;
  text-align: center;
  padding: 100px 40px;
}

.services-section h2 {
  color: #d4af37;
  font-size: 2.3rem;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 25px;
  max-width: 350px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: #d4af37;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.service-card .emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.service-card h3 {
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

/* MOBILE SERVICES */
@media (max-width: 768px) {
  .services-section {
    padding: 70px 20px;
  }

  .service-card {
    padding: 30px 20px;
  }
}

/* ================= GOOGLE REVIEWS SECTION =================== */

.google-reviews-section {
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  padding: 80px 20px;
}

.reviews-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Google Widget Header */
.google-widget-header {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-logo-section i {
  font-size: 2.5rem;
  color: #4285f4;
}

.google-logo-section span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #202124;
}

.google-rating-summary {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: #202124;
}

.rating-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rating-details .stars i {
  color: #fbbc04;
  font-size: 1.1rem;
  margin: 0 1px;
}

.review-count {
  font-size: 0.9rem;
  color: #5f6368;
}

/* Carousel Wrapper */
.reviews-carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto 30px;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

/* Google Style Review Cards */
.review-card.google-style {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
  text-align: left;
}

.review-card.google-style.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.reviewer-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviewer-name {
  font-weight: 600;
  font-size: 1rem;
  color: #202124;
}

.review-date {
  font-size: 0.85rem;
  color: #5f6368;
}

.review-stars {
  margin-bottom: 15px;
}

.review-stars i {
  color: #fbbc04;
  font-size: 1rem;
  margin: 0 1px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3c4043;
  margin-bottom: 15px;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e8eaed;
}

.google-badge i {
  color: #4285f4;
  font-size: 1rem;
}

.google-badge span {
  font-size: 0.85rem;
  color: #5f6368;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #dadce0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-nav i {
  color: #5f6368;
  font-size: 1.2rem;
}

.carousel-nav.prev {
  left: -50px;
}

.carousel-nav.next {
  right: -50px;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 25px 0 30px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #4285f4;
  width: 12px;
  height: 12px;
}

.carousel-dot:hover {
  background: rgba(66, 133, 244, 0.6);
}

/* Leave Review Button */
.leave-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4285f4;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.leave-review-btn:hover {
  background: #1a73e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.leave-review-btn i {
  font-size: 1.2rem;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .google-widget-header {
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px;
    text-align: center;
  }

  .google-logo-section {
    flex-direction: column;
    gap: 8px;
  }

  .google-logo-section i {
    font-size: 2rem;
  }

  .google-logo-section span {
    font-size: 1.2rem;
  }

  .rating-number {
    font-size: 2.5rem;
  }

  .carousel-nav.prev {
    left: 10px;
  }

  .carousel-nav.next {
    right: 10px;
  }

  .review-card.google-style {
    padding: 25px 20px;
  }

  .leave-review-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* ================= FOOTER =================== */

.site-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  color: #ddd;
  padding: 70px 30px 30px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  max-width: 1200px;
  margin: 0 auto 40px;
  gap: 50px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.footer-brand p {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

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

.footer-social-icons a {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icons a i {
  display: block;
  line-height: 1;
}

.footer-social-icons a:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
  border-color: #d4af37;
}

.footer-links {
  min-width: 150px;
}

.footer-links h4,
.footer-contact-section h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #d4af37;
  padding-left: 5px;
}

.footer-contact-section {
  min-width: 200px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #bbb;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: #d4af37;
  font-size: 1rem;
  width: 20px;
}

.footer-contact-item a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #d4af37;
}

.footer-contact-item span {
  color: #bbb;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 20px;
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom span {
  color: #d4af37;
  font-weight: 600;
}

.footer-bottom .admin-link {
  color: #555;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.3;
  font-size: 12px;
  margin-left: 10px;
  display: inline-block;
}

.footer-bottom .admin-link:hover {
  color: #d4af37;
  opacity: 1;
  transform: scale(1.2);
}

/* MOBILE FOOTER */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 50px 25px 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
    margin-bottom: 30px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    width: 130px;
    margin: 0 auto 15px;
  }

  .footer-brand p {
    margin: 0 auto 20px;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-links h4,
  .footer-contact-section h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .footer-links a {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-contact-item {
    justify-content: center;
    font-size: 0.9rem;
  }

  .payment-icons {
    margin-top: 20px;
    text-align: center;
  }

  .payment-icons i {
    font-size: 2rem;
    margin: 0 8px;
  }

  .footer-bottom {
    font-size: 0.85rem;
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 50px 20px 20px;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .social-icons a {
    font-size: 1.1rem;
    margin: 0 8px;
  }

  .payment-icons i {
    font-size: 1.8rem;
    margin: 0 6px;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

/* SOCIAL ICONS */
.social-icons {
  margin: 10px 0 20px;
}

.social-icons a {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #d4af37;
  transform: translateY(-3px);
}

/* PAYMENT ICONS */
.payment-icons {
  margin: 15px 0 20px;
}

.payment-icons i {
  font-size: 2.2rem;
  margin-right: 12px;
  color: #ccc;
  transition: color 0.3s ease, transform 0.3s ease;
}

.payment-icons i:hover {
  color: #d4af37;
  transform: scale(1.1);
}

/* CLICKABLE CONTACT LINKS */
.footer-socials a[href^="mailto"],
.footer-socials a[href^="tel"] {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-socials a[href^="mailto"]:hover,
.footer-socials a[href^="tel"]:hover {
  color: #d4af37;
}

/* ========== “OUR EXPERTISE” SECTION (automation page) ========== */

.expertise-section {
  background: radial-gradient(circle at top, #111 0%, #000 100%);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.expertise-section h2 {
  font-size: 2.4rem;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 50px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.expertise-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.expertise-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  width: 280px;
  padding: 30px 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.expertise-card:nth-child(2) { animation-delay: 0.2s; }
.expertise-card:nth-child(3) { animation-delay: 0.4s; }

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.3);
}

.expertise-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.expertise-card p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ========== ESTIMATION CTA BANNER ========== */

.estimation-cta-banner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.estimation-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.estimation-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.estimation-cta-icon {
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  flex-shrink: 0;
}

.estimation-cta-icon i {
  font-size: 2rem;
  color: #000;
}

.estimation-cta-text {
  flex: 1;
}

.estimation-cta-text h2 {
  color: #d4af37;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.estimation-cta-text p {
  color: #ccc;
  font-size: 1.05rem;
  margin: 0;
}

.estimation-cta-button {
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  color: #000;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.estimation-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #f0d06f, #d4af37);
}

.estimation-cta-button i {
  transition: transform 0.3s ease;
}

.estimation-cta-button:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .estimation-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .estimation-cta-text h2 {
    font-size: 1.5rem;
  }

  .estimation-cta-text p {
    font-size: 0.95rem;
  }

  .estimation-cta-button {
    padding: 15px 35px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .estimation-cta-banner {
    padding: 30px 15px;
  }

  .estimation-cta-icon {
    width: 60px;
    height: 60px;
  }

  .estimation-cta-icon i {
    font-size: 1.5rem;
  }

  .estimation-cta-text h2 {
    font-size: 1.3rem;
  }

  .estimation-cta-text p {
    font-size: 0.85rem;
  }

  .estimation-cta-button {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

/* ========== FEATURED SERVICES (index hero under-section) ========== */

.featured-services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 70px 80px;
  padding: 120px 40px;
  background: linear-gradient(to bottom, #0a0a0a 0%, #000 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Services background animation - same as contact page */
.services-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.service-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  width: 300px;
  min-height: 320px;
  padding: 50px 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s ease forwards;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 1;
}

.service-pill:nth-child(2) { animation-delay: 0.15s; }
.service-pill:nth-child(3) { animation-delay: 0.3s; }

.service-pill:hover {
  transform: translateY(-8px) scale(1.05) !important;
  border-color: #d4af37 !important;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.service-pill .emoji {
  display: block;
  font-size: 4rem;            /* BIG emoji like before */
  margin-bottom: 15px;
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}

.service-pill:hover .emoji {
  transform: scale(1.05) !important;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.45) !important;
}

.service-pill h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-pill p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  min-height: 85px;
  display: flex;
  align-items: center;
  text-align: center;
}

/* Responsive for featured services */
@media (max-width: 768px) {
  .featured-services {
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    gap: 40px;
  }

  .service-pill {
    width: 100%;
    max-width: 400px;
    min-height: 280px;
    padding: 40px 20px;
  }

  .service-pill .emoji {
    font-size: 3.5rem;
    margin-bottom: 12px;
  }

  .service-pill h3 {
    font-size: 1.3rem;
    min-height: auto;
  }

  .service-pill p {
    font-size: 0.9rem;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .featured-services {
    padding: 60px 15px;
  }

  .service-pill {
    padding: 35px 18px;
  }

  .service-pill .emoji {
    font-size: 3rem;
  }

  .service-pill h3 {
    font-size: 1.2rem;
  }
}

/* Make service pills clickable */
.service-pill-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-pill-link:hover .service-pill {
  transform: translateY(-8px) scale(1.05) !important;
  border-color: #d4af37 !important;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.service-pill-link:hover .service-pill .emoji {
  transform: scale(1.05) !important;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.45) !important;
}

/* ========== AUTOMATION PAGE WRAPPER & SECTIONS ========== */

/* ========== AUTOMATION PAGE ========== */

.automation-page {
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

/* Subtle code-like grid */
.automation-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

.automation-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

/* Automation Hero Section */
.automation-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 180px 40px 100px;
  background: transparent;
}

.automation-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.automation-bg-animation .blueprint-grid {
  display: none;
}

.automation-bg-animation .floating-shape {
  display: none;
}

.automation-bg-animation .shape-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.automation-bg-animation .shape-2 {
  width: 350px;
  height: 350px;
  top: 50%;
  right: 15%;
  animation-delay: 5s;
}

.automation-bg-animation .shape-3 {
  width: 300px;
  height: 300px;
  bottom: 15%;
  left: 20%;
  animation-delay: 10s;
}

.automation-bg-animation .shape-4 {
  width: 0;
  height: 0;
  display: none;
}

.automation-bg-animation .shape-5 {
  width: 0;
  height: 0;
  display: none;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.6;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.5;
  }
}

.automation-bg-animation .blueprint-line {
  display: none;
}

@keyframes lineMove {
  0%, 100% {
    transform: translateX(0);
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
  50% {
    transform: translateX(100px);
  }
}

.automation-hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.automation-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 10px 24px;
  border-radius: 6px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  animation: fadeInDown 0.8s ease;
  font-family: 'Courier New', monospace;
}

.automation-badge i {
  color: #d4af37;
  font-size: 1rem;
}

.automation-badge span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.automation-hero h1 {
  font-size: 4.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: -2px;
  animation: fadeInUp 0.8s ease 0.2s both;
  line-height: 1.1;
}

.automation-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
  font-weight: 400;
}

.automation-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.automation-btn-primary,
.automation-btn-secondary {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.automation-btn-primary {
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  color: #000;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.automation-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.automation-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.automation-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #d4af37;
}

.automation-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.automation-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.automation-stats .stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #d4af37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.automation-stats .stat-label {
  color: #ccc;
  font-size: 1rem;
  font-weight: 600;
}

/* Services Section */
.automation-section {
  padding: 100px 30px;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-badge i {
  color: #d4af37;
  font-size: 1rem;
}

.section-badge span {
  color: #d4af37;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-intro {
  color: #ccc;
  font-size: 1.15rem;
  line-height: 1.7;
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
}

.automation-card {
  background: rgba(20, 20, 20, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 48px 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.automation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.automation-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.automation-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.1);
  background: rgba(25, 25, 25, 0.7);
}

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

.automation-card:hover::after {
  opacity: 0;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.automation-card:hover .card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.15));
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.card-icon i {
  font-size: 2.5rem;
  color: #d4af37;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.automation-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.automation-card > p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.card-features li {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-features li i {
  color: #d4af37;
  font-size: 0.9rem;
}

/* Automation Mobile Responsive */
@media (max-width: 768px) {
  .automation-hero {
    min-height: 80vh;
    padding: 150px 20px 80px;
  }

  .automation-hero h1 {
    font-size: 2.8rem;
  }

  .automation-subtitle {
    font-size: 1.1rem;
  }

  .automation-stats {
    gap: 40px;
  }

  .automation-stats .stat-number {
    font-size: 2.5rem;
  }

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

  .automation-section {
    padding: 80px 20px;
  }

  .automation-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .automation-benefits {
    padding: 80px 20px;
  }

  .automation-benefits .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .automation-process {
    padding: 80px 20px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .automation-cta {
    padding: 80px 20px;
  }

  .cta-content h2 {
    font-size: 2.3rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .automation-hero {
    padding: 130px 15px 70px;
  }

  .automation-hero h1 {
    font-size: 2.2rem;
  }

  .automation-subtitle {
    font-size: 1rem;
  }

  .automation-hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .automation-btn-primary,
  .automation-btn-secondary {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .automation-stats {
    gap: 30px;
  }

  .automation-stats .stat-number {
    font-size: 2.2rem;
  }

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

  .section-intro {
    font-size: 1rem;
  }

  .automation-section {
    padding: 60px 15px;
  }

  .automation-grid {
    gap: 20px;
  }

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

  .card-icon {
    width: 70px;
    height: 70px;
  }

  .card-icon i {
    font-size: 2.2rem;
  }

  .automation-card h3 {
    font-size: 1.25rem;
  }

  .automation-benefits {
    padding: 60px 15px;
  }

  .automation-benefits .benefit-icon {
    width: 65px;
    height: 65px;
  }

  .automation-benefits .benefit-icon i {
    font-size: 2rem;
  }

  .automation-process {
    padding: 60px 15px;
  }

  .process-step .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .process-step h3 {
    font-size: 1.2rem;
  }

  .automation-cta {
    padding: 60px 15px;
  }

  .cta-content h2 {
    font-size: 1.9rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}

/* Benefits Section */
.automation-benefits {
  padding: 100px 30px;
  background: rgba(5, 5, 5, 0.5);
  position: relative;
  z-index: 2;
}

.automation-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1300px;
  margin: 0 auto;
}

.automation-benefits .benefit-card {
  background: rgba(18, 18, 18, 0.95);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.automation-benefits .benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.automation-benefits .benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow:
    0 20px 50px rgba(212, 175, 55, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(212, 175, 55, 0.3);
}

.automation-benefits .benefit-card:hover::before {
  opacity: 1;
}

.automation-benefits .benefit-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.automation-benefits .benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.automation-benefits .benefit-icon i {
  font-size: 2.2rem;
  color: #d4af37;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.automation-benefits .benefit-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.automation-benefits .benefit-card p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Process Section */
.automation-process {
  padding: 100px 30px;
  position: relative;
  z-index: 2;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

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

.process-step .step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #000;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  position: relative;
  z-index: 2;
}

.process-step h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.process-step p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* CTA Section */
.automation-cta {
  padding: 100px 30px;
  background: rgba(8, 8, 8, 0.5);
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  color: #000;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.cta-btn-secondary {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 2px solid rgba(37, 211, 102, 0.5);
}

.cta-btn-secondary:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: #25d366;
  color: #000;
}

/* ========= AUTOMATION PAGE PREMIUM ENHANCEMENTS ========= */

/* Floating Icons Animation */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.float-icon {
  position: absolute;
  font-size: 2.5rem;
  color: rgba(212, 175, 55, 0.15);
  animation: float 8s ease-in-out infinite;
}

.float-icon.icon-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.float-icon.icon-2 {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}

.float-icon.icon-3 {
  top: 45%;
  left: 8%;
  animation-delay: 2s;
}

.float-icon.icon-4 {
  top: 60%;
  right: 12%;
  animation-delay: 3s;
}

.float-icon.icon-5 {
  bottom: 20%;
  left: 18%;
  animation-delay: 4s;
}

.float-icon.icon-6 {
  bottom: 15%;
  right: 20%;
  animation-delay: 5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
    opacity: 0.3;
  }
}

/* Pulse Animation for Badge */
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.3);
  }
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, #d4af37 0%, #f0d06f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
  animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {
  0%, 100% {
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
  }
  50% {
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.8));
  }
}

/* Stat Icons and Dividers */
.automation-stats .stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.automation-stats .stat-icon i {
  font-size: 1.8rem;
  color: #d4af37;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.automation-stats .stat-divider {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.5), transparent);
  align-self: center;
}

.automation-stats .stat-plus {
  color: #d4af37;
  font-size: 2.5rem;
  font-weight: 900;
  margin-left: -5px;
}

/* Automation Impact Section */
.automation-impact {
  padding: 100px 30px;
  background: rgba(5, 5, 5, 0.5);
  position: relative;
  z-index: 2;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.impact-card {
  background: rgba(18, 18, 18, 0.95);
  border-radius: 25px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 45px 35px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(212, 175, 55, 0.15),
    inset 0 -1px 0 rgba(212, 175, 55, 0.05);
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.2), transparent 70%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.impact-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent 30%);
  animation: impactCardRotate 6s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

@keyframes impactCardRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.impact-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow:
    0 30px 70px rgba(212, 175, 55, 0.5),
    0 15px 40px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(212, 175, 55, 0.4);
}

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

.impact-card:hover::after {
  opacity: 1;
}

.impact-visual {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.impact-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.impact-card p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Circle Progress Indicator */
.circle-progress {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  position: relative;
}

.circle-progress svg {
  transform: rotate(-90deg);
}

.progress-ring {
  fill: none;
  stroke: rgba(212, 175, 55, 0.2);
  stroke-width: 8;
}

.progress-ring-fill {
  fill: none;
  stroke: #d4af37;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 50;
  animation: progressFill 2s ease-out forwards;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

@keyframes progressFill {
  from {
    stroke-dashoffset: 339.292;
  }
  to {
    stroke-dashoffset: 50;
  }
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 900;
  color: #d4af37;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Bar Chart Visualization */
.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
  height: 120px;
  margin: 0 auto;
  max-width: 200px;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, #d4af37, #f0d06f);
  border-radius: 8px 8px 0 0;
  position: relative;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  animation: barGrow 1.5s ease-out forwards;
  transform-origin: bottom;
}

.bar:nth-child(1) {
  height: 50%;
  animation-delay: 0.2s;
}

.bar:nth-child(2) {
  height: 75%;
  animation-delay: 0.4s;
}

.bar:nth-child(3) {
  height: 100%;
  animation-delay: 0.6s;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Savings Icon Visualization */
.savings-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
  border: 3px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: iconGlow 2s ease-in-out infinite;
}

.savings-icon i {
  font-size: 3rem;
  color: #d4af37;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

@keyframes iconGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.7);
  }
}

.savings-amount {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #d4af37;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  margin-top: 15px;
  animation: countUp 2s ease-out;
}

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

/* Technologies Section */
.technologies-section {
  padding: 100px 30px;
  position: relative;
  z-index: 2;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-item {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.tech-item:hover {
  transform: translateY(-8px) scale(1.08);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow:
    0 15px 40px rgba(212, 175, 55, 0.4),
    0 8px 25px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(212, 175, 55, 0.3);
}

.tech-item:hover::before {
  left: 100%;
}

.tech-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tech-item:hover .tech-icon-wrapper {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.tech-icon-wrapper i {
  font-size: 2rem;
  color: #d4af37;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.tech-item span {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Enhanced CTA with Particles */
.automation-cta {
  position: relative;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(10, 10, 10, 0.8));
  pointer-events: none;
  z-index: 0;
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  animation: floatParticle 15s linear infinite;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 15s;
}

.particle:nth-child(3) {
  left: 50%;
  animation-delay: 4s;
  animation-duration: 18s;
}

.particle:nth-child(4) {
  left: 70%;
  animation-delay: 6s;
  animation-duration: 14s;
}

.particle:nth-child(5) {
  left: 90%;
  animation-delay: 8s;
  animation-duration: 16s;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-icon-large {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.15));
  border: 3px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateIcon 20s linear infinite;
}

.cta-icon-large i {
  font-size: 3.5rem;
  color: #d4af37;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

@keyframes rotateIcon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-content h2 .highlight {
  color: #f0d06f;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
  font-weight: 900;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}

.cta-feature i {
  color: #d4af37;
  font-size: 1.2rem;
}

/* Mega Button Modifier */
.automation-btn-primary.mega,
.cta-btn-primary.mega {
  padding: 22px 50px;
  font-size: 1.2rem;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.automation-btn-primary.mega:hover,
.cta-btn-primary.mega:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 45px rgba(212, 175, 55, 0.7);
}

/* Mobile Responsive for Premium Elements */
@media (max-width: 768px) {
  .floating-icons {
    display: none;
  }

  .automation-impact {
    padding: 80px 20px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .technologies-section {
    padding: 80px 20px;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
  }

  .cta-features {
    flex-direction: column;
    gap: 15px;
  }

  .automation-stats .stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .automation-impact {
    padding: 60px 15px;
  }

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

  .circle-progress {
    width: 100px;
    height: 100px;
  }

  .circle-progress svg {
    width: 100px;
    height: 100px;
  }

  .progress-text {
    font-size: 1.6rem;
  }

  .bar-chart {
    height: 100px;
    max-width: 160px;
  }

  .savings-icon {
    width: 100px;
    height: 100px;
  }

  .savings-icon i {
    font-size: 2.5rem;
  }

  .savings-amount {
    font-size: 1.5rem;
  }

  .technologies-section {
    padding: 60px 15px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .tech-item {
    padding: 25px 15px;
  }

  .tech-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .tech-icon-wrapper i {
    font-size: 1.7rem;
  }

  .tech-item span {
    font-size: 0.85rem;
  }

  .cta-icon-large {
    width: 80px;
    height: 80px;
  }

  .cta-icon-large i {
    font-size: 2.8rem;
  }

  .automation-btn-primary.mega,
  .cta-btn-primary.mega {
    padding: 18px 35px;
    font-size: 1.05rem;
  }
}

/* ========= PROMO TICKER (CSS version, used on other pages if needed) ========= */

.promo-ticker {
  position: relative;
  width: 100%;
  background: #b30000;
  color: #ffffff;
  overflow: hidden;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  z-index: 10000;
}

.promo-track {
  display: inline-flex;
  white-space: nowrap;
  animation: promo-scroll 18s linear infinite;
}

.promo-track span {
  display: inline-block;
  padding-right: 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .promo-ticker {
    padding: 2px 0;
    font-size: 0;
    line-height: 1;
  }

  .promo-track {
    align-items: center;
  }

  .promo-track span {
    font-size: 0.65rem;
    padding-right: 1.5rem;
    letter-spacing: 0.01em;
    line-height: 1.3;
    display: inline-block;
    vertical-align: middle;
  }
}

@keyframes promo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========= GLOBAL FADE-UP ANIMATION (IMPORTANT) ========= */

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* QUICK CONTACT OPTIONS (contact page) */
.contact-quick {
  margin: 40px auto 50px;
  max-width: 1000px;
  text-align: center;
}

.contact-pill-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-pill {
  flex: 1 1 220px;
  max-width: 260px;
  background: #151515;
  border-radius: 16px;
  padding: 18px 18px 16px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-pill i {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #d4af37;
}

.contact-pill .pill-title {
  display: block;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #fff;
}

.contact-pill small {
  display: block;
  font-size: 0.85rem;
  color: #bfbfbf;
}

.contact-pill:hover {
  transform: translateY(-4px);
  border-color: #d4af37;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.2);
}

.contact-quick-note {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #ccc;
}

/* mobile stacking */
@media (max-width: 768px) {
  .contact-pill-row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-pill {
    max-width: 100%;
  }
}




/* ===== CONTACT PAGE – QUICK OPTIONS ROW ===== */

.contact-options {
  max-width: 900px;
  margin: 2rem auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-pill {
  text-decoration: none;
  background: #181818;
  border-radius: 999px;
  padding: 0.9rem 2.6rem;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
}

.contact-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
  border-color: #d4af37;
}

/* Top line (icon + label) */
.pill-top {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
}

/* Small description */
.pill-sub {
  font-size: 0.8rem;
  color: #bbbbbb;
}

/* Make the WhatsApp pill look “pressed” / active */
.contact-pill--whatsapp {
  background: #25d366;
  border-color: #25d366;
}

.contact-pill--whatsapp .pill-top,
.contact-pill--whatsapp .pill-sub {
  color: #000;
}

/* “Prefer the form?” line */
.contact-prefer {
  text-align: center;
  margin: 0.5rem auto 2.5rem;
  font-size: 0.95rem;
  color: #cccccc;
}

.contact-prefer strong {
  color: #ffffff;
}

/* Mobile layout – stack pills full width */
@media (max-width: 768px) {
  .contact-options {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-pill {
    width: 100%;
    max-width: 100%;
  }
}

/* =============== ESTIMATION TOOL PAGE =============== */

.estimation-page {
  background: linear-gradient(to bottom, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
  min-height: 100vh;
  padding: 160px 30px 100px;
  position: relative;
  overflow: hidden;
}

/* Estimation Background Animation */
.estimation-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

.estimation-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  min-width: 140px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.trust-item i {
  font-size: 2rem;
  color: #d4af37;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.trust-item span {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.estimation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.5);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.estimation-badge i {
  color: #d4af37;
  font-size: 1.1rem;
}

.estimation-badge span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.estimation-header h1 {
  font-size: 3.5rem;
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: 800;
  background: linear-gradient(180deg, #d4af37 0%, #f0d06f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.estimation-intro {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.8;
}

.estimation-container {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: start;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Form Wrapper */
.estimation-form-wrapper {
  background: rgba(26, 26, 26, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 50px;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.estimation-form-wrapper:hover {
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-section h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.form-section h2 i {
  font-size: 1.8rem;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Project Type Cards */
.project-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
}

.project-type-card {
  position: relative;
  cursor: pointer;
  perspective: 1000px;
}

.project-type-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.type-content {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(17, 17, 17, 0.95));
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
}

/* Gradient glow background */
.type-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Card shine effect */
.card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
}

/* Icon wrapper with gradient background */
.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 2px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.icon-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.type-content i {
  font-size: 2rem;
  color: #999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.type-content span {
  color: #d0d0d0;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Hover effects */
.project-type-card:hover .type-content {
  border-color: rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(17, 17, 17, 0.98));
  transform: translateY(-6px) rotateX(5deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
              0 0 30px rgba(212, 175, 55, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.project-type-card:hover .type-content::before {
  opacity: 1;
}

.project-type-card:hover .card-shine {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.project-type-card:hover .icon-wrapper {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.15));
  border-color: rgba(212, 175, 55, 0.6);
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.project-type-card:hover .icon-wrapper::before {
  width: 120%;
  height: 120%;
}

.project-type-card:hover .type-content i {
  color: #d4af37;
  transform: scale(1.15) rotateZ(5deg);
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
}

.project-type-card:hover .type-content span {
  color: #fff;
  transform: translateY(-2px);
}

/* Selected state */
.project-type-card input[type="radio"]:checked + .type-content {
  border-color: #d4af37;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4),
              0 0 50px rgba(212, 175, 55, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.project-type-card input[type="radio"]:checked + .type-content::before {
  opacity: 1;
}

.project-type-card input[type="radio"]:checked + .type-content .icon-wrapper {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.25));
  border-color: #d4af37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5),
              inset 0 0 20px rgba(212, 175, 55, 0.2);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5),
                inset 0 0 20px rgba(212, 175, 55, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.7),
                inset 0 0 25px rgba(212, 175, 55, 0.3);
  }
}

.project-type-card input[type="radio"]:checked + .type-content i {
  color: #d4af37;
  transform: scale(1.2);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
  animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% { transform: scale(1.2) translateY(0); }
  50% { transform: scale(1.2) translateY(-5px); }
}

.project-type-card input[type="radio"]:checked + .type-content span {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Form Groups */
.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.form-group input.error {
  border-color: #ff4444;
  animation: shake 0.5s;
}

.helper-text {
  display: block;
  color: #999;
  font-size: 0.85rem;
  margin-top: 6px;
}

/* Checkbox Cards */
.checkbox-group {
  display: grid;
  gap: 15px;
}

.checkbox-card {
  position: relative;
  cursor: pointer;
}

.checkbox-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.checkbox-content {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.checkbox-content i {
  font-size: 1.8rem;
  color: #999;
  transition: all 0.3s ease;
}

.checkbox-content div {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkbox-content strong {
  color: #fff;
  font-size: 1rem;
}

.checkbox-content span {
  color: #d4af37;
  font-weight: 700;
}

.checkbox-card:hover .checkbox-content {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.05);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content {
  border-color: #d4af37;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content i {
  color: #d4af37;
}

/* Navigation Buttons */
.form-navigation {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  color: #000;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Step Indicator */
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.step {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-weight: 700;
  transition: all 0.3s ease;
}

.step.active {
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  border-color: #d4af37;
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

/* Estimate Display */
.estimate-display {
  position: sticky;
  top: 160px;
}

.estimate-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.08));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  padding: 40px 35px;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2),
              0 0 80px rgba(212, 175, 55, 0.15),
              inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.estimate-card.glow {
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3),
              0 0 100px rgba(212, 175, 55, 0.25),
              inset 0 1px 1px rgba(255, 255, 255, 0.15);
  border-color: rgba(212, 175, 55, 0.7);
}

.estimate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: radial-gradient(circle at top center, rgba(212, 175, 55, 0.15), transparent);
  pointer-events: none;
}

.estimate-card h3 {
  color: #d4af37;
  font-size: 1.65rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Estimate Contact Section */
.estimate-contact-section {
  margin: 30px 0;
  position: relative;
  z-index: 1;
}

.estimate-contact-heading {
  color: #d4af37;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.estimate-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.estimate-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.estimate-contact-btn .contact-emoji {
  font-size: 1.5rem;
}

.estimate-contact-btn .contact-text {
  color: #fff;
}

.estimate-contact-btn.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.estimate-contact-btn.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #2be47a 0%, #14a085 100%);
}

.estimate-contact-btn.phone-btn {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 2px solid rgba(212, 175, 55, 0.5);
}

.estimate-contact-btn.phone-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.15) 100%);
  border-color: #d4af37;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 640px) {
  .estimate-contact-btn {
    font-size: 1rem;
    padding: 16px 20px;
  }

  .estimate-contact-btn .contact-emoji {
    font-size: 1.3rem;
  }
}

/* Trust Indicators in Card */
.trust-indicators-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  z-index: 1;
}

.trust-item-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.trust-item-card:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.trust-item-card i {
  color: #d4af37;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.trust-item-card span {
  color: #d0d0d0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.estimate-breakdown {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #d0d0d0;
  font-size: 1rem;
}

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

.breakdown-item span:first-child {
  font-weight: 500;
}

.breakdown-item span:last-child {
  color: #d4af37;
  font-weight: 700;
  font-size: 1.05rem;
}

.estimate-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0.5));
  border-radius: 18px;
  margin-bottom: 30px;
  border: 2px solid rgba(212, 175, 55, 0.6);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3),
              0 8px 30px rgba(212, 175, 55, 0.2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.estimate-total::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.estimate-total span:first-child {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.estimate-total span:last-child {
  background: linear-gradient(135deg, #d4af37 0%, #f0d06f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.2rem;
  font-weight: 900;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.7));
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.estimate-total span:last-child.pulse {
  animation: pulse 0.5s ease;
}

.estimate-note {
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  border-radius: 15px;
  margin-bottom: 28px;
  display: flex;
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.estimate-note i {
  color: #d4af37;
  font-size: 1.3rem;
  margin-top: 2px;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.estimate-note p {
  color: #d0d0d0;
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

.estimate-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.estimate-features .feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d0d0d0;
  font-size: 0.98rem;
  font-weight: 500;
}

.estimate-features .feature i {
  color: #d4af37;
  font-size: 1.15rem;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

/* Estimate CTA Button */
.estimate-cta {
  margin-top: 25px;
  position: relative;
  z-index: 1;
}

.estimate-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 28px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.25), rgba(76, 175, 80, 0.15));
  border: 2px solid rgba(76, 175, 80, 0.6);
  border-radius: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.estimate-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.estimate-cta-btn:hover::before {
  left: 100%;
}

.estimate-cta-btn:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.35), rgba(76, 175, 80, 0.25));
  border-color: rgba(76, 175, 80, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.estimate-cta-btn i.fa-whatsapp {
  font-size: 1.4rem;
  color: #25d366;
  filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.5));
}

.estimate-cta-btn i.fa-arrow-right {
  transition: transform 0.3s ease;
}

.estimate-cta-btn:hover i.fa-arrow-right {
  transform: translateX(5px);
}

/* Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.success-content {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(17, 17, 17, 0.98));
  border: 2px solid #d4af37;
  border-radius: 25px;
  padding: 50px 40px;
  max-width: 650px;
  text-align: center;
  box-shadow: 0 20px 80px rgba(212, 175, 55, 0.4);
  max-height: 90vh;
  overflow-y: auto;
}

.success-icon {
  font-size: 5rem;
  color: #d4af37;
  margin-bottom: 20px;
  animation: scaleIn 0.5s ease;
}

.success-content h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 15px;
}

.success-content p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.success-estimate {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.success-estimate span {
  color: #ccc;
  font-size: 0.95rem;
}

.success-estimate strong {
  color: #d4af37;
  font-size: 2.5rem;
  font-weight: 900;
}

.success-message {
  font-size: 0.95rem !important;
  line-height: 1.7;
}

.success-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Customer Info Box in Success Modal */
.customer-info-box {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
  text-align: left;
}

.customer-info-box h3 {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.customer-info-box h3 i {
  font-size: 1.3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-label {
  color: #999;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  word-break: break-word;
}

/* WhatsApp Button */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white !important;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  border-color: #25D366;
}

.btn-whatsapp i {
  font-size: 1.3rem;
}

.error-message {
  background: rgba(255, 68, 68, 0.1);
  border: 2px solid rgba(255, 68, 68, 0.5);
  border-radius: 12px;
  padding: 15px 20px;
  color: #ff4444;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideDown 0.3s ease;
}

/* Animations */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

@keyframes scaleIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes slideDown {
  0% { transform: translateY(-20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Estimation Benefits Section */
.estimation-benefits {
  max-width: 1200px;
  margin: 100px auto 80px;
  padding: 60px 40px;
  background: rgba(26, 26, 26, 0.6);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.estimation-benefits h2 {
  text-align: center;
  color: #d4af37;
  font-size: 2.2rem;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.estimation-benefits h2 i {
  font-size: 2rem;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

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

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.15));
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* Background Graphics Container */
.icon-bg-graphic {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

/* Graphic Circles - Card 1 (Instant Results) */
.graphic-circle {
  position: absolute;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
}

.circle-1 {
  width: 30px;
  height: 30px;
  top: 10%;
  right: 15%;
  animation: float-circle 4s ease-in-out infinite;
}

.circle-2 {
  width: 20px;
  height: 20px;
  bottom: 20%;
  left: 10%;
  animation: float-circle 3s ease-in-out infinite 0.5s;
}

.circle-3 {
  width: 15px;
  height: 15px;
  top: 50%;
  right: 5%;
  animation: float-circle 3.5s ease-in-out infinite 1s;
}

@keyframes float-circle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-5px) scale(1.1); opacity: 0.5; }
}

/* Graphic Lines - Card 2 (Accurate Pricing) */
.graphic-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  transform-origin: left center;
}

.line-1 {
  width: 35px;
  top: 20%;
  left: 10%;
  transform: rotate(15deg);
  animation: pulse-line 2s ease-in-out infinite;
}

.line-2 {
  width: 25px;
  top: 50%;
  right: 15%;
  transform: rotate(-10deg);
  animation: pulse-line 2s ease-in-out infinite 0.4s;
}

.line-3 {
  width: 30px;
  bottom: 25%;
  left: 20%;
  transform: rotate(25deg);
  animation: pulse-line 2s ease-in-out infinite 0.8s;
}

.graphic-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
  top: 30%;
  left: 30%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; transform: scaleX(1); }
  50% { opacity: 0.6; transform: scaleX(1.2); }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0.8; }
}

/* Graphic Checks - Card 3 (No Obligation) */
.graphic-check {
  position: absolute;
  width: 20px;
  height: 10px;
  border-left: 2px solid rgba(212, 175, 55, 0.4);
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
  transform: rotate(-45deg);
  animation: check-appear 3s ease-in-out infinite;
}

.check-1 {
  top: 15%;
  left: 15%;
}

.check-2 {
  bottom: 20%;
  right: 20%;
  animation-delay: 1s;
}

.circle-pulse {
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: pulse-expand 2s ease-out infinite;
}

@keyframes check-appear {
  0%, 100% { opacity: 0.2; transform: rotate(-45deg) scale(0.8); }
  50% { opacity: 0.5; transform: rotate(-45deg) scale(1); }
}

@keyframes pulse-expand {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Graphic Waves - Card 4 (Save & Compare) */
.graphic-wave {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    rgba(212, 175, 55, 0.5),
    rgba(212, 175, 55, 0.3),
    transparent
  );
  left: 0;
}

.wave-1 {
  top: 30%;
  animation: wave-move 3s ease-in-out infinite;
}

.wave-2 {
  top: 50%;
  animation: wave-move 3s ease-in-out infinite 0.5s;
}

.wave-3 {
  top: 70%;
  animation: wave-move 3s ease-in-out infinite 1s;
}

@keyframes wave-move {
  0%, 100% { transform: translateX(-10px); opacity: 0.2; }
  50% { transform: translateX(10px); opacity: 0.5; }
}

.benefit-icon i {
  font-size: 2.5rem;
  color: #d4af37;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
  position: relative;
  z-index: 2;
}

.benefit-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-card p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* How It Works Section */
.how-it-works {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

.how-it-works h2 {
  text-align: center;
  color: #d4af37;
  font-size: 2.2rem;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.how-it-works h2 i {
  font-size: 2rem;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  position: relative;
}

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

.step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #000;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  position: relative;
  z-index: 2;
}

.timeline-step h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.timeline-step p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .estimation-container {
    grid-template-columns: 1fr;
  }

  .estimate-display {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .estimation-page {
    padding: 140px 20px 80px;
  }

  .estimation-header {
    margin-bottom: 50px;
  }

  .estimation-header h1 {
    font-size: 2.8rem;
  }

  .estimation-intro {
    font-size: 1rem;
  }

  .estimation-container {
    gap: 40px;
  }

  .estimation-form-wrapper {
    padding: 35px 25px;
    border-radius: 25px;
  }

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

  .project-types {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .type-content {
    padding: 28px 15px;
  }

  .type-content i {
    font-size: 2.3rem;
  }

  .form-navigation {
    flex-direction: column;
  }

  .estimate-card {
    padding: 35px 28px;
  }

  .estimate-card h3 {
    font-size: 1.5rem;
  }

  .trust-indicators {
    gap: 20px;
  }

  .trust-item {
    min-width: 120px;
    padding: 15px;
  }

  .estimation-benefits {
    margin: 60px auto 50px;
    padding: 40px 25px;
  }

  .estimation-benefits h2 {
    font-size: 1.8rem;
    margin-bottom: 35px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .how-it-works {
    margin: 0 auto 50px;
    padding: 40px 25px;
  }

  .how-it-works h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .estimation-page {
    padding: 130px 15px 70px;
  }

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

  .estimation-header h1 {
    font-size: 2rem;
  }

  .estimation-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .estimation-intro {
    font-size: 0.95rem;
  }

  .estimation-form-wrapper {
    padding: 25px 18px;
    border-radius: 20px;
  }

  .project-types {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-type-card {
    min-height: 60px;
  }

  .type-content {
    padding: 20px 15px;
  }

  .type-content i {
    font-size: 2.2rem;
  }

  .form-section h2 {
    font-size: 1.5rem;
    gap: 10px;
  }

  .form-section h2 i {
    font-size: 1.5rem;
  }

  .estimate-card {
    padding: 30px 22px;
  }

  .estimate-card h3 {
    font-size: 1.4rem;
  }

  .trust-indicators-card {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .trust-item-card {
    padding: 10px 12px;
  }

  .trust-item-card i {
    font-size: 1rem;
  }

  .trust-item-card span {
    font-size: 0.8rem;
  }

  .estimate-total {
    padding: 20px;
  }

  .estimate-total span:first-child {
    font-size: 1rem;
  }

  .estimate-total span:last-child {
    font-size: 1.8rem;
  }

  .success-content {
    padding: 40px 25px;
    margin: 20px;
  }

  .success-icon {
    font-size: 4rem;
  }

  .success-estimate strong {
    font-size: 2rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .success-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-whatsapp,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .customer-info-box {
    padding: 20px;
  }

  .customer-info-box h3 {
    font-size: 1.1rem;
  }

  /* Enhanced Mobile Form Improvements for iPhone */
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group input[type="number"],
  .form-group select,
  .form-group textarea {
    font-size: 16px !important; /* Prevents iOS auto-zoom */
    padding: 16px !important;
    min-height: 50px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  /* Better button sizing for touch */
  .btn-primary,
  .btn-secondary,
  #nextBtn,
  #prevBtn,
  #submitBtn {
    padding: 16px 28px !important;
    min-height: 50px;
    font-size: 1rem !important;
    width: 100%;
    margin-bottom: 12px;
  }

  .form-navigation {
    gap: 12px;
  }

  /* Checkbox cards mobile optimization */
  .checkbox-group {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .checkbox-card {
    min-height: 70px;
  }

  .checkbox-content {
    padding: 16px !important;
  }

  .checkbox-content i {
    font-size: 1.8rem;
  }

  .checkbox-content strong {
    font-size: 1rem;
  }

  .checkbox-content span {
    font-size: 0.95rem;
  }

  /* Step indicator mobile */
  .step-indicator {
    gap: 12px;
    margin-top: 30px;
  }

  .step {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    font-size: 1.1rem;
  }

  /* Trust indicators mobile */
  .trust-indicators {
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 140px;
  }

  /* Estimate breakdown mobile */
  .breakdown-item {
    padding: 14px 0;
    font-size: 0.95rem;
  }

  /* Form labels mobile */
  .form-group label {
    font-size: 1rem !important;
    margin-bottom: 10px;
  }

  .helper-text {
    font-size: 0.85rem !important;
  }

  /* Better spacing */
  .form-group {
    margin-bottom: 25px;
  }

  .form-section {
    padding: 0;
  }

  /* Estimate note mobile */
  .estimate-note {
    padding: 16px;
    font-size: 0.85rem;
  }

  .estimate-note i {
    font-size: 1.2rem;
  }

  /* Benefits and timeline cards */
  .benefit-card {
    padding: 28px 20px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon i {
    font-size: 1.8rem;
  }

  .timeline-step {
    padding: 28px 22px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* Ultra small devices (320px - iPhone SE, small Android) */
@media (max-width: 375px) {
  .estimation-header h1 {
    font-size: 1.8rem;
  }

  .estimation-intro {
    font-size: 0.9rem;
  }

  .form-section h2 {
    font-size: 1.3rem;
  }

  .project-type-card {
    min-height: 55px;
  }

  .type-content {
    padding: 18px 12px;
  }

  .type-content i {
    font-size: 2rem;
  }

  .type-content span {
    font-size: 0.95rem;
  }

  .trust-item {
    padding: 12px;
    font-size: 0.8rem;
  }

  .trust-item i {
    font-size: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px !important;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px !important;
    font-size: 0.95rem !important;
  }

  .step {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem;
  }

  .estimate-card h3 {
    font-size: 1.3rem;
  }

  .breakdown-item {
    font-size: 0.9rem;
    padding: 12px 0;
  }

  .estimate-total span:last-child {
    font-size: 1.6rem;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }

  .timeline-step h3 {
    font-size: 1.1rem;
  }

  .timeline-step p {
    font-size: 0.9rem;
  }

  .trust-indicators {
    gap: 15px;
    margin-top: 30px;
  }

  .trust-item {
    min-width: 100px;
    padding: 12px;
  }

  .trust-item i {
    font-size: 1.5rem;
  }

  .trust-item span {
    font-size: 0.85rem;
  }

  .estimation-benefits {
    margin: 50px auto 40px;
    padding: 35px 20px;
  }

  .estimation-benefits h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    flex-direction: column;
    gap: 10px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-icon {
    width: 65px;
    height: 65px;
  }

  .benefit-icon i {
    font-size: 2rem;
  }

  .benefit-card h3 {
    font-size: 1.15rem;
  }

  .how-it-works {
    margin: 0 auto 40px;
    padding: 35px 20px;
  }

  .how-it-works h2 {
    font-size: 1.5rem;
    margin-bottom: 35px;
    flex-direction: column;
    gap: 10px;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
    margin-bottom: 20px;
  }

  .timeline-step h3 {
    font-size: 1.15rem;
  }
}

/* =========================================
   COMMERCIAL SERVICES PAGE
   ========================================= */

.commercial-section {
  position: relative;
  background: #0f1419;
  min-height: 100vh;
  padding-top: 100px;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.commercial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

@keyframes backgroundShift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-5%, -5%) scale(1.05);
  }
}

.commercial-bg-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* Animated Blueprint Grid */
.commercial-bg-animation .blueprint-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridSlide 80s linear infinite;
  opacity: 0.5;
}

@keyframes gridSlide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(80px, 80px);
  }
}

/* Floating Construction Tool Icons */
.commercial-bg-animation .floating-tool {
  position: absolute;
  color: rgba(212, 175, 55, 0.15);
  font-size: 80px;
  animation: floatTool 35s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  pointer-events: none;
}

.commercial-bg-animation .tool-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.commercial-bg-animation .tool-2 {
  top: 45%;
  right: 15%;
  animation-delay: 5s;
  font-size: 70px;
}

.commercial-bg-animation .tool-3 {
  bottom: 25%;
  left: 8%;
  animation-delay: 10s;
  font-size: 90px;
}

.commercial-bg-animation .tool-4 {
  top: 55%;
  left: 55%;
  animation-delay: 15s;
  font-size: 75px;
}

.commercial-bg-animation .tool-5 {
  top: 30%;
  left: 40%;
  animation-delay: 20s;
  font-size: 85px;
}

.commercial-bg-animation .tool-6 {
  bottom: 35%;
  right: 20%;
  animation-delay: 25s;
  font-size: 80px;
}

@keyframes floatTool {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.15;
  }
  25% {
    transform: translate(50px, -60px) rotate(15deg);
    opacity: 0.25;
  }
  50% {
    transform: translate(-40px, -100px) rotate(-10deg);
    opacity: 0.2;
  }
  75% {
    transform: translate(60px, -50px) rotate(20deg);
    opacity: 0.25;
  }
}

/* Animated Construction Lines */
.commercial-bg-animation .blueprint-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), rgba(240, 208, 111, 0.5), rgba(212, 175, 55, 0.4), transparent);
  width: 600px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 10px rgba(212, 175, 55, 0.2);
  animation: lineMove 20s ease-in-out infinite;
}

.commercial-bg-animation .line-1 {
  top: 20%;
  left: -500px;
  animation-delay: 0s;
}

.commercial-bg-animation .line-2 {
  top: 55%;
  right: -500px;
  animation-delay: 5s;
  animation-direction: reverse;
}

.commercial-bg-animation .line-3 {
  top: 80%;
  left: -500px;
  animation-delay: 10s;
}

@keyframes lineMove {
  0%, 100% {
    transform: translateX(0);
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
  50% {
    transform: translateX(calc(100vw + 500px));
    opacity: 1;
  }
}

/* Construction Tool Particles */
.commercial-bg-animation .gold-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(240, 208, 111, 0.6) 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5), 0 0 8px rgba(240, 208, 111, 0.3);
  animation: particleFloat 25s ease-in-out infinite;
}

.commercial-bg-animation .particle-1 {
  top: 15%;
  left: 25%;
  animation-delay: 0s;
}

.commercial-bg-animation .particle-2 {
  top: 45%;
  left: 70%;
  animation-delay: 4s;
  animation-duration: 18s;
}

.commercial-bg-animation .particle-3 {
  top: 75%;
  left: 40%;
  animation-delay: 8s;
  animation-duration: 22s;
}

.commercial-bg-animation .particle-4 {
  top: 30%;
  left: 85%;
  animation-delay: 12s;
  animation-duration: 19s;
}

.commercial-bg-animation .particle-5 {
  top: 60%;
  left: 15%;
  animation-delay: 16s;
  animation-duration: 21s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  25% {
    transform: translate(60px, -100px) scale(1.3) rotate(45deg);
    opacity: 0.7;
  }
  50% {
    transform: translate(-40px, -180px) scale(0.9) rotate(90deg);
    opacity: 0.5;
  }
  75% {
    transform: translate(90px, -120px) scale(1.1) rotate(135deg);
    opacity: 0.8;
  }
  90% {
    opacity: 0.3;
  }
}

.commercial-hero {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
}

.commercial-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 12px 24px;
  border-radius: 50px;
  color: #d4af37;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease;
  backdrop-filter: blur(10px);
}

.commercial-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  letter-spacing: -1px;
}

.commercial-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.4s backwards;
  font-weight: 400;
}

.commercial-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 50px;
  animation: fadeInUp 1s ease 0.6s backwards;
}

/* WHO WE SERVE */
.who-we-serve {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 30px;
}

.who-we-serve h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 70px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.who-we-serve h2 i {
  color: #d4af37;
  margin-right: 16px;
  font-size: 0.9em;
}

.client-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.client-card {
  background: rgba(30, 30, 30, 0.5);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(35, 35, 35, 0.6);
}

.client-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: #d4af37;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.client-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.client-card p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-size: 1rem;
}

/* CONTRACTS SECTION */
.contracts-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 30px;
}

.contracts-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.contracts-section h2 i {
  color: #d4af37;
  margin-right: 16px;
  font-size: 0.9em;
}

.section-intro {
  text-align: center;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 70px;
  font-weight: 400;
}

.contracts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.contract-card {
  position: relative;
  background: rgba(30, 30, 30, 0.5);
  border-radius: 24px;
  padding: 48px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
}

.contract-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(35, 35, 35, 0.6);
}

.contract-card.featured {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.contract-card.featured .contract-header h3,
.contract-card.featured .contract-desc,
.contract-card.featured .contract-features li {
  color: #ffffff;
}

.contract-card.featured .contract-header i {
  color: #ffffff;
}

.contract-card.featured .contract-features li i {
  color: #ffffff;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #d4af37;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contract-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contract-header i {
  font-size: 2rem;
  color: #d4af37;
}

.contract-header h3 {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 700;
}

.contract-desc {
  color: #aaa;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.contract-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.contract-features li {
  color: #ccc;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  font-size: 0.95rem;
}

.contract-features li:last-child {
  border-bottom: none;
}

.contract-features li i {
  color: #d4af37;
  margin-right: 10px;
  width: 16px;
}

.contract-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #d4af37;
  border: none;
  color: #ffffff;
  text-align: center;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.contract-btn:hover {
  background: #c9a332;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.contract-card.featured .contract-btn {
  background: #ffffff;
  color: #d4af37;
}

.contract-card.featured .contract-btn:hover {
  background: #f5f5f7;
}

/* COMMERCIAL SERVICES GRID */
.commercial-services-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 30px;
}

.commercial-services-grid h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 60px;
  font-weight: 700;
}

.commercial-services-grid h2 i {
  color: #d4af37;
  margin-right: 15px;
}

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

.service-column {
  background: rgba(20, 20, 20, 0.9);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.service-column h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #d4af37;
  font-weight: 700;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  color: #ccc;
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
}

.service-list li i {
  color: #d4af37;
  position: absolute;
  left: 0;
  top: 12px;
}

/* WHY CHOOSE COMMERCIAL */
.why-choose-commercial {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 30px;
}

.why-choose-commercial h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 60px;
  font-weight: 700;
}

.why-choose-commercial h2 i {
  color: #d4af37;
  margin-right: 15px;
}

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

.benefit-item {
  text-align: center;
  padding: 35px;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.4);
}

.benefit-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #d4af37;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.benefit-item:hover .benefit-icon-circle {
  transform: scale(1.05);
}

.benefit-item h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-item p {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* COMMERCIAL CTA */
.commercial-cta {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 80px auto;
  padding: 60px 40px;
  text-align: center;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.commercial-cta i {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.commercial-cta h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 800;
}

.commercial-cta p {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  border-radius: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
}

.cta-btn-primary {
  background: #d4af37;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.cta-btn-primary:hover {
  background: #c9a332;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.cta-btn-secondary {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border: 2px solid #d4af37;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: #e0bd4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

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

  .commercial-subtitle {
    font-size: 1rem;
  }

  .commercial-stats {
    gap: 40px;
  }

  .who-we-serve h2,
  .contracts-section h2,
  .commercial-services-grid h2,
  .why-choose-commercial h2 {
    font-size: 2rem;
  }

  .contracts-grid {
    grid-template-columns: 1fr;
  }

  .services-columns {
    grid-template-columns: 1fr;
  }

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

  .commercial-cta {
    margin: 60px 20px;
    padding: 40px 20px;
  }

  .commercial-cta h2 {
    font-size: 1.8rem;
  }

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

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .commercial-hero {
    padding: 60px 20px;
  }

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

  .who-we-serve,
  .contracts-section,
  .commercial-services-grid,
  .why-choose-commercial {
    padding: 60px 20px;
  }

  .client-types {
    grid-template-columns: 1fr;
  }

  .client-card {
    padding: 30px 20px;
  }

  .contract-card {
    padding: 30px 20px;
  }
}

/* Commercial page stats styling */
.commercial-section .stat-number,
.commercial-section .stat-plus {
  color: #d4af37;
  text-shadow: none;
}

.commercial-section .stat-label {
  color: #6e6e73;
}

/* Commercial page additional depth */
.commercial-section .commercial-hero,
.commercial-section .who-we-serve,
.commercial-section .contracts-section,
.commercial-section .commercial-services-grid,
.commercial-section .why-choose-commercial,
.commercial-section .commercial-cta {
  position: relative;
  z-index: 2;
}

/* Add subtle vignette effect */
.commercial-section .commercial-hero::before {
  content: '';
  position: absolute;
  inset: -100px;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: -1;
}

/* Commercial Showcase Images */
.commercial-showcase {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 30px;
  overflow: visible;
}

.showcase-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.showcase-img-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.showcase-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

/* Individual angled positions */
.showcase-img-wrapper.img-1 {
  transform: rotate(-3deg) translateY(20px);
}

.showcase-img-wrapper.img-2 {
  transform: rotate(2deg) translateY(-10px);
}

.showcase-img-wrapper.img-3 {
  transform: rotate(-2deg) translateY(30px);
}

.showcase-img-wrapper.img-4 {
  transform: rotate(3deg) translateY(-5px);
}

/* Hover effects */
.showcase-img-wrapper:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.05);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.4);
  border-color: rgba(212, 175, 55, 0.6);
  z-index: 10;
}

.showcase-img-wrapper:hover img {
  transform: scale(1.1);
}

/* Responsive showcase */
@media (max-width: 1200px) {
  .showcase-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .showcase-img-wrapper {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .commercial-showcase {
    padding: 60px 20px;
  }
  
  .showcase-images {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .showcase-img-wrapper {
    height: 220px;
  }
  
  .showcase-img-wrapper.img-1 {
    transform: rotate(-2deg) translateY(0);
  }
  
  .showcase-img-wrapper.img-2 {
    transform: rotate(2deg) translateY(0);
  }
  
  .showcase-img-wrapper.img-3 {
    transform: rotate(-2deg) translateY(0);
  }
  
  .showcase-img-wrapper.img-4 {
    transform: rotate(2deg) translateY(0);
  }
}

/* Commercial Top CTA */
.commercial-top-cta {
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 30px 30px 40px;
  text-align: center;
  position: relative;
}

.commercial-top-cta h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 800;
}

.commercial-top-cta p {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.commercial-contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Top CTA */
@media (max-width: 768px) {
  .commercial-top-cta {
    margin: 30px 20px 0;
    padding: 25px 20px 35px;
  }

  .commercial-top-cta h2 {
    font-size: 1.5rem;
  }

  .commercial-top-cta p {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }

  .commercial-contact-methods {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .commercial-top-cta {
    padding: 20px 15px 30px;
  }

  .commercial-top-cta h2 {
    font-size: 1.3rem;
  }

  .commercial-top-cta p {
    font-size: 0.8rem;
  }
}

/* Commercial page smaller contact widgets */
.commercial-contact-methods .contact-method-card {
  padding: 20px 15px;
}

.commercial-contact-methods .method-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
  font-size: 1.3rem;
  border-width: 2px;
}

.commercial-contact-methods .contact-icon-img {
  width: 22px;
  height: 22px;
}

.commercial-contact-methods .contact-method-card h3 {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.commercial-contact-methods .method-detail {
  font-size: 0.75rem;
  margin: 4px 0;
}

.commercial-contact-methods .method-desc {
  font-size: 0.7rem;
}

.commercial-contact-methods {
  gap: 15px;
}

@media (max-width: 768px) {
  .commercial-contact-methods .contact-method-card {
    padding: 18px 12px;
  }

  .commercial-contact-methods .method-icon {
    width: 40px;
    height: 40px;
  }

  .commercial-contact-methods .contact-icon-img {
    width: 20px;
    height: 20px;
  }

  .commercial-contact-methods {
    gap: 12px;
  }
}

/* Enhance icon visibility on commercial page */
.commercial-contact-methods .method-icon {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.commercial-contact-methods .contact-method-card:hover .method-icon {
  background: #d4af37;
  border-color: #d4af37;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Ensure icons are visible and properly filtered */
.commercial-contact-methods .phone-img,
.commercial-contact-methods .email-img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(48%) saturate(468%) hue-rotate(5deg) brightness(96%) contrast(87%);
}

.commercial-contact-methods .whatsapp-img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(56%) saturate(826%) hue-rotate(76deg) brightness(95%) contrast(86%);
}

.commercial-contact-methods .contact-method-card:hover .phone-img,
.commercial-contact-methods .contact-method-card:hover .email-img,
.commercial-contact-methods .contact-method-card:hover .whatsapp-img {
  filter: brightness(0) saturate(100%) invert(100%);
}

/* Make card borders more visible */
.commercial-contact-methods .contact-method-card {
  border: 2px solid rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.commercial-contact-methods .contact-method-card:hover {
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.08);
}

/* Special WhatsApp styling */
.commercial-contact-methods .whatsapp-card .whatsapp-icon {
  border-color: rgba(37, 211, 102, 0.5);
}

.commercial-contact-methods .whatsapp-card:hover .whatsapp-icon {
  background: #25d366;
  border-color: #25d366;
}

.commercial-contact-methods .whatsapp-card:hover .whatsapp-img {
  filter: brightness(0) saturate(100%) invert(0%);
}

/* Icon image styling */
.client-icon-img,
.benefit-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(100%);
  transition: all 0.3s ease;
}

.client-card:hover .client-icon-img,
.benefit-item:hover .benefit-icon-img {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(100%);
}

/* ==========================================
   AUTOMATION PAGE - NEW SECTIONS
   ========================================== */

/* CASE STUDIES SECTION */
.case-studies-section {
  padding: 100px 30px;
  background: #0a0a0a;
  position: relative;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 60px auto 0;
}

.case-study-card {
  background: rgba(30, 30, 30, 0.5);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.case-study-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f0d06f);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.case-study-card:hover::before {
  opacity: 1;
}

.case-study-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.12);
  background: rgba(35, 35, 35, 0.6);
}

.case-study-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.case-study-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.case-study-icon i {
  font-size: 1.8rem;
  color: #000;
}

.case-study-meta h3 {
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 8px 0;
}

.industry-tag {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.case-study-challenge,
.case-study-solution,
.case-study-results {
  margin-bottom: 20px;
}

.case-study-challenge h4,
.case-study-solution h4,
.case-study-results h4 {
  font-size: 1rem;
  color: #d4af37;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-study-challenge h4 i {
  color: #ff6b6b;
}

.case-study-solution h4 i {
  color: #51cf66;
}

.case-study-results h4 i {
  color: #d4af37;
}

.case-study-challenge p,
.case-study-solution p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.result-stat {
  background: rgba(212, 175, 55, 0.08);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

.result-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #d4af37;
  margin-bottom: 5px;
}

.result-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* WORKFLOW COMPARISON SECTION */
.workflow-comparison-section {
  padding: 100px 30px;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  position: relative;
}

.workflow-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 60px auto 40px;
}

.workflow-column {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 20px;
  padding: 35px;
  border: 2px solid;
}

.workflow-before {
  border-color: rgba(255, 107, 107, 0.3);
}

.workflow-after {
  border-color: rgba(212, 175, 55, 0.4);
}

.workflow-header {
  text-align: center;
  margin-bottom: 35px;
}

.workflow-header i {
  font-size: 3rem;
  margin-bottom: 15px;
}

.workflow-before .workflow-header i {
  color: #ff6b6b;
}

.workflow-after .workflow-header i {
  color: #d4af37;
}

.workflow-header h3 {
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
}

.workflow-steps {
  margin-bottom: 25px;
}

.workflow-step {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(30, 30, 30, 0.5);
  border-radius: 12px;
  border-left: 3px solid;
}

.workflow-step.manual {
  border-left-color: #ff6b6b;
}

.workflow-step.automated {
  border-left-color: #d4af37;
}

.step-icon {
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.workflow-step.manual .step-icon {
  background: rgba(255, 107, 107, 0.15);
}

.step-icon i {
  font-size: 1.2rem;
  color: #d4af37;
}

.workflow-step.manual .step-icon i {
  color: #ff6b6b;
}

.step-content h4 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 5px 0;
}

.step-content p {
  font-size: 0.9rem;
  color: #888;
  margin: 0 0 10px 0;
}

.time-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
}

.time-badge.slow {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
}

.time-badge.fast {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
}

.workflow-arrow {
  text-align: center;
  padding: 10px 0;
  color: #555;
  font-size: 1.5rem;
}

.workflow-total {
  text-align: center;
  padding: 20px;
  background: rgba(40, 40, 40, 0.6);
  border-radius: 12px;
  margin-top: 20px;
}

.workflow-total strong {
  color: #d4af37;
  font-size: 1.1rem;
}

.total-hours {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.workflow-total.success {
  background: rgba(212, 175, 55, 0.1);
}

.workflow-savings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.savings-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.savings-card i {
  font-size: 2.5rem;
  color: #d4af37;
}

.savings-card h4 {
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
}

.savings-card p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

/* PRICING SECTION */
.pricing-section {
  padding: 100px 30px;
  background: #0a0a0a;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  max-width: 1300px;
  margin: 60px auto 40px;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.pricing-card.featured {
  border-color: #d4af37;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(30, 30, 30, 0.95));
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: linear-gradient(90deg, #d4af37, #f0d06f);
  color: #000;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pricing-card.featured .pricing-icon {
  background: linear-gradient(135deg, #d4af37, #f0d06f);
}

.pricing-icon i {
  font-size: 2rem;
  color: #d4af37;
}

.pricing-card.featured .pricing-icon i {
  color: #000;
}

.pricing-header h3 {
  font-size: 1.8rem;
  color: #fff;
  margin: 0 0 10px 0;
}

.pricing-subtitle {
  color: #888;
  font-size: 0.95rem;
}

.pricing-price {
  text-align: center;
  margin: 30px 0;
  padding: 25px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.price-currency {
  font-size: 1.5rem;
  color: #d4af37;
  vertical-align: top;
  font-weight: 700;
}

.price-amount {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 900;
}

.price-period {
  display: block;
  color: #888;
  font-size: 0.9rem;
  margin-top: 5px;
}

.price-text {
  font-size: 2.5rem;
  color: #d4af37;
  font-weight: 900;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features li {
  padding: 12px 0;
  color: #bbb;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li i {
  color: #d4af37;
  font-size: 1.1rem;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 16px 32px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid #d4af37;
  border-radius: 50px;
  color: #d4af37;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.pricing-btn:hover {
  background: #d4af37;
  color: #000;
  transform: scale(1.05);
}

.pricing-btn.featured {
  background: linear-gradient(90deg, #d4af37, #f0d06f);
  color: #000;
  border: none;
}

.pricing-btn.featured:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.pricing-note {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 25px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.pricing-note i {
  color: #d4af37;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pricing-note p {
  color: #aaa;
  margin: 0;
  font-size: 0.95rem;
}

/* ROI CALCULATOR SECTION */
.roi-calculator-section {
  padding: 100px 30px;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  position: relative;
}

.roi-calculator-container {
  max-width: 1200px;
  margin: 60px auto 0;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.calculator-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-input-group label {
  color: #d4af37;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-input-group label i {
  font-size: 1.1rem;
}

.calc-input-group input,
.calc-input-group select {
  padding: 14px 18px;
  background: rgba(40, 40, 40, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.calc-input-group input:focus,
.calc-input-group select:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(50, 50, 50, 0.9);
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.result-card {
  background: rgba(40, 40, 40, 0.6);
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.result-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}

.result-card.highlight {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  border-color: #d4af37;
}

.result-icon {
  width: 55px;
  height: 55px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.result-card.highlight .result-icon {
  background: linear-gradient(135deg, #d4af37, #f0d06f);
}

.result-icon i {
  font-size: 1.5rem;
  color: #d4af37;
}

.result-card.highlight .result-icon i {
  color: #000;
}

.result-content {
  flex: 1;
}

.result-label {
  display: block;
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-value {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
}

.result-card.highlight .result-value {
  color: #d4af37;
}

.calculator-cta {
  text-align: center;
  padding: 35px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: 15px;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.calculator-cta p {
  color: #ccc;
  font-size: 1.1rem;
  margin: 0 0 25px 0;
}

.calculator-cta strong {
  color: #d4af37;
  font-size: 1.4rem;
}

.calc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(90deg, #d4af37, #f0d06f);
  color: #000;
  font-weight: 800;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.calc-cta-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 100px 30px;
  background: #0a0a0a;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  max-width: 1400px;
  margin: 60px auto 0;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #d4af37;
  font-size: 1.1rem;
}

.testimonial-text {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.author-avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar i {
  font-size: 2rem;
  color: #000;
}

.author-info h4 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 5px 0;
}

.author-info p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

/* FAQ SECTION */
.faq-section {
  padding: 100px 30px;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  position: relative;
}

.faq-container {
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-item {
  background: rgba(30, 30, 30, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-item.active {
  border-color: #d4af37;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0;
  flex: 1;
}

.faq-question i {
  color: #d4af37;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* RESPONSIVE STYLES FOR NEW SECTIONS */
@media (max-width: 768px) {
  .case-studies-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .workflow-comparison {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .workflow-savings {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .calculator-inputs {
    grid-template-columns: 1fr;
  }

  .calculator-results {
    grid-template-columns: 1fr;
  }

  .roi-calculator-container {
    padding: 30px 20px;
  }

  .result-stat {
    padding: 12px;
  }

  .result-number {
    font-size: 1.3rem;
  }

  .result-label {
    font-size: 0.7rem;
  }

  .results-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-note {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .case-study-card,
  .pricing-card,
  .testimonial-card {
    padding: 25px;
  }

  .workflow-column {
    padding: 25px;
  }

  .case-study-header {
    flex-direction: column;
    text-align: center;
  }

  .price-amount {
    font-size: 2.8rem;
  }

  .pricing-header h3 {
    font-size: 1.5rem;
  }

  .result-value {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 1rem;
  }
}

/* CROSS-PROMOTION SECTION */
.cross-promo-section {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
}

.cross-promo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.cross-promo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.cross-promo-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cross-promo-icon i {
  font-size: 2.5rem;
  color: #000;
}

.cross-promo-content {
  flex: 1;
  min-width: 300px;
}

.cross-promo-content h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.cross-promo-content p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
}

.cross-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid #d4af37;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cross-promo-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.cross-promo-btn i {
  transition: transform 0.3s ease;
}

.cross-promo-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .cross-promo-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .cross-promo-content h2 {
    font-size: 1.5rem;
  }

  .cross-promo-content p {
    font-size: 0.95rem;
  }

  .cross-promo-icon {
    width: 70px;
    height: 70px;
  }

  .cross-promo-icon i {
    font-size: 2rem;
  }
}

/* PROJECTS CONTACT SECTION */
.projects-contact-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(212, 175, 55, 0.1) 100%);
  padding: 80px 30px;
  position: relative;
}

.projects-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.projects-contact-container h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.projects-contact-container .contact-subtitle {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 50px;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .projects-contact-container h2 {
    font-size: 2rem;
  }

  .projects-contact-container .contact-subtitle {
    font-size: 1rem;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================================
   MOBILE PERFORMANCE OPTIMIZATION
   Disable expensive animations on mobile
   ========================================= */
@media (max-width: 768px) {
  .floating-shape,
  .float-icon,
  .commercial-bg-animation .floating-shape,
  .automation-bg-animation .floating-shape {
    animation: none !important;
  }

  /* Reduce animation complexity */
  .blueprint-grid {
    animation-duration: 120s !important;
  }
}

/* =========================================
   375PX BREAKPOINT - iPhone SE & Similar
   ========================================= */
@media (max-width: 375px) {
  /* Force grids to single column */
  .projects-grid,
  .automation-grid {
    grid-template-columns: 1fr !important;
  }

  .project-types {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  /* Reduce padding for more space */
  .hero-cta-wrapper {
    padding: 16px 12px !important;
    top: 58% !important;
  }

  .hero-title {
    font-size: 1.35rem !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
  }
}

/* =========================================
   FORM INPUT SIZING - Prevent iOS Zoom
   ========================================= */
@media (max-width: 600px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Make buttons full-width on mobile */
  .estimation-form-wrapper .form-navigation button {
    width: 100%;
  }
}

/* =========================================
   CHAT ESTIMATION INTERFACE
   ========================================= */

.chat-estimation-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
  position: relative;
  z-index: 1;
}

.chat-window {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(17, 17, 17, 0.95));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  padding: 0;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5),
              0 0 80px rgba(212, 175, 55, 0.15),
              inset 0 1px 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 650px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
.chat-messages::-webkit-scrollbar {
  width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #f0d06f, #d4af37);
}

/* Drag and Drop Overlay */
.drag-drop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  border: 3px dashed rgba(212, 175, 55, 0.6);
  animation: dragOverlayFadeIn 0.2s ease;
}

@keyframes dragOverlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.drag-drop-content {
  text-align: center;
  color: #fff;
}

.drag-file-preview {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: uploadIconPulse 1.5s ease-in-out infinite;
}

.drag-file-preview i {
  font-size: 3.5rem;
  color: #d4af37;
}

.drag-file-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drag-file-preview .file-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid #0a0a0a;
}

@keyframes uploadIconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 10px rgba(212, 175, 55, 0.2);
  }
}

.drag-drop-content p {
  font-size: 1.3rem;
  font-weight: 600;
  color: #d4af37;
  margin: 0 0 8px 0;
}

.drag-drop-content span {
  font-size: 0.9rem;
  color: #999;
}

/* Message Bubbles */
.message {
  display: flex;
  gap: 12px;
  max-width: 85%;
  animation: messageSlideIn 0.3s ease-out;
}

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

.bot-message {
  align-self: flex-start;
}

.user-message {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.user-message .message-avatar {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.7));
  color: #fff;
}

.message-content {
  background: rgba(45, 45, 48, 0.95);
  border: none;
  border-radius: 20px;
  padding: 12px 16px;
  color: #ffffff;
  line-height: 1.5;
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.user-message .message-content {
  background: linear-gradient(135deg, #0b93f6, #0a7dd6);
  border: none;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(11, 147, 246, 0.3);
}

.message-content p {
  margin: 0;
  font-size: 0.95rem;
}

.message-content p + p {
  margin-top: 10px;
}

.message-content .chat-link {
  color: #4fc3f7;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(79, 195, 247, 0.3);
}

.message-content .chat-link:hover {
  color: #81d4fa;
  border-bottom-color: #81d4fa;
}

.user-message .message-content .chat-link {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.user-message .message-content .chat-link:hover {
  border-bottom-color: #fff;
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0 30px;
  margin-bottom: 20px;
}

.typing-dots {
  background: rgba(45, 45, 48, 0.95);
  border: none;
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4af37;
  animation: typingBounce 1.4s infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* Chat Input */
.chat-input-wrapper {
  border: none;
  padding: 20px 25px;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.chat-input-container {
  display: flex;
  gap: 12px;
  align-items: center;
}

.chat-input {
  flex: 1;
  background: rgba(20, 20, 20, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  padding: 14px 20px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.chat-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.chat-input:focus {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(20, 20, 20, 0.95);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.chat-send-btn {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  border: none;
  color: #000;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.chat-send-btn:active {
  transform: scale(0.95);
}

.chat-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: scale(1);
}

.chat-attach-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 2px solid rgba(212, 175, 55, 0.6);
  color: #d4af37;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.chat-attach-btn:hover {
  background: linear-gradient(135deg, #d4af37 0%, #f0d06f 100%);
  border-color: #f0d06f;
  color: #000;
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4),
              0 0 20px rgba(212, 175, 55, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.chat-attach-btn:active {
  transform: scale(0.95);
}

.attach-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.attach-button-wrapper:hover {
  transform: translateY(-2px);
}

.attach-btn-label {
  font-size: 0.75rem;
  color: #d4af37;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

@media (max-width: 480px) {
  .attach-btn-label {
    font-size: 0.65rem;
  }
}

.file-preview {
  display: flex;
  gap: 12px;
  padding: 12px 0 8px 0;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.file-preview-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(40, 40, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

/* Image preview items (ChatGPT style) */
.file-preview-item.image-preview {
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  background: transparent;
  border: none;
  gap: 6px;
}

.image-preview-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(30, 30, 30, 0.8);
}

.preview-image {
  display: block;
  max-width: 200px;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.file-preview-item.image-preview .file-name {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 4px;
}

.file-preview-item i {
  color: #d4af37;
  font-size: 1.2rem;
}

.file-preview-item .file-name {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
}

.remove-file-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 6px 8px;
  font-size: 0.9rem;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(5px);
}

.file-preview-item:not(.image-preview) .remove-file-btn {
  position: relative;
  top: auto;
  right: auto;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  width: auto;
  height: auto;
  padding: 0 5px;
}

.remove-file-btn:hover {
  background: rgba(255, 68, 68, 0.9);
  color: #ffffff;
  transform: scale(1.1);
}

.file-preview-item:not(.image-preview) .remove-file-btn:hover {
  background: transparent;
  color: #ff6666;
  transform: scale(1.2);
}

.uploaded-files-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 5px;
}

.uploaded-file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
}

.uploaded-file-item i {
  color: #d4af37;
  font-size: 1.2rem;
}

.uploaded-file-item .file-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.uploaded-file-item .file-name {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
}

.uploaded-file-item .file-size {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Image preview in uploaded files */
.uploaded-file-item.image-item {
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: none;
}

.uploaded-image-preview {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.uploaded-file-item.image-item .file-info {
  padding: 8px 12px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
  margin-top: -4px;
}

.uploaded-file-item.image-item .file-name {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.chat-footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 500;
}

.chat-footer-info i {
  color: #d4af37;
  font-size: 0.9rem;
}

/* Service Area Section */
.service-area-section {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.95));
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.service-area-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.service-area-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.service-area-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.service-area-header i {
  font-size: 2.5rem;
  color: #d4af37;
  animation: pulse 2s ease-in-out infinite;
}

.service-area-header h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.service-area-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-area-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: default;
}

.location-item:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.location-item i {
  color: #d4af37;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.location-item span {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.service-area-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.service-area-note i {
  color: #3b82f6;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .service-area-section {
    padding: 60px 20px;
  }

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

  .service-area-header i {
    font-size: 2rem;
  }

  .service-area-description {
    font-size: 1rem;
  }

  .service-area-locations {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .service-area-header {
    flex-direction: column;
    gap: 10px;
  }

  .service-area-header h2 {
    font-size: 1.75rem;
  }
}

/* Estimate Result Container */
.estimate-result-container {
  margin-top: 30px;
}

.estimate-header-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #d4af37, #f0d06f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
  }
}

.project-summary {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.project-summary h3 {
  color: #d4af37;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-summary h3 i {
  font-size: 1.2rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  color: #f0f0f0;
  font-size: 0.9rem;
}

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

.summary-label {
  color: rgba(255, 255, 255, 0.7);
}

.summary-value {
  font-weight: 600;
  color: #d4af37;
}

.start-over-btn {
  width: 100%;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  color: #d4af37;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.start-over-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .chat-window {
    height: 550px;
  }

  .chat-messages {
    padding: 20px 15px;
    gap: 15px;
  }

  .message {
    max-width: 90%;
  }

  .message-avatar {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 1rem;
  }

  .message-content {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .chat-input-wrapper {
    padding: 15px;
  }

  .chat-input {
    font-size: 16px; /* Prevent iOS zoom */
  }

  .chat-send-btn {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }
}

@media (max-width: 480px) {
  .chat-window {
    height: 500px;
    border-radius: 20px;
  }

  .chat-messages {
    padding: 15px 12px;
    gap: 12px;
  }

  .message-content p {
    font-size: 0.85rem;
  }

  .chat-input {
    padding: 12px 16px;
    font-size: 16px; /* Prevent iOS zoom */
  }

  .estimate-header-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

/* =========================================
   ALIEN AI CHARACTER & CONTACT CHAT
   ========================================= */

.ai-chat-section {
  max-width: 1000px;
  margin: 70px auto 80px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* AI ALIEN CTA SECTION */
.ai-alien-cta {
  max-width: 600px;
  margin: 60px auto 80px;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ai-alien-cta .alien-ai-container {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.alien-ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000;
  padding: 20px 45px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.alien-ai-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.alien-ai-btn:hover::before {
  left: 100%;
}

.alien-ai-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7);
}

.alien-ai-btn i:first-child {
  font-size: 1.4rem;
}

.alien-ai-btn i:last-child {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.alien-ai-btn:hover i:last-child {
  transform: translateX(5px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .ai-alien-cta {
    margin: 40px auto 60px;
  }

  .ai-alien-cta .alien-ai-container {
    margin-bottom: 30px;
  }

  .alien-ai-btn {
    padding: 16px 35px;
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .ai-alien-cta {
    margin: 30px auto 50px;
  }

  .alien-ai-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    gap: 8px;
  }

  .alien-ai-btn i:first-child {
    font-size: 1.2rem;
  }
}

.ai-chat-header {
  text-align: center;
  margin-bottom: 45px;
}

.ai-chat-header h2 {
  font-size: 2.5rem;
  margin: 20px 0 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.ai-chat-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Alien AI Container */
.alien-ai-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.alien-ai {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Alien Glow Effect */
.alien-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
  border-radius: 50%;
  animation: alienPulse 3s ease-in-out infinite;
  filter: blur(20px);
}

@keyframes alienPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Alien Body */
.alien-body {
  position: relative;
  z-index: 2;
}

.alien-head {
  width: 100px;
  height: 120px;
  background: linear-gradient(135deg, #00ff88 0%, #00cc6f 100%);
  border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
  position: relative;
  box-shadow: 
    0 10px 40px rgba(0, 255, 136, 0.4),
    inset 0 -20px 30px rgba(0, 0, 0, 0.2),
    inset 0 10px 20px rgba(255, 255, 255, 0.3);
  animation: alienFloat 4s ease-in-out infinite;
}

@keyframes alienFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(-2deg);
  }
  75% {
    transform: translateY(-5px) rotate(2deg);
  }
}

/* Antennae */
.alien-antenna {
  position: absolute;
  top: -15px;
  width: 3px;
  height: 25px;
  background: linear-gradient(to top, #00ff88, #00cc6f);
  border-radius: 3px;
  animation: antennaBounce 2s ease-in-out infinite;
}

.alien-antenna.left {
  left: 25%;
  animation-delay: 0s;
}

.alien-antenna.right {
  right: 25%;
  animation-delay: 0.3s;
}

@keyframes antennaBounce {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.antenna-ball {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #d4af37, #f0d06f);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  animation: ballGlow 1.5s ease-in-out infinite;
}

@keyframes ballGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  }
  50% {
    box-shadow: 0 0 25px rgba(212, 175, 55, 1);
  }
}

/* Alien Eyes */
.alien-eyes {
  display: flex;
  justify-content: space-around;
  padding: 0 15px;
  margin-top: 30px;
}

.alien-eye {
  width: 28px;
  height: 35px;
  background: #000;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  box-shadow: 
    inset 0 2px 8px rgba(255, 255, 255, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.5);
  animation: eyeBlink 5s ease-in-out infinite;
}

.alien-eye.left-eye {
  animation-delay: 0.1s;
}

.alien-eye.right-eye {
  animation-delay: 0.15s;
}

@keyframes eyeBlink {
  0%, 98%, 100% {
    height: 35px;
  }
  99% {
    height: 4px;
  }
}

.eye-pupil {
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 35% 35%, #d4af37, #c49a2a);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pupilMove 6s ease-in-out infinite;
}

@keyframes pupilMove {
  0%, 100% {
    transform: translate(-50%, -50%);
  }
  25% {
    transform: translate(-30%, -50%);
  }
  75% {
    transform: translate(-70%, -50%);
  }
}

.eye-shine {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 30%;
  left: 35%;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Alien Mouth */
.alien-mouth {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 15px;
  border: 3px solid #007a47;
  border-top: none;
  border-radius: 0 0 50% 50%;
  animation: mouthTalk 3s ease-in-out infinite;
}

@keyframes mouthTalk {
  0%, 100% {
    height: 15px;
  }
  50% {
    height: 8px;
  }
}

/* Floating Particles */
.alien-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.8), transparent);
  border-radius: 50%;
  animation: particleFloat 4s ease-in-out infinite;
}

.alien-particle.p1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.alien-particle.p2 {
  top: 30%;
  right: 15%;
  animation-delay: 1s;
}

.alien-particle.p3 {
  bottom: 25%;
  left: 20%;
  animation-delay: 2s;
}

.alien-particle.p4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) scale(1.5);
    opacity: 0.8;
  }
}

/* Chat Window for Contact Page */
.chat-window-contact {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(17, 17, 17, 0.98));
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: 28px;
  padding: 0;
  backdrop-filter: blur(30px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.6),
              0 0 100px rgba(212, 175, 55, 0.2),
              inset 0 2px 2px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 600px;
  margin-bottom: 40px;
}

/* Mobile Responsive for Alien AI */
@media (max-width: 768px) {
  .alien-ai {
    width: 120px;
    height: 120px;
  }

  .alien-head {
    width: 80px;
    height: 95px;
  }

  .alien-eyes {
    margin-top: 24px;
    padding: 0 12px;
  }

  .alien-eye {
    width: 22px;
    height: 28px;
  }

  .eye-pupil {
    width: 11px;
    height: 11px;
  }

  .alien-mouth {
    width: 24px;
    bottom: 20px;
  }

  .ai-chat-header h2 {
    font-size: 1.8rem;
  }

  .ai-chat-header p {
    font-size: 1rem;
  }

  .chat-window-contact {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .alien-ai {
    width: 100px;
    height: 100px;
  }

  .alien-head {
    width: 70px;
    height: 85px;
  }

  .alien-antenna {
    height: 20px;
  }

  .antenna-ball {
    width: 10px;
    height: 10px;
  }

  .alien-eyes {
    margin-top: 20px;
    padding: 0 10px;
  }

  .alien-eye {
    width: 18px;
    height: 24px;
  }

  .eye-pupil {
    width: 9px;
    height: 9px;
  }

  .alien-mouth {
    width: 20px;
    height: 12px;
    bottom: 16px;
  }

  .alien-particle {
    width: 4px;
    height: 4px;
  }

  .ai-chat-header h2 {
    font-size: 1.6rem;
  }

  .ai-chat-header p {
    font-size: 0.9rem;
  }

  .chat-window-contact {
    height: 450px;
    border-radius: 20px;
  }

  .ai-chat-section {
    margin: 40px auto 60px;
  }
}

/* =========================================
   MINI ALIEN AVATAR FOR CHAT MESSAGES
   ========================================= */

.bot-message .message-avatar {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6f 100%);
  position: relative;
  overflow: visible;
}

.mini-alien {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-alien-head {
  width: 24px;
  height: 28px;
  background: linear-gradient(135deg, #00ff88 0%, #00cc6f 100%);
  border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
  position: relative;
  box-shadow: 
    0 4px 15px rgba(0, 255, 136, 0.4),
    inset 0 -8px 12px rgba(0, 0, 0, 0.2),
    inset 0 4px 8px rgba(255, 255, 255, 0.3);
}

/* Mini Antennae */
.mini-alien-antenna {
  position: absolute;
  top: -6px;
  width: 2px;
  height: 8px;
  background: linear-gradient(to top, #00ff88, #00cc6f);
  border-radius: 2px;
}

.mini-alien-antenna.left {
  left: 25%;
}

.mini-alien-antenna.right {
  right: 25%;
}

.mini-antenna-ball {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: radial-gradient(circle at 30% 30%, #d4af37, #f0d06f);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.8);
}

/* Mini Eyes */
.mini-alien-eyes {
  display: flex;
  justify-content: space-around;
  padding: 0 4px;
  margin-top: 8px;
}

.mini-alien-eye {
  width: 6px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.mini-eye-pupil {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle at 35% 35%, #d4af37, #c49a2a);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Mini Mouth */
.mini-alien-mouth {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 5px;
  border: 2px solid #007a47;
  border-top: none;
  border-radius: 0 0 50% 50%;
}

/* =========================================
   CHAT APP MODE - ChatGPT-Style Interface
   ========================================= */

/* Support for iPhone notch and safe areas + Custom viewport height */
:root {
  --safe-area-inset-top: env(safe-area-inset-top, 0px);
  --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
  --safe-area-inset-left: env(safe-area-inset-left, 0px);
  --safe-area-inset-right: env(safe-area-inset-right, 0px);
  --vh: 1vh; /* Fallback, will be set by JavaScript */
}

/* App Mode Body */
.chat-app-mode {
  overflow: hidden;
  /* Use custom --vh for cross-browser support */
  height: 100vh; /* Fallback */
  height: calc(var(--vh, 1vh) * 100);
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 100%;
  max-width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
  touch-action: pan-y;
}

/* Minimal App Header */
.chat-app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(60px + var(--safe-area-inset-top));
  padding-top: var(--safe-area-inset-top);
  padding-left: max(20px, var(--safe-area-inset-left));
  padding-right: max(20px, var(--safe-area-inset-right));
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.chat-app-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.chat-app-logo-link:hover {
  opacity: 0.8;
}

.chat-app-logo {
  height: 35px;
  width: auto;
}

.chat-app-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chat-app-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.3px;
}

.chat-app-subtitle {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(212, 175, 55, 0.9);
  letter-spacing: 0.2px;
}

/* Fullscreen Chat Container */
.chat-app-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: calc(60px + var(--safe-area-inset-top));
  height: calc((var(--vh, 1vh) * 100) - 60px - var(--safe-area-inset-top));
  max-width: 100%;
  padding: 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Chat Window - Fullscreen */
.chat-app-container .chat-window {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: none;
  border-radius: 0;
  border: none;
  margin: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(26, 26, 26, 0.98));
  box-shadow: none;
}

/* Chat Messages - App Mode */
.chat-app-container .chat-messages {
  flex: 1;
  padding: 30px 20px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
}

/* Better scrollbar for desktop */
.chat-app-container .chat-messages::-webkit-scrollbar {
  width: 8px;
}

.chat-app-container .chat-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}

.chat-app-container .chat-messages::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}

.chat-app-container .chat-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}

/* Messages in App Mode */
.chat-app-container .message {
  max-width: 100%;
  animation: messageSlideIn 0.3s ease-out;
  transform-origin: left center;
}

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

.chat-app-container .bot-message {
  background: transparent;
  border: none;
}

.chat-app-container .user-message {
  background: transparent;
  border: none;
}

/* Chat Input - App Mode */
.chat-app-container .chat-input-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  padding-bottom: max(20px, var(--safe-area-inset-bottom));
  padding-left: max(20px, var(--safe-area-inset-left));
  padding-right: max(20px, var(--safe-area-inset-right));
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
}

.chat-app-container .chat-input-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 12px 16px;
}

.chat-app-container .chat-input {
  background: transparent;
  border: none;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

.chat-app-container .chat-input:focus {
  outline: none;
  font-size: 16px;
}

/* Estimate Result in App Mode */
.chat-app-container .estimate-result-container {
  padding: 30px 20px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* Minimal App Footer */
.chat-app-footer {
  background: rgba(17, 17, 17, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 20px;
  padding-bottom: max(15px, var(--safe-area-inset-bottom));
  padding-left: max(20px, var(--safe-area-inset-left));
  padding-right: max(20px, var(--safe-area-inset-right));
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.chat-app-footer a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.chat-app-footer a:hover {
  color: #f0d06f;
}

/* Hide WhatsApp Float in App Mode (optional) */
.chat-app-mode .whatsapp-float {
  bottom: 80px;
}

/* Mobile Responsive - App Mode */
@media (max-width: 768px) {
  .chat-app-header {
    height: calc(55px + var(--safe-area-inset-top));
    padding-left: max(15px, var(--safe-area-inset-left));
    padding-right: max(15px, var(--safe-area-inset-right));
  }

  .chat-app-logo {
    height: 30px;
  }

  .chat-app-title {
    font-size: 1rem;
  }

  .chat-app-subtitle {
    font-size: 0.65rem;
  }

  .chat-app-container {
    margin-top: calc(55px + var(--safe-area-inset-top));
    height: calc((var(--vh, 1vh) * 100) - 55px - var(--safe-area-inset-top));
  }

  .chat-app-container .chat-messages {
    padding: 20px 15px;
  }

  .chat-app-container .chat-input-wrapper {
    padding: 15px;
    padding-bottom: max(15px, var(--safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .chat-app-header {
    height: calc(50px + var(--safe-area-inset-top));
    padding-left: max(12px, var(--safe-area-inset-left));
    padding-right: max(12px, var(--safe-area-inset-right));
  }

  .chat-app-logo {
    height: 28px;
  }

  .chat-app-title {
    font-size: 0.9rem;
  }

  .chat-app-subtitle {
    font-size: 0.6rem;
  }

  .chat-app-container {
    margin-top: calc(50px + var(--safe-area-inset-top));
    height: calc((var(--vh, 1vh) * 100) - 50px - var(--safe-area-inset-top));
  }

  .chat-app-container .chat-messages {
    padding: 15px 12px;
  }

  .chat-app-container .chat-input-wrapper {
    padding: 12px;
    padding-bottom: max(12px, var(--safe-area-inset-bottom));
  }

  .chat-app-footer {
    font-size: 0.75rem;
    padding: 12px 15px;
    padding-bottom: max(12px, var(--safe-area-inset-bottom));
  }
}

/* iPhone 16 Pro Specific (393px x 852px) */
@media only screen
  and (device-width: 393px)
  and (device-height: 852px)
  and (-webkit-device-pixel-ratio: 3) {

  .chat-app-mode {
    height: -webkit-fill-available;
  }

  .chat-app-header {
    height: calc(54px + var(--safe-area-inset-top));
  }

  .chat-app-logo {
    height: 32px;
  }

  .chat-app-title {
    font-size: 0.95rem;
  }

  .chat-app-container {
    margin-top: calc(54px + var(--safe-area-inset-top));
    height: calc((var(--vh, 1vh) * 100) - 54px - var(--safe-area-inset-top));
  }

  .chat-app-container .chat-messages {
    padding: 18px 16px;
  }

  .chat-app-container .message {
    font-size: 1rem;
  }

  .chat-app-container .chat-input {
    font-size: 16px;
    min-height: 44px;
  }

  .chat-app-container .chat-send-btn,
  .chat-app-container .chat-attach-btn {
    min-width: 44px;
    min-height: 44px;
    width: 48px;
    height: 48px;
  }

  .chat-app-container .chat-input-wrapper {
    padding: 14px 16px;
    padding-bottom: max(14px, calc(var(--safe-area-inset-bottom) + 4px));
  }

  .menu-burger {
    min-width: 44px;
    min-height: 44px;
  }

  .chat-app-footer {
    padding: 10px 16px;
    padding-bottom: max(10px, var(--safe-area-inset-bottom));
    font-size: 0.8rem;
  }

  /* Optimize WhatsApp float for iPhone 16 Pro */
  .chat-app-mode .whatsapp-float {
    bottom: calc(80px + var(--safe-area-inset-bottom));
    right: 16px;
  }
}

/* ================= FOR TRADES PAGES =================== */

/* Trades Navigation */
.trades-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.trades-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.trades-nav a:hover {
  color: #d4af37;
}

.trades-nav .nav-cta {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
}

.trades-nav .nav-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .trades-nav {
    display: none;
  }
}

/* Trades Hero */
.trades-hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 5% 4rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.trades-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
  pointer-events: none;
}

.trades-hero-content {
  z-index: 2;
}

.trades-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.trades-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trades-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.trades-hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.trades-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.trades-btn-primary {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.trades-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.trades-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.trades-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.trades-hero-proof {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.proof-item i {
  color: #4ade80;
  font-size: 1rem;
}

.trades-hero-preview {
  z-index: 2;
  perspective: 1000px;
}

.preview-window {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.preview-window:hover {
  transform: translateY(-10px) rotateY(-5deg);
}

.preview-header {
  background: #2a2a2a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-dots {
  display: flex;
  gap: 6px;
}

.preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.preview-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
  .trades-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 6rem 5% 3rem;
  }

  .trades-hero h1 {
    font-size: 2.5rem;
  }

  .trades-hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .trades-hero h1 {
    font-size: 2rem;
  }

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

  .trades-btn {
    justify-content: center;
  }
}

/* Features Section */
.trades-features {
  padding: 6rem 5%;
  background: #0a0a0a;
  text-align: center;
}

.trades-features h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  text-align: left;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #d4af37;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* How It Works */
.trades-how {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  text-align: center;
}

.trades-how h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

.how-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.how-step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.how-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.how-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.how-arrow {
  font-size: 2rem;
  color: rgba(212, 175, 55, 0.5);
}

@media (max-width: 1024px) {
  .how-arrow {
    display: none;
  }

  .how-steps {
    gap: 2rem;
  }
}

/* CTA Section */
.trades-cta {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  text-align: center;
}

.trades-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0a0a0a;
}

.trades-cta > p {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 2.5rem;
}

.trades-btn-large {
  padding: 20px 48px;
  font-size: 1.1rem;
  background: #0a0a0a;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.trades-btn-large:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.cta-note {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
}

/* ================= PRICING PAGE =================== */

.pricing-hero {
  padding: 8rem 5% 4rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
}

.pricing-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pricing-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-plans {
  padding: 4rem 5%;
  background: #0a0a0a;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card-popular {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.5);
  transform: scale(1.05);
}

.pricing-card-popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #0a0a0a;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.plan-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.5rem;
  color: #d4af37;
  font-weight: 600;
}

.amount {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin: 0 0.25rem;
}

.period {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
}

.plan-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.plan-features i {
  color: #4ade80;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.plan-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  margin-bottom: 1rem;
}

.plan-btn-primary {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.plan-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.plan-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.plan-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.plan-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* FAQ Section */
.pricing-faq {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  text-align: center;
}

.pricing-faq h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item h3 i {
  color: #d4af37;
  font-size: 1.1rem;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Final CTA */
.pricing-final-cta {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  text-align: center;
}

.pricing-final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0a0a0a;
}

.pricing-final-cta > p {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2rem;
  }

  .pricing-container {
    grid-template-columns: 1fr;
  }

  .pricing-card-popular {
    transform: scale(1);
  }

  .pricing-card-popular:hover {
    transform: translateY(-10px);
  }

  .amount {
    font-size: 3rem;
  }
}

/* ================= AUTH PAGES (SIGNUP/LOGIN) =================== */

.auth-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.auth-link strong {
  color: #d4af37;
  font-weight: 600;
}

.auth-link:hover {
  color: #ffffff;
}

.auth-container {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem 5%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.auth-container-centered {
  grid-template-columns: 1fr;
  place-items: center;
}

.auth-box {
  max-width: 500px;
  width: 100%;
}

.auth-box-compact {
  max-width: 450px;
}

.auth-header-text {
  margin-bottom: 2.5rem;
}

.auth-header-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.auth-header-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-message-success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.form-message-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.form-group label i {
  color: #d4af37;
  font-size: 0.9rem;
}

.form-group input {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s;
}

.form-group input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #d4af37;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.form-checkbox a {
  color: #d4af37;
  text-decoration: none;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot-link {
  font-size: 0.9rem;
  color: #d4af37;
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

.auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.auth-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.auth-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-spinner {
  display: inline-block;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 1rem 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
  position: relative;
  background: #0a0a0a;
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.auth-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.auth-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.signup-features {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signup-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.signup-feature i {
  color: #4ade80;
  font-size: 1rem;
}

.auth-side-info {
  padding: 3rem 2rem;
}

.auth-side-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.side-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.side-features li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.side-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.side-icon i {
  font-size: 1.3rem;
  color: #d4af37;
}

.side-features h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.side-features p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .auth-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .auth-side-info {
    order: -1;
    padding: 2rem 0;
  }

  .side-features {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .side-features li {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 600px) {
  .auth-header-text h1 {
    font-size: 2rem;
  }

  .signup-features {
    flex-direction: column;
    gap: 1rem;
  }

  .side-features {
    flex-direction: column;
  }

  .auth-link {
    font-size: 0.85rem;
  }
}

/* ================= DASHBOARD PAGES =================== */

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.dashboard-header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.dashboard-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.dashboard-header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.dashboard-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s;
}

.dashboard-nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #d4af37;
}

.dashboard-user-menu {
  position: relative;
}

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.user-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: rgba(26, 26, 26, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.user-dropdown a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.dashboard-main {
  min-height: calc(100vh - 90px);
  padding: 3rem 3%;
  background: #0a0a0a;
}

.dashboard-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.dashboard-loading i {
  font-size: 3rem;
  color: #d4af37;
}

/* Dashboard Stats */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 1.5rem;
}

.stat-details h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.stat-details p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Upgrade Banner */
.upgrade-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  margin-bottom: 3rem;
}

.upgrade-content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.upgrade-content i {
  font-size: 1.8rem;
  color: #fb923c;
}

.upgrade-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.upgrade-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.upgrade-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s;
}

.upgrade-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Quick Actions */
.dashboard-actions {
  margin-bottom: 3rem;
}

.dashboard-actions h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.action-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.action-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
}

.action-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
}

.action-card i {
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 1rem;
  display: block;
}

.action-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.action-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Dashboard Section */
.dashboard-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

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

.section-actions {
  display: flex;
  gap: 1rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.8);
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #d4af37;
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Leads Table */
.leads-table-container {
  overflow-x: auto;
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
}

.leads-table thead {
  background: rgba(255, 255, 255, 0.05);
}

.leads-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leads-table td {
  padding: 1.25rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.table-empty {
  text-align: center;
  padding: 4rem 2rem !important;
}

.table-empty i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  display: block;
  margin-bottom: 1rem;
}

.table-empty p {
  color: rgba(255, 255, 255, 0.5);
}

.project-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  color: #d4af37;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: capitalize;
}

.text-muted {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* Pagination */
.table-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
}

.pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Settings Container */
.settings-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  max-width: 1400px;
}

.settings-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.settings-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.settings-nav-item:hover,
.settings-nav-item.active {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  color: #d4af37;
}

.settings-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
}

.settings-section {
  display: none;
}

.settings-section.active {
  display: block;
}

.settings-section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.settings-form {
  max-width: 600px;
}

.settings-message {
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  font-weight: 500;
}

.settings-message-success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.settings-message-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.color-picker-group {
  display: flex;
  gap: 1rem;
}

.color-picker-group input[type="color"] {
  width: 60px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
}

.color-picker-group input[type="text"] {
  flex: 1;
}

/* Branding Preview */
.branding-preview {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.branding-preview h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.preview-box {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-header span {
  font-weight: 600;
}

.preview-button {
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

/* Embed Options */
.embed-options {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.embed-option {
  flex: 1;
  display: flex;
  gap: 12px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.embed-option:has(input:checked) {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
}

.embed-option input[type="radio"] {
  accent-color: #d4af37;
  cursor: pointer;
}

.embed-option strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.embed-option p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Code Block */
.code-block {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-block pre {
  padding: 1.5rem;
  margin: 0;
  overflow-x: auto;
}

.code-block code {
  color: #4ade80;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.embed-instructions {
  margin-top: 2rem;
}

.embed-instructions h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.embed-instructions ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.embed-instructions li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.embed-instructions p {
  color: rgba(255, 255, 255, 0.6);
}

/* Subscription Info */
.subscription-info {
  max-width: 600px;
}

.subscription-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.subscription-card h3 {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.plan-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4af37;
}

.plan-status {
  padding: 6px 12px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 6px;
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 600;
}

.plan-usage {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.usage-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.usage-fill {
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #b8941f);
  border-radius: 4px;
  transition: width 0.3s;
}

.subscription-actions {
  display: flex;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .settings-container {
    grid-template-columns: 1fr;
  }

  .settings-sidebar {
    flex-direction: row;
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .dashboard-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .upgrade-banner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .settings-content {
    padding: 1.5rem;
  }

  .embed-options {
    flex-direction: column;
  }

  .subscription-actions {
    flex-direction: column;
  }
}

/* ========================================
   ESTIMATOR PAGE ENHANCEMENTS
   ======================================== */

/* WhatsApp Fixed Bottom Banner (Estimator Page Only) */
.whatsapp-bottom-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.whatsapp-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.whatsapp-banner-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 1rem;
}

.whatsapp-banner-text i {
  font-size: 1.8rem;
}

.whatsapp-banner-text strong {
  font-weight: 700;
}

.whatsapp-banner-btn {
  background: white;
  color: #25D366;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.whatsapp-banner-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Enhanced WhatsApp CTA in Estimate Card */
.whatsapp-primary {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  font-size: 1.1rem !important;
  padding: 1.2rem 2rem !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5) !important;
}

.whatsapp-helper-text {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin: 1rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.whatsapp-helper-text i {
  color: #25D366;
}

/* Price Range Display */
.price-range {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 1.5rem 0;
}

.price-item {
  flex: 1;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
  padding: 1.2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.price-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-item.likely {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.price-item.likely .price-label,
.price-item.likely .price-value {
  color: white;
}

.price-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #666;
}

.price-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a0a0a;
}

/* Structured Lists in Estimate */
.scope-list,
.assumptions-list,
.exclusions-list,
.next-steps-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem 0;
}

.scope-list li,
.assumptions-list li,
.exclusions-list li,
.next-steps-list li {
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  margin-bottom: 0.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  position: relative;
  border-left: 3px solid;
}

.scope-list li {
  border-left-color: #28a745;
}

.scope-list li::before {
  content: "✓";
  position: absolute;
  left: 0.75rem;
  color: #28a745;
  font-weight: 700;
  font-size: 1.2rem;
}

.assumptions-list li {
  border-left-color: #ffc107;
}

.assumptions-list li::before {
  content: "⚠";
  position: absolute;
  left: 0.75rem;
  color: #ffc107;
  font-size: 1.2rem;
}

.exclusions-list li {
  border-left-color: #dc3545;
}

.exclusions-list li::before {
  content: "✗";
  position: absolute;
  left: 0.75rem;
  color: #dc3545;
  font-weight: 700;
  font-size: 1.2rem;
}

.next-steps-list li {
  border-left-color: #007bff;
}

.next-steps-list li::before {
  content: "→";
  position: absolute;
  left: 0.75rem;
  color: #007bff;
  font-weight: 700;
  font-size: 1.2rem;
}

.project-summary h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #0a0a0a;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-summary h4 i {
  color: #667eea;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .whatsapp-banner-text {
    flex-direction: column;
    gap: 0.5rem;
  }

  .whatsapp-banner-btn {
    width: 100%;
    justify-content: center;
  }

  .price-range {
    flex-direction: column;
    gap: 0.75rem;
  }

  .price-item.likely {
    transform: scale(1);
    order: -1;
  }

  .price-value {
    font-size: 1.5rem;
  }

  /* Adjust chat app footer to account for bottom banner */
  .chat-app-footer {
    margin-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .whatsapp-banner-text span {
    font-size: 0.9rem;
  }

  .price-value {
    font-size: 1.3rem;
  }
}

/* ========================================
   WHATSAPP WIDGET IN CHAT INPUT AREA
   ======================================== */

.chat-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.75rem;
}

.whatsapp-chat-widget {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-chat-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  color: white;
}

.whatsapp-chat-widget i {
  font-size: 1.3rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .chat-footer-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .chat-footer-info {
    text-align: center;
    order: 2;
  }

  .whatsapp-chat-widget {
    order: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .whatsapp-chat-widget span {
    font-size: 0.85rem;
  }

  .chat-footer-info span {
    font-size: 0.75rem;
  }
}

/* ========================================
   WHATSAPP BUTTON NEXT TO SEND ICON
   ======================================== */

.chat-whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.chat-whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.chat-whatsapp-btn i {
  font-size: 1.5rem;
  color: white;
}

/* Adjust chat input container to accommodate WhatsApp button */
.chat-input-container {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

@media (max-width: 480px) {
  .chat-whatsapp-btn {
    width: 45px;
    height: 45px;
  }
  
  .chat-whatsapp-btn i {
    font-size: 1.3rem;
  }
}

/* ========================================
   CALL BUTTON NEXT TO SEND ICON
   ======================================== */

.chat-call-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.chat-call-btn:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.chat-call-btn i {
  font-size: 1.4rem;
  color: white;
}

@media (max-width: 480px) {
  .chat-call-btn {
    width: 45px;
    height: 45px;
  }
  
  .chat-call-btn i {
    font-size: 1.2rem;
  }
}

/* ========================================
   CALL BUTTON WRAPPER WITH LABEL
   ======================================== */

.call-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.call-btn-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  white-space: nowrap;
}

/* Update call button to work in wrapper */
.call-button-wrapper .chat-call-btn {
  margin: 0;
}

@media (max-width: 768px) {
  .call-btn-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .call-btn-label {
    display: none; /* Hide label on very small screens */
  }
}
/* ========================================
   CHATGPT-STYLE MOBILE OPTIMIZATION
   ESTIMATOR PAGE ONLY
   ======================================== */

/* Fix viewport for app-like experience */
body.chat-app-mode {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for mobile */
  overflow: hidden;
  overscroll-behavior: none; /* Prevent pull-to-refresh */
  -webkit-overflow-scrolling: touch;
}

/* Prevent pull-to-refresh globally on estimator page */
.chat-app-mode * {
  overscroll-behavior: none;
}

/* Full-screen chat container */
.chat-app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Chat window takes remaining space */
.chat-window {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 0; /* Important for flex children */
}

/* Chat messages - scrollable area */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Fix input wrapper at bottom */
.chat-input-wrapper {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  border: none;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom)); /* iOS safe area */
  z-index: 100;
  box-shadow: none;
  backdrop-filter: none;
}

/* Professional input container like ChatGPT */
.chat-input-container {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 8px 12px;
  transition: all 0.2s ease;
}

.chat-input-container:focus-within {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Input field styling */
.chat-input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 16px; /* Prevent iOS zoom */
  line-height: 24px;
  padding: 8px 12px;
  outline: none;
  resize: none;
  max-height: 120px;
  min-height: 24px;
}

.chat-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Button wrappers */
.call-button-wrapper,
.attach-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

/* Buttons */
.chat-call-btn,
.chat-attach-btn,
.chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.chat-call-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: none;
}

.chat-attach-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.chat-send-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.chat-call-btn:hover,
.chat-send-btn:hover {
  transform: scale(1.05);
}

.chat-attach-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Button labels */
.call-btn-label,
.attach-btn-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 600;
  white-space: nowrap;
}

/* Footer info */
.chat-footer-info {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Typing indicator */
.typing-indicator {
  padding: 16px 20px;
}

/* Messages */
.message {
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  animation: fadeIn 0.3s ease;
}

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

/* Header - compact on mobile */
.chat-app-header {
  flex-shrink: 0;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0a;
}

/* Estimate result container */
.estimate-result-container {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 16px;
  padding-bottom: max(20px, env(safe-area-inset-bottom));
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .chat-messages {
    padding: 16px 12px;
  }

  .chat-input-wrapper {
    padding: 10px 12px;
  }

  .chat-input-container {
    padding: 6px 10px;
    border-radius: 20px;
  }

  .message {
    gap: 10px;
  }

  /* Hide labels on small screens */
  .call-btn-label,
  .attach-btn-label {
    font-size: 8px;
  }
}

@media (max-width: 480px) {
  .call-btn-label,
  .attach-btn-label {
    display: none;
  }

  .chat-input {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 6px 8px;
  }

  .chat-call-btn,
  .chat-attach-btn,
  .chat-send-btn {
    width: 36px;
    height: 36px;
  }

  .chat-footer-info {
    font-size: 10px;
  }
}

/* Prevent iOS bounce scroll */
@supports (-webkit-touch-callout: none) {
  body.chat-app-mode {
    position: fixed;
    overflow: hidden;
  }
}

/* Safe area for notched devices */
@supports (padding: max(0px)) {
  .chat-app-header {
    padding-top: max(12px, env(safe-area-inset-top));
  }
  
  .chat-input-wrapper {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}

/* ========================================
   FULL-SCREEN MOBILE WITH KEYBOARD HANDLING
   ======================================== */

/* Full viewport on mobile */
body.chat-app-mode {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}

/* Chat container fills entire screen */
.chat-app-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  overflow: hidden;
  background: #0a0a0a;
}

/* Input wrapper - absolute positioning for keyboard */
.chat-input-wrapper {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  background: transparent;
  border: none;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 1000;
  transition: transform 0.3s ease;
  box-shadow: none;
  backdrop-filter: none;
}

/* When keyboard is open, adjust chat messages padding */
.chat-window {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 160px; /* Space for input + raised position */
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 16px;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* iOS-specific fixes */
@supports (-webkit-touch-callout: none) {
  /* iOS Safari */
  body.chat-app-mode {
    position: fixed;
    width: 100%;
    height: 100%;
  }

  .chat-app-container {
    height: -webkit-fill-available;
    min-height: -webkit-fill-available;
  }

  /* Adjust when virtual keyboard is open */
  .chat-input:focus {
    position: relative;
  }
}

/* Prevent zoom on iOS */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px !important;
  }
}

/* Visual Viewport API support for better keyboard handling */
@supports (height: 100dvh) {
  .chat-app-container {
    height: 100dvh;
  }

  body.chat-app-mode {
    height: 100dvh;
  }
}
/* ========================================
   CLEAN MOBILE OPTIMIZATION - ESTIMATOR PAGE
   Replaces all previous mobile rules
   ======================================== */

/* Reset and full-screen setup */

body.chat-app-mode {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  overscroll-behavior: none;
  background: #0a0a0a;
}

/* Main container - full screen */
body.chat-app-mode .chat-app-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: #0a0a0a;
}

/* Header - fixed at top */
body.chat-app-mode .chat-app-header {
  flex-shrink: 0;
  padding: 12px 16px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

/* Chat window - takes remaining space */
body.chat-app-mode .chat-window {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  position: relative;
}

/* Chat messages - scrollable */
body.chat-app-mode .chat-messages {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  padding-bottom: 200px; /* Increased to prevent overlap with input + WhatsApp banner */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Input wrapper - fixed at bottom */
body.chat-app-mode .chat-input-wrapper {
  position: fixed;
  bottom: 0 !important;
  left: 12px;
  right: 12px;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  border: none;
  padding: 4px 16px !important;
  padding-bottom: 0px !important;
  z-index: 1000;
  box-shadow: none;
}

/* WhatsApp CTA Banner */
body.chat-app-mode .whatsapp-cta-banner {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 16px;
  padding: 12px 16px;
  margin-bottom: 12px;
  animation: slideInUp 0.4s ease;
}

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

body.chat-app-mode .whatsapp-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.chat-app-mode .whatsapp-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.chat-app-mode .whatsapp-cta-text strong {
  color: white;
  font-size: 15px;
  font-weight: 600;
}

body.chat-app-mode .whatsapp-cta-text span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

body.chat-app-mode .whatsapp-cta-btn {
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

body.chat-app-mode .whatsapp-cta-btn:hover {
  transform: scale(1.05);
  background: #20BA5A;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

body.chat-app-mode .whatsapp-cta-btn:active {
  transform: scale(0.98);
  background: #1DA851;
}

body.chat-app-mode .whatsapp-cta-btn i {
  font-size: 18px;
}

/* Input container */
body.chat-app-mode .chat-input-container {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  background: rgba(40, 40, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  padding: 4px 6px 4px 18px;
  transition: all 0.2s ease;
}

body.chat-app-mode .chat-input-container:focus-within {
  background: rgba(50, 50, 50, 0.95);
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.1);
}

/* Input field */
body.chat-app-mode .chat-input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  line-height: 22px;
  padding: 12px 8px;
  outline: none;
  resize: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  max-height: 120px;
  min-height: 24px;
}

body.chat-app-mode .chat-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

body.chat-app-mode .chat-input:focus {
  outline: none;
}

/* Buttons */
body.chat-app-mode .chat-attach-btn,
body.chat-app-mode .chat-send-btn {
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* Attach button - subtle, secondary */
body.chat-app-mode .chat-attach-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  width: 40px;
  height: 40px;
}

body.chat-app-mode .chat-attach-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

body.chat-app-mode .chat-attach-btn:active {
  transform: scale(0.95);
}

body.chat-app-mode .chat-attach-btn i {
  font-size: 20px;
}

/* Send button - WhatsApp style */
body.chat-app-mode .chat-send-btn {
  background: #25D366;
  color: white;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

body.chat-app-mode .chat-send-btn:hover {
  transform: scale(1.05);
  background: #20BA5A;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

body.chat-app-mode .chat-send-btn:active {
  transform: scale(0.98);
  background: #1DA851;
}

/* Send button disabled state */
body.chat-app-mode .chat-send-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: #25D366;
}

body.chat-app-mode .chat-send-btn i {
  font-size: 22px;
}

/* Footer info */
body.chat-app-mode .chat-footer-info {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  padding: 0px 0 0 0;
  margin-bottom: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

body.chat-app-mode .footer-call-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

body.chat-app-mode .footer-call-link:hover {
  color: #667eea;
}

body.chat-app-mode .footer-call-link i {
  font-size: 11px;
}

/* Estimate result - full screen scrollable */
body.chat-app-mode .estimate-result-container {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 16px;
  padding-bottom: 60px;
}

/* Prevent all page scrolling */
body.chat-app-mode {
  touch-action: none;
}

body.chat-app-mode .chat-messages {
  touch-action: pan-y;
}

/* Mobile specific */
@media (max-width: 768px) {
  body.chat-app-mode .chat-messages {
    padding: 12px;
    padding-bottom: 220px; /* Extra padding on mobile for WhatsApp banner */
  }

  body.chat-app-mode .chat-input-wrapper {
    padding: 8px 16px !important;
    padding-bottom: 0px !important;
  }

  body.chat-app-mode .whatsapp-cta-banner {
    padding: 10px 12px;
    margin-bottom: 10px;
  }

  body.chat-app-mode .whatsapp-cta-text strong {
    font-size: 14px;
  }

  body.chat-app-mode .whatsapp-cta-text span {
    font-size: 11px;
  }

  body.chat-app-mode .whatsapp-cta-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  body.chat-app-mode .whatsapp-cta-btn span {
    display: none;
  }

  body.chat-app-mode .whatsapp-cta-btn i {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  body.chat-app-mode .chat-input {
    font-size: 16px;
    padding: 8px 6px;
  }

  body.chat-app-mode .chat-input-container {
    padding: 4px 6px 4px 12px;
    gap: 8px;
  }

  body.chat-app-mode .chat-attach-btn {
    width: 36px;
    height: 36px;
  }

  body.chat-app-mode .chat-send-btn {
    width: 40px;
    height: 40px;
  }

  body.chat-app-mode .chat-footer-info {
    font-size: 11px;
  }
}
/* ========================================
   FINAL CLEAN MOBILE - ESTIMATOR PAGE ONLY
   ======================================== */

/* Reset everything for clean slate */

/* Lock body completely */
body.chat-app-mode {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh; /* Fallback for older browsers */
  height: 100dvh; /* Dynamic viewport height for mobile keyboards */
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
  background: #0a0a0a;
}

/* Main container - full dynamic viewport */
body.chat-app-mode .chat-app-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100vh; /* Fallback for older browsers */
  height: 100dvh; /* Dynamic viewport height adjusts for keyboard */
  width: 100vw;
  overflow: hidden;
  background: #0a0a0a;
}

/* Header inside container */
body.chat-app-mode .chat-app-header {
  flex-shrink: 0;
  padding: 14px 16px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.chat-app-mode .chat-app-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

body.chat-app-mode .chat-app-logo {
  height: 32px;
  width: auto;
}

body.chat-app-mode .chat-app-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

/* Chat window fills remaining space */
body.chat-app-mode .chat-window {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  position: relative;
}

/* Chat messages - only scrollable element */
body.chat-app-mode .chat-messages {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  padding-bottom: 12px; /* Minimal bottom padding */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  min-height: 0; /* Important for flex child scrolling */
}

/* Input wrapper - sits at bottom with safe area */
body.chat-app-mode .chat-input-wrapper {
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 4px 16px !important;
  padding-bottom: 0px !important;
  z-index: 1000;
  box-shadow: none;
  backdrop-filter: none;
  position: relative;
}

/* Safe area for iOS notch */
@supports (padding: max(0px)) {
  body.chat-app-mode .chat-app-header {
    padding-top: max(14px, env(safe-area-inset-top));
  }
}

/* Input container */
body.chat-app-mode .chat-input-container {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 10px 14px;
  transition: all 0.2s ease;
}

body.chat-app-mode .chat-input-container:focus-within {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.5);
}

/* Input field */
body.chat-app-mode .chat-input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  line-height: 22px;
  padding: 6px 10px;
  outline: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body.chat-app-mode .chat-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Buttons */
body.chat-app-mode .chat-call-btn,
body.chat-app-mode .chat-attach-btn,
body.chat-app-mode .chat-send-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

body.chat-app-mode .chat-call-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
}

body.chat-app-mode .chat-send-btn {
  background: #25D366;
  color: white;
}

body.chat-app-mode .chat-attach-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

body.chat-app-mode .chat-call-btn:active,
body.chat-app-mode .chat-send-btn:active {
  background: #1DA851;
  transform: scale(0.95);
}

body.chat-app-mode .chat-attach-btn:active {
  transform: scale(0.95);
}

/* Button wrappers */
body.chat-app-mode .call-button-wrapper,
body.chat-app-mode .attach-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

/* Labels */
body.chat-app-mode .call-btn-label,
body.chat-app-mode .attach-btn-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  white-space: nowrap;
}

/* Footer info */
body.chat-app-mode .chat-footer-info {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0px 0 0 0;
  margin-bottom: 0px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

body.chat-app-mode .footer-tagline {
  font-size: 10px;
  color: rgba(212, 175, 55, 0.7);
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

/* Messages */
body.chat-app-mode .message {
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  animation: slideIn 0.3s ease;
}

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

/* Estimate result - scrollable overlay */
body.chat-app-mode .estimate-result-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 16px 40px 16px;
  background: #0a0a0a;
  z-index: 50;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  body.chat-app-mode .chat-messages {
    padding: 12px;
  }

  body.chat-app-mode .chat-input-wrapper {
    padding: 8px 16px 150px 16px !important;
  }
  
  body.chat-app-mode .chat-app-title {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  body.chat-app-mode .call-btn-label,
  body.chat-app-mode .attach-btn-label {
    display: none;
  }

  body.chat-app-mode .chat-call-btn,
  body.chat-app-mode .chat-attach-btn,
  body.chat-app-mode .chat-send-btn {
    width: 38px;
    height: 38px;
  }
  
  body.chat-app-mode .chat-app-logo {
    height: 28px;
  }
  
  body.chat-app-mode .chat-app-title {
    font-size: 14px;
  }
}
/* ========================================
   ESTIMATOR PAGE ONLY - NO GLOBAL IMPACT
   ======================================== */

/* ONLY apply to estimator page with chat-app-mode class */
body.chat-app-mode {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  overflow: hidden !important;
  overscroll-behavior: none !important;
  touch-action: none !important;
  background: #0a0a0a !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ONLY on estimator page - lock html too */

/* Container - ONLY on estimator */
body.chat-app-mode .chat-app-container {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100vh !important;
  width: 100vw !important;
  overflow: hidden !important;
  background: #0a0a0a !important;
}

/* Header - ONLY on estimator */
body.chat-app-mode .chat-app-header {
  flex-shrink: 0 !important;
  padding: 14px 16px !important;
  background: #0a0a0a !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  z-index: 100 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

body.chat-app-mode .menu-burger {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Chat window - ONLY on estimator */
body.chat-app-mode .chat-window {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  min-height: 0 !important;
  position: relative !important;
}

/* Chat messages - ONLY on estimator */
body.chat-app-mode .chat-messages {
  flex: 1 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 16px !important;
  padding-bottom: calc(180px + var(--kb, 0px)) !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  touch-action: pan-y !important;
  transition: padding-bottom 0.2s ease-out !important;
  min-height: 0 !important;
}

/* Input - ONLY on estimator - Keyboard-aware */
body.chat-app-mode .chat-input-wrapper {
  position: fixed !important;
  bottom: 130px !important;
  left: 0 !important;
  right: 0 !important;
  flex-shrink: 0 !important;
  background: transparent !important;
  border-top: none !important;
  padding: 12px 16px !important;
  padding-bottom: max(12px, env(safe-area-inset-bottom)) !important;
  z-index: 1000 !important;
  box-shadow: none !important;
  transform: translateY(calc(-1 * var(--kb, 0px))) !important;
  transition: transform 0.2s ease-out !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body.chat-app-mode .chat-input-container {
  display: flex !important;
  gap: 6px !important;
  align-items: center !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  background: rgba(40, 40, 40, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 28px !important;
  padding: 6px 10px !important;
  height: 52px !important;
  min-height: 52px !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}

body.chat-app-mode .chat-input-container:focus-within {
  background: rgba(50, 50, 50, 0.95) !important;
  border-color: rgba(37, 211, 102, 0.4) !important;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.1) !important;
}

body.chat-app-mode .chat-input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: white !important;
  font-size: 16px !important;
  line-height: 22px !important;
  padding: 0 8px !important;
  height: 100% !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}

body.chat-app-mode .chat-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

body.chat-app-mode .chat-input:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Buttons inside pill */
body.chat-app-mode .chat-attach-btn {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

body.chat-app-mode .chat-attach-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

body.chat-app-mode .chat-attach-btn:active {
  transform: scale(0.95) !important;
}

body.chat-app-mode .chat-attach-btn i {
  font-size: 18px !important;
}

body.chat-app-mode .chat-send-btn {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
  background: #25D366 !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3) !important;
}

body.chat-app-mode .chat-send-btn:hover {
  transform: scale(1.05) !important;
  background: #20BA5A !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
}

body.chat-app-mode .chat-send-btn:active {
  transform: scale(0.98) !important;
  background: #1DA851 !important;
}

body.chat-app-mode .chat-send-btn:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

body.chat-app-mode .chat-send-btn i {
  font-size: 18px !important;
}

/* Mobile - ONLY on estimator */
@media (max-width: 768px) {
  body.chat-app-mode .chat-messages {
    padding: 12px !important;
    padding-bottom: calc(180px + var(--kb, 0px)) !important;
  }

  body.chat-app-mode .chat-input-wrapper {
    padding: 10px 12px !important;
    padding-bottom: max(10px, env(safe-area-inset-bottom)) !important;
  }

  body.chat-app-mode .chat-input-container {
    height: 52px !important;
    padding: 6px 10px !important;
    gap: 6px !important;
  }

  body.chat-app-mode .chat-input {
    font-size: 16px !important;
    padding: 0 6px !important;
  }
}

@media (max-width: 480px) {
  body.chat-app-mode .chat-input-container {
    height: 50px !important;
    padding: 5px 8px !important;
  }

  body.chat-app-mode .chat-attach-btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
  }

  body.chat-app-mode .chat-send-btn {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
  }

  body.chat-app-mode .chat-send-btn i,
  body.chat-app-mode .chat-attach-btn i {
    font-size: 16px !important;
  }
}

/* Jump to bottom button - keyboard aware */
.jump-to-bottom-btn {
  position: fixed;
  bottom: calc(180px + var(--kb, 0px));
  right: 20px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000;
  border: none;
  border-radius: 25px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: bottom 0.2s ease-out, transform 0.2s ease, opacity 0.3s ease;
}

.jump-to-bottom-btn:active {
  transform: scale(0.95);
}

.jump-to-bottom-btn i {
  font-size: 12px;
}

/* ============================================
   MODERN MULTI-PLATFORM REVIEWS SECTION
   ============================================ */

.reviews-section-modern {
  padding: 80px 20px;
  background: #111;
  position: relative;
}

.reviews-container-modern {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
}

/* Review Platform Tabs */
.review-tabs {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 8px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.review-tab {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.review-tab:hover {
  background: rgba(212, 175, 55, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.review-tab.active {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.review-tab .fab.fa-google {
  color: #4285F4;
  font-size: 20px;
}

.checkatrade-icon,
.trustatrader-icon {
  width: 20px;
  height: 20px;
}

/* Rating Summary Banner */
.rating-summary-banner {
  background: rgba(0, 0, 0, 0.3);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
}

.rating-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-icon {
  flex-shrink: 0;
}

.rating-stars-large {
  display: flex;
  gap: 4px;
}

.rating-stars-large i {
  color: #d4af37;
  font-size: 28px;
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.rating-number-large {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37 0%, #FFD700 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 16px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.rating-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.rating-right {
  display: flex;
  align-items: center;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
  color: #d4af37;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  backdrop-filter: blur(10px);
  cursor: default;
}

.verified-badge i {
  font-size: 16px;
  color: #d4af37;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
  padding: 32px 0;
}

.review-card-modern {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(10px);
}

.review-card-modern:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(0, 0, 0, 0.5);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
}

.reviewer-avatar-modern {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.reviewer-details {
  flex: 1;
}

.reviewer-name-modern {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.review-date-modern {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.platform-badge {
  position: absolute;
  top: 0;
  right: 0;
}

.platform-badge.google {
  font-size: 28px;
  color: #4285F4;
}

.review-stars-modern {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.review-stars-modern i.fa-star {
  color: #d4af37;
  font-size: 18px;
}

.verified-icon {
  color: #d4af37;
  font-size: 16px;
  margin-left: 6px;
}

.review-text-modern {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.read-more {
  color: #d4af37;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }

  .rating-summary-banner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .rating-left {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .reviews-section-modern {
    padding: 40px 16px;
  }

  .review-tabs {
    flex-wrap: wrap;
  }

  .review-tab {
    flex: 1 1 50%;
    padding: 14px 16px;
    font-size: 14px;
  }

  .tab-text {
    display: none;
  }

  .review-tab.active .tab-text {
    display: inline;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .rating-summary-banner {
    padding: 24px 20px;
  }

  .rating-number-large {
    font-size: 28px;
  }

  .rating-title {
    font-size: 20px;
  }

  .rating-left {
    gap: 12px;
  }

  .verified-badge {
    font-size: 13px;
    padding: 10px 18px;
  }
}

@media (max-width: 480px) {
  .review-tab {
    padding: 12px 10px;
    font-size: 13px;
  }

  .review-card-modern {
    padding: 20px;
  }

  .reviewer-avatar-modern {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .reviewer-name-modern {
    font-size: 15px;
  }

  .review-text-modern {
    font-size: 14px;
  }
}
