@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --primary: #A07A4E;
  --primary-hover: #C59F75;
  --secondary: #2C2B29;
  --secondary-dark: #1E1D1B;
  --secondary-light: #F9F6F0;
  --text-dark: #202020;
  --text-light: #FFFFFF;
  --text-muted: #7E7C77;
  --whatsapp: #25D366;
  --whatsapp-hover: #128C7E;
  
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  --shadow-sm: 0 2px 5px rgba(0,0,0,0.03);
  --shadow-md: 0 5px 15px rgba(0,0,0,0.06);
  --shadow-lg: 0 15px 35px rgba(0,0,0,0.12);
  
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary-dark);
}

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

ul {
  list-style: none;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow-sm);
}

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

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.85rem;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--text-light);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Layout Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* 1. NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition);
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  padding: 0.9rem 0;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-graphic-container {
  height: 48px;
  width: 48px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.logo-icon-img {
  height: 80px;
  width: auto;
  position: absolute;
  left: -12px;
  max-width: none;
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title-grey {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.logo-title-gold {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: var(--primary);
}

/* Desktop Links */
.nav-links {
  display: flex;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

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

/* Hamburger menu button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .hamburger span {
  background-color: var(--secondary-dark);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Menu Drawer styling */
.nav-menu-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--secondary-dark);
  z-index: 1005;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.nav-menu-mobile.active {
  right: 0;
}

.nav-menu-mobile .nav-link {
  color: var(--text-light);
  font-size: 1.2rem;
}

/* 2. HERO */
.hero {
  position: relative;
  background-image: url('img/hero_bg.png');
  background-size: cover;
  background-position: center;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--text-light);
  padding-top: 100px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(30, 29, 27, 0.7) 0%, rgba(30, 29, 27, 0.85) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  background-color: rgba(160, 122, 78, 0.2);
  border: 1px solid var(--primary);
  color: var(--primary-hover);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  max-width: 800px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-title span.gold {
  color: var(--primary-hover);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

.hero-btns .btn-outline {
  border-color: var(--text-light);
  color: var(--text-light);
}

.hero-btns .btn-outline:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  font-size: 1.5rem;
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* 3. STATS BAR */
.stats-bar {
  background-color: var(--secondary-light);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.stat-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary-dark);
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 4. ABOUT */
.about {
  padding: 6rem 0;
  background-color: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition);
}

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

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-tag {
  color: var(--primary);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.about-divider {
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  margin-bottom: 2rem;
}

.about-text {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--secondary-dark);
}

.about-list-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

/* 5. SERVICES */
.services {
  background-color: var(--secondary-light);
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  color: var(--primary);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-icon-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--primary);
  color: var(--text-light);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.service-pill {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background-color: rgba(32, 32, 32, 0.85);
  color: var(--text-light);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(5px);
  z-index: 2;
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-btn {
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-title);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.service-card:hover .service-btn {
  color: var(--primary-hover);
}

.service-btn i {
  transition: var(--transition);
}

.service-card:hover .service-btn i {
  transform: translateX(4px);
}

/* CONSTRUCTORA INTEGRATION SECTION */
.constructora-experience {
  background-color: #FFFFFF;
  padding: 6rem 0;
}

.constructora-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.constructora-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.constructora-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.constructora-desc {
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.constructora-image-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.constructora-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* 6. PROCESS */
.process {
  background-color: var(--secondary-light);
  padding: 6rem 0;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
  z-index: 1;
}

.process-timeline::after {
  content: '';
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: rgba(160, 122, 78, 0.2);
  z-index: -1;
}

.process-step {
  width: 22%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step:hover .process-num {
  background-color: var(--primary);
  color: var(--text-light);
  transform: scale(1.08);
}

.process-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 7. CONTACT */
.contact {
  background-color: #FFFFFF;
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--secondary-light);
  border-radius: 8px;
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.02);
  align-items: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(160, 122, 78, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.contact-details p, .contact-details a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-dark);
}

.contact-details a:hover {
  color: var(--primary);
}

/* Form Styles */
.contact-form-wrapper {
  background-color: var(--secondary-light);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.02);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--secondary-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--text-dark);
  background-color: #FFFFFF;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(160, 122, 78, 0.1);
}

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

/* 8. FOOTER */
.footer {
  background-color: var(--secondary-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-text {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover, .footer-wsp-text-link:hover {
  color: var(--primary-hover) !important;
  transform: translateX(3px);
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* 9. FLOATING WHATSAPP BUTTON & WIDGET */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.whatsapp-btn {
  background-color: var(--whatsapp);
  color: var(--text-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.whatsapp-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.08);
}

.whatsapp-menu {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.whatsapp-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.whatsapp-menu-header {
  background: linear-gradient(135deg, var(--whatsapp) 0%, #1da851 100%);
  color: var(--text-light);
  padding: 1.4rem;
}

.whatsapp-menu-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.whatsapp-menu-header p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.whatsapp-menu-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: #F9F9F8;
}

.whatsapp-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #FFFFFF;
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.05);
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-contact-item:hover {
  border-color: var(--whatsapp);
  background-color: rgba(37, 211, 102, 0.02);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.whatsapp-contact-item i {
  font-size: 1.7rem;
  color: var(--whatsapp);
}

.contact-details-wsp {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary-dark);
  font-family: var(--font-title);
}

.contact-phone {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.05rem;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1023px) {
  .nav-links, .navbar-actions {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .about-grid, .constructora-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-img, .constructora-img {
    height: 340px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .process-timeline {
    flex-direction: column;
    gap: 2.5rem;
  }

  .process-timeline::after {
    display: none;
  }

  .process-step {
    width: 100%;
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
  }

  .process-num {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 639px) {
  .hero-title {
    font-size: 2.1rem;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: var(--secondary-light);
  border-radius: 8px;
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.02);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.stars {
  color: var(--primary-hover);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.user-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary-dark);
}

.user-project {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* CTA Band Section */
.cta-band {
  position: relative;
  background-image: url('img/hero_bg.png');
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  text-align: center;
  color: var(--text-light);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 29, 27, 0.85);
  z-index: 1;
}

.cta-band .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  max-width: 600px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Media Queries for Testimonials & CTA */
@media (max-width: 1023px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3rem auto 0;
  }
}

