/* ================================
   GOOGLE FONTS
   ================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

/* ================================
   VARIABLES & RESET
   ================================ */

:root {
  --primary-color: #c9a96e;
  --bg-dark: #0f0f0f;
  --bg-card: #1a1a1a;
  --text-dark: #ffffff;
  --text-light: #a0a0a0;
  --border-color: #2a2a2a;
  --transition: all 0.3s ease;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-dark);
}

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

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

ul {
  list-style: none;
}

/* ================================
   UTILITIES
   ================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 0;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #000000;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #d4b77e;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--bg-dark);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 15px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.logo span {
  color: #ffffff;
}

.logo .word-real,
.logo .word-estate {
  animation: goldPulse 4.5s ease-in-out 10;
}

.logo .word-estate {
  animation-delay: 1.5s;
}

.logo .word-funding {
  color: var(--primary-color);
  animation: goldPulse 4.5s ease-in-out 10;
  animation-delay: 3s;
}

.logo .word-pro {
  color: #ffffff;
}

@keyframes goldPulse {
  0%,
  33.33% {
    color: var(--primary-color);
  }
  33.34%,
  100% {
    color: #ffffff;
  }
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

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

.nav-menu .btn-primary {
  color: #000000 !important;
}

.lang-toggle {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 6px 14px;
  border-radius: 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.lang-toggle:hover {
  background-color: var(--primary-color);
  color: var(--bg-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
  margin-top: 70px;
  padding: 140px 0 120px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  font-size: 3rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 30px;
}

.carousel-btn.next {
  right: 30px;
}

.carousel-btn span {
  display: block;
  line-height: 1;
  margin-top: -5px;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.indicator.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

/* Hero Overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

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

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  letter-spacing: 0.03em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ================================
   REVEAL EFFECT
   ================================ */

/* GSAP Reveal Animation (TREF Style) */
.reveal {
  padding: 1px 0;
}

.text-wrap {
  overflow: hidden;
  padding: 15px 0;
  margin: -15px 0;
}

.text-inner {
  transition: transform 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transform: translateY(calc(100% + 20px));
}

.reveal.animate .text-inner {
  transform: translateY(0%);
}

/* Test Reveal Section - Slogan Effect */
.reveal-test-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
  text-align: center;
}

.slogan-text {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 1200px;
  margin: 0 auto;
}

.slogan-line {
  position: relative;
  display: block;
  margin-bottom: 0.5em;
}

.slogan-text-base {
  display: block;
  color: rgba(242, 241, 237, 0.1);
}

.slogan-text-reveal {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  color: var(--text-dark);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.1s linear;
  width: 100%;
}

/* ================================
   SERVICES SECTION
   ================================ */

.services {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

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

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 400;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-subtitle {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-details {
  list-style: none;
  text-align: left;
  margin: 20px 0;
  padding: 0;
}

.service-details li {
  color: var(--text-light);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
}

.service-details li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  transform: rotate(45deg);
}

.service-link {
  color: var(--primary-color);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.service-link:hover {
  text-decoration: underline;
}

/* ================================
   ABOUT SECTION
   ================================ */

.about {
  padding: 100px 0;
  background-color: var(--bg-card);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 30px;
  color: var(--text-dark);
  font-weight: 400;
}

.about-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.8;
}

.about-mission {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 60px;
}

.highlight-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.highlight-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-dark);
  font-weight: 500;
}

.highlight-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-photo-container {
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
  margin-top: 160px;
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
}

.why-us {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-content h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 40px;
  color: var(--text-dark);
  font-weight: 400;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefits-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.check-icon {
  background-color: var(--primary-color);
  color: var(--bg-dark);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.benefits-list strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.benefits-list p {
  color: var(--text-light);
}

.why-us-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-us-photo {
  width: 100%;
  height: auto;
  border: 1px solid var(--border-color);
  object-fit: cover;
}

.placeholder-image {
  width: 100%;
  height: 400px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
  padding: 100px 0;
  background-image: url("images/carousel/watermarked-fd830b7c-a498-413b-a2d1-146bff74d20d.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-light);
}

/* ================================
   APPLICATION FORM
   ================================ */

.application-form {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: transparent;
  padding: 60px 20px;
}

.form-icon {
  text-align: center;
  margin-bottom: 40px;
}

.form-icon svg {
  width: 100px;
  height: 35px;
  margin: 0 auto;
}

.form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
  color: var(--text-dark);
  font-weight: 400;
}

.form-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  font-size: 0.95rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

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

.form-group label {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select {
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--border-color);
  background-color: transparent;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
  color: var(--text-dark);
}

.form-group input::placeholder {
  color: var(--text-light);
  opacity: 0.3;
}

.form-group select {
  cursor: pointer;
  color: var(--text-light);
}

.form-group select:invalid {
  color: var(--text-light);
  opacity: 0.3;
}

.form-group select option {
  background-color: var(--bg-card);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 15px;
  opacity: 0.7;
}

.form-disclaimer a {
  color: var(--primary-color);
  text-decoration: underline;
}

.form-message {
  text-align: center;
  padding: 30px;
  margin-top: 20px;
  border: 1px solid var(--border-color);
}

.form-message.success {
  border-color: var(--primary-color);
  background-color: rgba(201, 169, 110, 0.1);
}

.form-message.error {
  border-color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
}

.form-message h3 {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.form-message p {
  color: var(--text-light);
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact {
  padding: 100px 0;
  background-color: var(--bg-card);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 400;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.contact-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text-dark);
  font-weight: 500;
}

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

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
}

.contact-hours h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-dark);
  font-weight: 400;
}

.contact-hours ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
}

/* Contact Schedule */
.contact-schedule {
  text-align: center;
  padding: 40px;
  background: var(--bg-dark);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.contact-schedule h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 400;
}

.contact-schedule p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1rem;
}

.btn-schedule {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-schedule:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
}

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

.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
}

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

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.footer-col p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col a {
  color: var(--text-light);
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  color: var(--text-light);
}

.social-links a:hover {
  background: linear-gradient(135deg, #c59c4d, #d4af37);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(197, 156, 77, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-flavia {
  text-align: center;
}

.footer-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 15px auto 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: block;
  overflow: hidden;
  background-image: url("../images/team/foto-Fla.jpeg");
  background-size: 130px;
  background-position: 90% 10%;
  background-repeat: no-repeat;
  image-rendering: auto;
  filter: brightness(1.05) contrast(1.02);
  transform: rotate(-19deg);
}

.flavia-name {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 3px;
  opacity: 0.9;
}

.footer-flavia h4 {
  color: var(--text-dark);
  margin-bottom: 5px;
}

.footer-role {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.98);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

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

  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 2rem;
  }

  .carousel-btn.prev {
    left: 15px;
  }

  .carousel-btn.next {
    right: 15px;
  }

  .carousel-indicators {
    bottom: 20px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }

  .indicator.active {
    width: 20px;
  }

  .reveal-test-title {
    font-size: 2rem;
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .why-us-grid,
  .contact-grid,
  .about-wrapper,
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .form-wrapper {
    padding: 40px 25px;
  }

  .section-header h2,
  .why-us-content h2,
  .contact-info h2,
  .form-wrapper h2 {
    font-size: 2rem;
  }
}

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

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

  .btn-lg {
    padding: 14px 30px;
    font-size: 0.85rem;
  }
}
