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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fafafa;
  color: #141414;
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  background: linear-gradient(180deg, #000e26, #000814);
  border-bottom: 1px solid #c99f54;
}

.header-content {
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 36px;
}

.header-cta {
  background: linear-gradient(to right, #e1c388, #b38226);
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.header-cta:hover {
  transform: scale(1.05);
}

/* ================= HERO SECTION ================= */
.hero-section {
  display: flex;
  width: 100%;
  padding: 120px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 600px;
  position: relative;
  background: url('../assets/images/Herosectionimg.png') lightgray 50% / cover no-repeat;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  color: #FFF;
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(90deg, #DCB76D 0%, #F4D68D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  width: 140px;
  padding: 11.75px 23.5px;
  justify-content: center;
  align-items: center;
  gap: 11.75px;
  border-radius: 8.813px;
  background: #FFF;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #141414;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: #f8f8f8;
}

.hero-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .hero-section {
    padding: 80px 60px;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .gradient-text {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 24px;
    min-height: 500px;
    background: url('../assets/images/Mobileherosectionimg.png') lightgray 50% / cover no-repeat;
    background-position: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .gradient-text {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .hero-cta {
    width: 100%;
    max-width: 300px;
  }
  
  .header-cta {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .brand img {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 20px;
    min-height: 450px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .gradient-text {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .hero-text {
    gap: 20px;
  }
}

/* ================= WHAT WE DO ================= */
.what-we-do {
  margin-top: 0;
  padding: 80px 24px;
  background: #fafafa;
}

.section-header-wwd {
  text-align: center;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-wwd h2 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #141414;
  margin: 0 0 48px 0;
}

.residential-projects {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 16px;
}

.rp {
  flex: 2;
  height: 420px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  height: 200px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
}

.content h3 {
  font-size: 28px;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.content p {
  font-size: 15px;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

@media (max-width: 768px) {
  .what-we-do {
    padding: 60px 24px;
  }

  .section-header-wwd h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .residential-projects {
    flex-direction: column;
  }
  
  .rp {
    height: 300px;
    flex: none;
  }

  .stack {
    flex: none;
  }
  
  .card {
    height: 260px;
  }

  .content h3 {
    font-size: 24px;
  }

  .content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-header-wwd h2 {
    font-size: 24px;
  }

  .rp,
  .card {
    height: 240px;
  }

  .content h3 {
    font-size: 20px;
  }

  .content p {
    font-size: 13px;
  }
}
/* ================= FULL WIDTH REDEVELOPMENT CARD ================= */
.full-width-card-container {
  max-width: 1200px;
  margin: 16px auto 0 auto;
  padding: 0; /* No padding on container */
}

.full-width-card {
  display: flex;
  padding: 48px 32px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  width: 100%; /* ADD THIS */
  margin: 0; /* ADD THIS */
}
/* ================= MODAL OVERLAY ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001; /* Changed from 9999 to be higher than feedback */
  backdrop-filter: blur(2px);
}

/* ================= MODAL BOX ================= */
.modal {
  background: #ffffff;
  width: 500px;
  max-width: 90%;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #666;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.modal-close:hover {
  background: #f0f0f0;
  color: #000;
}

.modal h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #141414;
}

/* ================= FORM FIELDS ================= */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-field input,
.form-field select {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #D9D9D9;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus {
  border-color: #b38226;
}

.form-field select {
  background: #fff;
  cursor: pointer;
}

/* Error border */
.form-field.error input,
.form-field.error select {
  border-color: #E53935;
}

/* Error text */
.error-text {
  display: none;
  font-size: 12px;
  color: #E53935;
  font-family: "Poppins", sans-serif;
  margin-top: 4px;
}

.form-field.error .error-text {
  display: block;
}

/* ================= SUBMIT BUTTON ================= */
.submit-btn {
  width: 100%;
  background: linear-gradient(to right, #e1c388, #b38226);
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s;
  margin-top: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .modal {
    width: 90%;
    padding: 24px;
  }
  
  .modal h2 {
    font-size: 24px;
  }
}

/* ================= PROJECTS WE WORK WITH ================= */
.projects-section {
  display: inline-flex;
  padding: 56px 120px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  background: #fafafa;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

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

.section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #141414;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.projects-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.project-card {
  display: flex;
  width: 388px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.project-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f0f0f0;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

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

.project-info {
  padding: 0 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #b38226;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #141414;
  margin: 0;
}

.project-description {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.view-project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #b38226;
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.3s ease;
}

.view-project-link:hover {
  gap: 12px;
  color: #8b6520;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.view-project-link:hover .arrow-icon {
  transform: translateX(4px);
  animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateX(4px);
  }
  50% {
    transform: translateX(8px);
  }
}

@media (max-width: 1024px) {
  .projects-section {
    padding: 56px 60px;
  }
  
  .projects-grid {
    gap: 20px;
  }
  
  .project-card {
    width: 340px;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 40px 24px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  .projects-grid {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: visible;
  }
  
  .project-card {
    width: 100%;
    max-width: 388px;
  }
  
  .modal {
    width: 90%;
    padding: 24px;
  }
  
  .modal h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 24px;
  }
  
  .project-title {
    font-size: 20px;
  }
  
  .project-description {
    font-size: 13px;
  }
}

/* ================= HOW IT WORKS ================= */
.how-it-works {
  display: flex;
  width: 100%;
  padding: 120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  background-image: url('../assets/images/Section4bg.png');
  background-color: #000814;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  min-height: 600px;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 14, 38, 0.88);
  z-index: 1;
}

.how-it-works-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 56px;
}

.how-it-works-content {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.left-image {
  flex: 0 0 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.left-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.steps-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.step-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 2;
}

.step-circle img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.step-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #DCB76D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.step-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.step-description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 1024px) {
  .how-it-works {
    padding: 80px 60px;
  }
  
  .how-it-works-content {
    gap: 40px;
  }
  
  .left-image {
    flex: 0 0 320px;
  }
  
  .section-title {
    font-size: 32px;
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 24px;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .how-it-works-content {
    flex-direction: column;
    gap: 48px;
  }
  
  .left-image {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .steps-container {
    gap: 28px;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .step-circle {
    width: 44px;
    height: 44px;
  }
  
  .step-title {
    font-size: 18px;
  }
  
  .step-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .how-it-works {
    padding: 40px 20px;
  }
  
  .section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  
  .step-item {
    gap: 16px;
  }
  
  .timeline-line {
    left: 18px;
  }
  
  .step-circle {
    width: 40px;
    height: 40px;
  }
  
  .step-title {
    font-size: 16px;
  }
  
  .step-description {
    font-size: 13px;
  }
}

/* ================= WHY BUYERS CHOOSE EAGLENEST ================= */
.why-choose-us {
  display: flex;
  width: 100%;
  padding: 60px 120px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #FFF;
}

.why-choose-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.why-choose-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: #141414;
  text-align: center;
  margin-bottom: 56px;
  width: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px 32px;
  background: #fff;
  border-right: 1px solid #E0E0E0;
}

.feature-card:last-child {
  border-right: none;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feature-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #141414;
  margin: 0;
  line-height: 1.4;
}

.feature-description {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

@media (max-width: 1024px) {
  .why-choose-us {
    padding: 60px 60px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-card {
    border-right: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
  }
  
  .feature-card:nth-child(2n) {
    border-right: none;
  }
  
  .feature-card:nth-child(3),
  .feature-card:nth-child(4) {
    border-bottom: none;
  }
  
  .why-choose-title {
    font-size: 32px;
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 50px 24px;
  }
  
  .why-choose-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid #E0E0E0;
  }
  
  .feature-card:last-child {
    border-bottom: none;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-title {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 40px 20px;
  }
  
  .why-choose-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
  }
  
  .feature-title {
    font-size: 16px;
  }
  
  .feature-description {
    font-size: 13px;
  }
}

/* ================= OUR SERVICES ================= */
.our-services {
  display: flex;
  width: 100%;
  padding: 80px 0;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: url('../assets/images/Section6bg.png') lightgray 50% / cover no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 700px;
}

.our-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 14, 38, 0.92);
  z-index: 1;
}

.services-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0 120px;
}

.services-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
}

.service-image {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.service-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.service-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.service-description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 1024px) {
  .services-container {
    padding: 0 60px;
  }
  
  .services-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .services-grid {
    gap: 28px;
  }
  
  .service-image {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .our-services {
    padding: 60px 0;
  }
  
  .services-container {
    padding: 0 24px;
  }
  
  .services-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .service-image {
    height: 260px;
  }
  
  .service-title {
    font-size: 18px;
  }
  
  .service-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .our-services {
    padding: 50px 0;
  }
  
  .services-container {
    padding: 0 20px;
  }
  
  .services-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
  
  .service-image {
    height: 220px;
    border-radius: 12px;
  }
  
  .service-title {
    font-size: 17px;
  }
  
  .service-description {
    font-size: 13px;
  }
}

/* ================= A SMARTER WAY TO FIND YOUR HOME ================= */
.smarter-way-section {
  display: flex;
  width: 100%;
  padding: 80px 120px;
  justify-content: center;
  align-items: center;
  background: #fafafa;
}

.smarter-way-wrapper {
  max-width: 1203px;
  width: 100%;
}

.smarter-way-card {
  display: flex;
  width: 100%;
  padding: 51px 61px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 16px;
  background: url('../assets/images/Section7bg.png') lightgray 50% / cover no-repeat;
  background-position: center;
  position: relative;
  min-height: 280px;
}

.smarter-way-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  z-index: 1;
}

.smarter-way-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}

.smarter-way-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.gold-text {
  background: linear-gradient(90deg, #DCB76D 0%, #F4D68D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 600;
}

.smarter-way-description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  max-width: 700px;
}

@media (max-width: 1024px) {
  .smarter-way-section {
    padding: 60px 60px;
  }
  
  .smarter-way-card {
    padding: 45px 50px;
    min-height: 260px;
  }
  
  .smarter-way-title {
    font-size: 36px;
  }
  
  .gold-text {
    font-size: 36px;
  }
  
  .smarter-way-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .smarter-way-section {
    padding: 50px 24px;
  }
  
  .smarter-way-card {
    padding: 40px 32px;
    min-height: 240px;
  }
  
  .smarter-way-title {
    font-size: 30px;
  }
  
  .gold-text {
    font-size: 30px;
  }
  
  .smarter-way-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .smarter-way-section {
    padding: 40px 20px;
  }
  
  .smarter-way-card {
    padding: 32px 24px;
    min-height: 220px;
    border-radius: 12px;
  }
  
  .smarter-way-title {
    font-size: 26px;
  }
  
  .gold-text {
    font-size: 26px;
  }
  
  .smarter-way-description {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* ================= CONTACT BANNER SECTION ================= */
.contact-banner-section {
  display: flex;
  width: 100%;
  padding: 80px 120px;
  justify-content: center;
  align-items: center;
  background: #FFFAEF;
  min-height: 500px;
}

.contact-banner-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.eagle-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
}

.eagle-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.banner-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 600;
  color: #141414;
  margin: 0;
  line-height: 1.3;
}

.gold-highlight {
  background: linear-gradient(90deg, #DCB76D 0%, #F4D68D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 600;
}

.banner-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
  margin: 0;
  max-width: 600px;
}

.banner-cta-btn {
  margin-top: 16px;
  background: #000;
  border: none;
  padding: 16px 48px;
  border-radius: 8px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-cta-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

/* ================= RESPONSIVE - TABLET ================= */
@media (max-width: 1024px) {
  .contact-banner-section {
    padding: 70px 60px;
    min-height: 450px;
  }
  
  .banner-title {
    font-size: 42px;
  }
  
  .gold-highlight {
    font-size: 42px;
  }
  
  .banner-subtitle {
    font-size: 17px;
  }
}

/* ================= RESPONSIVE - MOBILE ================= */
@media (max-width: 768px) {
  .contact-banner-section {
    padding: 60px 24px;
    min-height: 400px;
  }
  
  .eagle-logo {
    width: 64px;
    height: 64px;
  }
  
  .banner-title {
    font-size: 36px;
  }
  
  .gold-highlight {
    font-size: 36px;
  }
  
  .banner-subtitle {
    font-size: 16px;
  }
  
  .banner-cta-btn {
    padding: 14px 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-banner-section {
    padding: 50px 20px;
    min-height: 380px;
  }
  
  .eagle-logo {
    width: 56px;
    height: 56px;
  }
  
  .banner-title {
    font-size: 32px;
  }
  
  .gold-highlight {
    font-size: 32px;
  }
  
  .banner-subtitle {
    font-size: 15px;
  }
  
  .banner-cta-btn {
    width: 100%;
    max-width: 300px;
  }
}
/* ================= FOOTER ================= */
.site-footer {
  display: flex;
  width: 100%;
  padding: 48px 120px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #000E26;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Footer Top */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.footer-description {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 350px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-heading {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact ul li a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact ul li a:hover {
  color: #DCB76D;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}

.footer-copyright p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Social Media Icons - HORIZONTAL */
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: white;
  transition: fill 0.3s ease;
}

.footer-social a:hover svg {
  fill: #000;
}
.footer-social a:hover {
  background: #DCB76D;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(220, 183, 109, 0.3);
}

.footer-social a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-social a:hover img {
  filter: brightness(0) invert(0);
}

/* Responsive Tablet */
@media (max-width: 1024px) {
  .site-footer {
    padding: 48px 60px;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 24px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    grid-column: 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  
  .footer-copyright {
    order: 2;
  }
  
  .footer-social {
    order: 1;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 32px 20px;
  }
  
  .footer-logo {
    height: 32px;
  }
  
  .footer-description {
    font-size: 13px;
  }
  
  .footer-heading {
    font-size: 15px;
  }
  
  .footer-contact ul li,
  .footer-contact ul li a {
    font-size: 13px;
  }
  
  .footer-copyright p {
    font-size: 12px;
  }
  
  .footer-social a {
    width: 36px;
    height: 36px;
  }
  
  .footer-social a img {
    width: 18px;
    height: 18px;
  }
}
/* ================= FEEDBACK MODALS (SUCCESS/ERROR) ================= */
.feedback-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10002; /* Higher than enquiry modal */
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.feedback-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.feedback-modal {
  display: flex;
  width: 398px;
  padding: 32px 72px;
  flex-direction: column;
  align-items: center;
  border-radius: 6px;
  background: #FFF;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

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

.feedback-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.feedback-close:hover {
  background: #f0f0f0;
  color: #000;
}

.feedback-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 24px;
}

.feedback-title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #141414;
  margin: 0 0 12px 0;
}

.feedback-message {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
  margin: 0 0 28px 0;
}

.feedback-btn {
  width: 100%;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-btn {
  background: #4CAF50;
  color: #fff;
}

.success-btn:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.error-btn {
  background: #f44336;
  color: #fff;
}

.error-btn:hover {
  background: #da190b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .feedback-modal {
    width: 90%;
    max-width: 398px;
    padding: 32px 40px;
  }
  
  .feedback-icon {
    width: 70px;
    height: 70px;
  }
  
  .feedback-title {
    font-size: 20px;
  }
  
  .feedback-message {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .feedback-modal {
    padding: 28px 32px;
  }
  
  .feedback-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .feedback-title {
    font-size: 18px;
  }
  
  .feedback-message {
    font-size: 12px;
    margin-bottom: 24px;
  }
}
