:root {
  --gold: #E7C873;
  --gold-light: #F0DBA7;
  --gold-dark: #D9B04C;
  --dark-bg: #f8f9fa;
  --card-bg: #ffffff;
  --text-light: #1e1e1e;
  --text-primary: #E7C873;
  --dark: #1a2530;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --transition: all 0.3s ease;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.section-subtitle,
.step-title,
.step-desc,
.testimonial-text,
.client-name,
.contact-item h3,
.tagline,
.portfolio-card .overlay-content h4,
.portfolio-card .overlay-content p {
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
}

/* Gold text utility class */
.text-gold {
  color: var(--gold);
}

/* Buttons */
.btn-gold {
  background-color: #E7C873;
  color: white;
  border: none;
}

.btn-gold:hover {
  background-color: #E7C873;
}

/* General Navbar */
#navbar {
  transition: background-color 0.6s, box-shadow 0.3s;
  background-color: transparent;
  z-index: 999;
  padding: 0.75rem 1.5rem;
}

#navbar.scrolled {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Nav links */
.navbar .nav-link {
  color: rgb(255, 157, 0);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
  font-size: 15px;
  padding: 10px 14px;
  line-height: 1.4;
  vertical-align: middle;
}

#navbar.scrolled .nav-link {
  color: #000;
}

.navbar .nav-link.active {
  font-weight: 500;
  color: var(--gold, rgb(255, 157, 0));
}

/* Dropdown arrow */
.navbar .nav-link.dropdown-toggle::after {
  border-top-color: rgb(255, 157, 0);
  margin-left: 6px;
}

/* Dropdown menu styling */
.navbar .dropdown-menu {
  background-color: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  min-width: 240px;
  transition: all 0.3s ease-in-out;
}

.navbar .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  color: rgb(255, 157, 0);
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: rgb(255, 243, 220);
  color: #000;
  font-weight: 600;
  border-left: 4px solid rgb(255, 157, 0);
}

/* Scrolled dropdown */
#navbar.scrolled .dropdown-menu .dropdown-item {
  color: #000;
}

#navbar.scrolled .dropdown-menu .dropdown-item:hover {
  background-color: rgb(255, 236, 202);
  color: rgb(255, 157, 0);
}

/* Dropdown animation */
.dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.show > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Contact Us Button */
.contact-btn {
  background-color: rgb(255, 223, 128);
  color: #000;
  font-weight: 600;
  border: none;
  padding: 12px 12px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  height: 60px;
  line-height: 1.2;
  margin-left: 16px;
  transition: background-color 0.3s ease;
}

.contact-btn i {
  font-size: 18px;
  margin-bottom: 2px;
  color: #000;
}

.contact-btn:hover {
  background-color: rgb(255, 200, 100);
}

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

.navbar .nav-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Mobile Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #fff;
    border-radius: 0 0 12px 12px;
    padding: 1rem;
  }

  .navbar .nav-link,
  .navbar .dropdown-menu .dropdown-item {
    color: #000 !important;
    font-size: 16px;
  }

  .navbar .dropdown-menu {
    box-shadow: none;
    border-radius: 0;
    padding-left: 1rem;
  }

  .navbar .dropdown-menu .dropdown-item {
    padding: 8px 0;
    border-left: 3px solid transparent;
  }

  .navbar .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    color: rgb(255, 157, 0);
    border-left-color: rgb(255, 157, 0);
  }

  .contact-btn {
    width: 100%;
    margin: 10px 0 0 0;
    height: auto;
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
  }
}

/* Hero Section - Refined */
.hero {
  height: 100vh;
  min-height: 500px;
  /* Prevent content squishing */
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    /* Dark overlay for text contrast */
    url('/Interior-pages/Assets/Hero/Hero-Image.png') no-repeat center center/cover;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 5%;
  isolation: isolate;
  /* Contain pseudo-element */
}

.hero-content {
  max-width: 650px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  /* Responsive font size */
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* Better contrast */
}

.hero-content p {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 85%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: 50px;
  /* Rounded buttons */
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: #222;
  border: 2px solid var(--gold);
}

.btn-secondary {
  background: linear-gradient(rgba(248, 129, 3, 0.938), rgba(0, 0, 0, 0.6));
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Hover effects */
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* Values Section */
.our-values {
  background-color: #fff;
  color: #444;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #b59d5c50;
  display: inline-block;
}

.value-card {
  transition: transform 0.3s ease;
  padding: 15px;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-label {
  background: linear-gradient(to right, #eeb50a, #b59d5c);
  padding: 10px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--gold);
  /* Changed to gold */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
  pointer-events: none;
  z-index: 0;
}

/* Shared Container and Title Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 1;
}

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

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.text-gold {
  color: var(--gold);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-primary);
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  /* Clean and consistent spacing between cards */
  margin-top: 2rem;
}


/* Services Column */
.services-col {
  flex: 0 0 30%;
  max-width: 60%;
  display: flex;
  justify-content: center;
}

/* Services Card */
.services-card {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  height: 350px;
  width: 350px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
  background: var(--card-bg);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.services-card:hover {
  transform: translateY(-15px) rotateX(3deg) rotateY(2deg);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3),
    0 0 50px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.services-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  filter: grayscale(20%) brightness(0.9);
}

.services-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(0.7);
}

/* Overlay Box */
.overlay-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 85%;
  background: var(--overlay-bg);
  border: 2px solid var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.6s ease;
  padding: 25px;
  box-sizing: border-box;
  box-shadow: 0 0 30px rgba(15, 15, 15, 0.737);
}

.services-card:hover .overlay-box {
  opacity: 1;
}

/* Overlay content */
.overlay-content {
  text-align: center;
  width: 100%;
  padding: 15px;
  transform: translateY(20px);
  transition: transform 0.6s ease;
}

.services-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.overlay-content h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.overlay-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-primary);
}

/* Decorative elements */
.decorative-corner {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid var(--gold);
}

.corner-tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.corner-bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

.corner-br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

/* Overlay Modal */
.services-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.services-overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay-content-modal {
  background: var(--overlay-bg);
  border: 2px solid var(--gold);
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
  padding: 30px;
  position: relative;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .services-col {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (max-width: 768px) {
  .services-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .services-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Portfolio Section */
.portfolio-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.portfolio-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 1;
}

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

/* Section Title */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  /* Changed to gold */
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.text-gold {
  color: var(--gold);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-primary);
  /* Changed to gold */
  line-height: 1.7;
}

/* Portfolio Grid */
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 140px;
  margin-top: 2rem;
}

.portfolio-col {
  flex: 0 0 calc(25% - 30px);
  max-width: calc(25% - 30px);
}

/* Portfolio Card */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  height: 350px;
  width: 350px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
  background: var(--card-bg);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.portfolio-card:hover {
  transform: translateY(-15px) rotateX(3deg) rotateY(2deg);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3),
    0 0 50px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  filter: grayscale(20%) brightness(0.9);
}

.portfolio-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(0.7);
}

/* Overlay Box */
.overlay-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 85%;
  background: var(--overlay-bg);
  border: 2px solid var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.6s ease;
  padding: 25px;
  box-sizing: border-box;
  box-shadow: 0 0 30px rgba(15, 15, 15, 0.737);
}

.portfolio-card:hover .overlay-box {
  opacity: 1;
}

/* Overlay content */
.overlay-content {
  text-align: center;
  width: 100%;
  padding: 15px;
  transform: translateY(20px);
  transition: transform 0.6s ease;
}

.portfolio-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--text-primary);
  /* Changed to gold */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.overlay-content h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.overlay-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-primary);
  /* Changed to gold */
}

.btn-learn {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

.btn-learn:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

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

/* Decorative elements */
.decorative-corner {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid var(--gold);
}

.corner-tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.corner-bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

.corner-br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

/* Category Filter */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border-color: var(--gold);
}

/* Overlay Modal */
.portfolio-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.portfolio-overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay-content-modal {
  background: var(--overlay-bg);
  border: 2px solid var(--gold);
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
  padding: 30px;
  position: relative;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-btn:hover {
  color: var(--gold);
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .portfolio-col {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
  }
}

@media (max-width: 768px) {
  .portfolio-col {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }

  .portfolio-card {
    height: 300px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .portfolio-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .portfolio-card {
    height: 280px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .portfolio-filter {
    gap: 10px;
  }

  .filter-btn {
    padding: 6px 15px;
    font-size: 0.85rem;
  }
}

/* Process Section */
.process-section {
  position: relative;
  padding: 100px 0;
  background: var(--light);
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 25%);
  pointer-events: none;
  z-index: 0;
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 2.5rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "✦";
  color: var(--gold);
  margin: 0 15px;
  font-size: 1.2rem;
  position: relative;
  top: -3px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 3rem;
}

.step-card {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  background: white;
  border-radius: 15px;
  padding: 35px 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
  z-index: 1;
}

.step-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
  z-index: -1;
  transition: var(--transition);
}

.step-card:hover .step-number {
  color: rgba(212, 175, 55, 0.15);
  transform: scale(1.1);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}

.step-card:hover .step-icon {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1);
}

.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
  position: relative;
  padding-bottom: 10px;
}

.step-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.step-card:hover .step-title::after {
  width: 80px;
}

.step-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}

.section-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--gray);
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 5rem;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
  z-index: -1;
  transition: var(--transition);
}

.testimonial-card:hover .quote-icon {
  color: rgba(212, 175, 55, 0.15);
  transform: scale(1.05);
}

.rating {
  display: flex;
  margin-bottom: 20px;
}

.rating i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-right: 3px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--gray);
  position: relative;
  padding-left: 20px;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 20px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--gold);
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

.client-position {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.nav-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.decorative-corner {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid var(--gold);
  opacity: 0.3;
}

.corner-tl {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  top: 15px;
  right: 15px;
  border-left: none;
  border-bottom: none;
}

.corner-bl {
  bottom: 15px;
  left: 15px;
  border-right: none;
  border-top: none;
}

.corner-br {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
}

/* Contact Section */
.contact-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(247, 247, 247, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=2070&auto=format&fit=crop') center/cover;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 50px;
  font-weight: 400;
}

.contact-container {
  display: flex;
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.contact-form {
  flex: 1;
  padding: 60px;
  background: var(--card-bg);
}

.contact-info {
  flex: 1;
  padding: 60px;
  background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(231, 200, 115, 0.1);
}

.contact-info::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(231, 200, 115, 0.05);
}

.form-group {
  margin-bottom: 28px;
  position: relative;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--dark);
  font-size: 1.05rem;
}

input,
textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(231, 200, 115, 0.2);
  outline: none;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.optional {
  color: var(--gray);
  font-weight: 400;
  font-size: 0.9rem;
}

.info-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: white;
  position: relative;
  padding-bottom: 20px;
  z-index: 2;
}

.info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 3px;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
  position: relative;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contact-icon {
  background: var(--gold);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-icon i {
  font-size: 1.4rem;
  color: white;
}

.contact-details h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: white;
}

.contact-details p {
  font-size: 1.1rem;
  color: #ecf0f1;
}

.hours {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer */
footer {
  background: linear-gradient(to right, #1a2530, #2c3e50);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 20px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.footer-title {
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.footer-logo img {
  width: 50px;
  margin-right: 15px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.footer p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: block;
  padding: 5px 0;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.contact-info-item {
  display: flex;
  margin-bottom: 18px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(231, 200, 115, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--gold);
}

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

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1100px) {

  .contact-form,
  .contact-info {
    padding: 50px;
  }
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form {
    border-bottom: 1px solid var(--light-gray);
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 100px 0 60px;
  }

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

  .section-subtitle {
    font-size: 1.2rem;
  }

  .contact-form,
  .contact-info {
    padding: 40px;
  }

  .info-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {

  .contact-form,
  .contact-info {
    padding: 30px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-title::after {
    width: 60px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    margin-right: 15px;
  }

  .contact-details h3 {
    font-size: 1.2rem;
  }
}