:root {
  --primary: #d6a63b;
  --primary-dark: #b88722;
  --secondary: #1f3b2c;
  --dark: #172033;
  --light: #f8fafc;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

/* GLOBAL */
.container-custom {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section-padding {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-title span,
.section-label {
  display: inline-block;
  color: var(--primary-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-title h2,
.big-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
}

.section-title p {
  margin-top: 12px;
  color: #64748b;
  line-height: 1.7;
}

/* TOP BAR */
.top-bar {
  background: var(--secondary);
  color: #fff;
  padding: 10px 0;
  border-radius: 0 0 30px 30px;
}

.top-bar i {
  color: var(--primary);
}

/* HEADER */
.main-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0;
}

.nav-link {
  color: #334155;
  position: relative;
  transition: 0.3s ease;
}

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

.nav-link::after {
  content: "";
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 999px;
  position: absolute;
  left: 0;
  bottom: -9px;
  transition: 0.3s ease;
}

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

.mobile-menu {
  width: min(1180px, 92%);
  margin: 15px auto 0;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.mobile-menu a {
  display: block;
  padding: 13px;
  font-weight: 700;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

/* BUTTONS */
.btn-primary,
.btn-outline,
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.35s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #f3c65d);
  color: #172033;
  padding: 12px 22px;
  box-shadow: 0 15px 30px rgba(214, 166, 59, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px rgba(214, 166, 59, 0.45);
}

.btn-primary.large {
  padding: 15px 28px;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--secondary);
  padding: 10px 20px;
}

.btn-outline:hover {
  background: var(--primary);
  color: #172033;
}

.btn-white {
  background: #fff;
  color: var(--secondary);
  padding: 14px 26px;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
}

/* HERO */
.hero-section {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(23, 32, 51, 0.72), rgba(31, 59, 44, 0.58)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(214, 166, 59, 0.18);
  border-radius: 50%;
  top: -180px;
  right: -160px;
  filter: blur(4px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(214,166,59,0.18), transparent 30%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

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

.hero-slider {
  background: #0f172a;
}

.hero-slider .hero-overlay {
  display: none;
}

.home-search-section {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-badge i {
  color: var(--primary);
}

.hero-title {
  margin-top: 26px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  font-weight: 950;
  color: #fff;
  letter-spacing: -2px;
}

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

.hero-text {
  margin-top: 24px;
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.8;
  max-width: 650px;
}

/* SEARCH BOX */
.search-box {
  position: relative;
  margin-top: 70px;
  background: #fff;
  padding: 22px;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
}

.field label {
  display: block;
  font-size: 12px;
  color: #64748b;
  font-weight: 800;
  margin-bottom: 8px;
}

.field input,
.field select {
  width: 100%;
  height: 52px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 16px;
  padding: 0 15px;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(214, 166, 59, 0.15);
}

.search-btn {
  margin-top: 21px;
  height: 52px;
  border-radius: 16px;
  background: var(--secondary);
  color: #fff;
  font-weight: 900;
  transition: 0.3s ease;
}

.search-btn:hover {
  background: var(--primary-dark);
  color: #172033;
}

/* PROPERTY CARD */
.property-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  transition: 0.35s ease;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.15);
}

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

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.property-card:hover .property-img img {
  transform: scale(1.1);
}

.tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary);
  color: #172033;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.tag.rent {
  background: var(--secondary);
  color: #fff;
}

.property-card h3 {
  color: var(--dark);
  font-weight: 900;
  font-size: 21px;
  margin-top: 8px;
}

.location {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: #64748b;
  font-size: 13px;
}

.features i {
  color: var(--primary-dark);
}

.price {
  color: var(--secondary);
  font-size: 17px;
}

.view-link {
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 14px;
}

/* CATEGORIES */
.category-section {
  padding: 90px 0;
  background:
    linear-gradient(rgba(248,250,252,0.94), rgba(248,250,252,0.94)),
    url("https://images.unsplash.com/photo-1600585153490-76fb20a32601?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.category-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  background: var(--secondary);
}

.category-card i {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(214, 166, 59, 0.15);
  color: var(--primary-dark);
  border-radius: 24px;
  font-size: 32px;
  margin-bottom: 20px;
  transition: 0.35s ease;
}

.category-card h3 {
  color: var(--dark);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 10px;
}

.category-card p {
  color: #64748b;
  line-height: 1.7;
}

.category-card:hover i {
  background: var(--primary);
  color: var(--dark);
}

.category-card:hover h3,
.category-card:hover p {
  color: #fff;
}

/* ABOUT */
.about-images {
  position: relative;
  min-height: 520px;
}

.about-images img {
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.18);
}

.about-video {
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.18);
  display: block;
}

.img-main {
  width: 78%;
  height: 430px;
}

.img-small {
  width: 48%;
  height: 260px;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 10px solid #fff;
}

.experience-box {
  position: absolute;
  left: 35px;
  bottom: 35px;
  background: var(--secondary);
  color: #fff;
  padding: 25px;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
}

.experience-box strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  color: var(--primary);
}

.experience-box span {
  font-weight: 800;
  font-size: 14px;
}

.mini-feature {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.mini-feature i {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(214, 166, 59, 0.15);
  color: var(--primary-dark);
  border-radius: 16px;
  font-size: 20px;
}

.mini-feature h4 {
  color: var(--dark);
  font-weight: 900;
}

.mini-feature p {
  font-size: 14px;
  color: #64748b;
  margin-top: 5px;
}

/* CITY */
.city-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  height: 320px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.13);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.city-card:hover img {
  transform: scale(1.12);
}

.city-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
}

.city-card div {
  position: absolute;
  z-index: 2;
  left: 25px;
  bottom: 25px;
  color: #fff;
}

.city-card h3 {
  font-size: 24px;
  font-weight: 900;
}

.city-card p {
  color: #e2e8f0;
  margin-top: 5px;
}

/* STATS */
.stats-section {
  padding: 80px 0;
  background:
    linear-gradient(rgba(31,59,44,0.92), rgba(31,59,44,0.92)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
  color: #fff;
}

.stat-item {
  padding: 25px;
}

.stat-item i {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 18px;
}

.stat-item strong {
  display: block;
  font-size: 44px;
  font-weight: 950;
}

.stat-item span {
  color: #e2e8f0;
  font-weight: 700;
}

/* SERVICES */
.service-card {
  background: #fff;
  padding: 35px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
  border: 1px solid #f1f5f9;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(214, 166, 59, 0.45);
}

.service-card i {
  width: 70px;
  height: 70px;
  background: var(--secondary);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  font-size: 28px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  color: #64748b;
  line-height: 1.8;
}

/* CTA */
.cta-section {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(120deg, rgba(23,32,51,0.84), rgba(31,59,44,0.82)),
    url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
}

.cta-section h2 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
  margin-top: 25px;
}

.cta-section p {
  color: #e2e8f0;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.8;
}

/* FOOTER */
.footer {
  background: #111827;
  color: #cbd5e1;
  padding-top: 80px;
}

.footer h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 24px;
}

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

.footer ul li a {
  transition: 0.3s ease;
}

.footer ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-list i {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  color: #111827;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  margin-top: 60px;
  padding: 22px;
  color: #94a3b8;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 80;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.4);
  animation: pulseWhatsApp 1.8s infinite;
}

/* ANIMATIONS */
.animate-up,
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: all 0.9s ease;
}

.animate-up.show,
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-float {
  animation: floatBox 4s ease-in-out infinite;
}

@keyframes floatBox {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-section {
    min-height: 900px;
    padding: 90px 0;
  }

  .search-box {
    margin-top: 45px;
  }

  .search-btn {
    margin-top: 0;
  }

  .about-images {
    min-height: 430px;
  }

  .img-main {
    width: 100%;
    height: 330px;
  }

  .img-small {
    width: 60%;
    height: 190px;
  }

  .experience-box {
    left: 15px;
    bottom: 20px;
  }

  .section-padding,
  .category-section {
    padding: 70px 0;
  }
}

/* PAGE HERO */
.page-hero {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.properties-hero {
  background:
    linear-gradient(120deg, rgba(23,32,51,0.78), rgba(31,59,44,0.72)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(214,166,59,0.25), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.13), transparent 28%);
}

.page-title {
  margin-top: 25px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -1px;
}

.page-text {
  max-width: 720px;
  margin: 22px auto 0;
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.8;
}

/* PROPERTY FILTER */
.property-search-section {
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.property-filter-box {
  background: #fff;
  padding: 24px;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.16);
}

/* FILTER BUTTONS */
.filter-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-weight: 800;
  border: 1px solid #e2e8f0;
  transition: 0.3s ease;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

/* PROPERTY DESCRIPTION */
.property-desc {
  margin-top: 16px;
  color: #64748b;
  line-height: 1.7;
  font-size: 14px;
}

/* PAGINATION */
.pagination-custom {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 55px;
}

.page-btn {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--dark);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-4px);
}

/* PROPERTY SIDE IMAGE */
.property-side-image {
  position: relative;
}

.property-side-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.side-card {
  position: absolute;
  left: 35px;
  bottom: 35px;
  right: 35px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.side-card i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--secondary);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.side-card strong {
  display: block;
  color: var(--dark);
  font-weight: 900;
}

.side-card span {
  display: block;
  color: #64748b;
  font-size: 14px;
  margin-top: 4px;
}

/* RESPONSIVE PROPERTY PAGE */
@media (max-width: 768px) {
  .page-hero {
    min-height: 380px;
    padding: 80px 0;
  }

  .property-search-section {
    margin-top: -35px;
  }

  .property-side-image img {
    height: 420px;
  }

  .side-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

/* SERVICES PAGE */
.services-hero {
  background:
    linear-gradient(120deg, rgba(23,32,51,0.80), rgba(31,59,44,0.74)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.services-intro-image {
  position: relative;
}

.services-intro-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.services-intro-card {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 35px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.services-intro-card i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--secondary);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.services-intro-card strong {
  display: block;
  color: var(--dark);
  font-weight: 900;
}

.services-intro-card span {
  display: block;
  color: #64748b;
  font-size: 14px;
  margin-top: 4px;
}

/* SERVICES FULL SECTION */
.services-full-section {
  padding: 90px 0;
  background:
    linear-gradient(rgba(248,250,252,0.95), rgba(248,250,252,0.95)),
    url("https://images.unsplash.com/photo-1600585153490-76fb20a32601?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.service-detail-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid #f1f5f9;
  transition: 0.35s ease;
}

.service-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.14);
}

.service-detail-img {
  height: 230px;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

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

.service-detail-content {
  position: relative;
  padding: 42px 28px 30px;
}

.service-icon {
  position: absolute;
  top: -35px;
  left: 28px;
  width: 70px;
  height: 70px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.18);
}

.service-detail-content h3 {
  color: var(--dark);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}

.service-detail-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 18px;
}

.service-detail-content ul {
  display: grid;
  gap: 10px;
}

.service-detail-content li {
  color: #475569;
  font-weight: 700;
  font-size: 14px;
}

.service-detail-content li i {
  color: var(--primary-dark);
  margin-right: 8px;
}

/* PROCESS */
.process-card {
  position: relative;
  background: #fff;
  padding: 36px 26px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid #f1f5f9;
  transition: 0.35s ease;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  background: rgba(214, 166, 59, 0.13);
  border-radius: 50%;
  right: -35px;
  top: -35px;
}

.process-card:hover {
  transform: translateY(-10px);
  background: var(--secondary);
}

.process-card span {
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(214, 166, 59, 0.35);
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
}

.process-card i {
  width: 68px;
  height: 68px;
  background: rgba(214, 166, 59, 0.16);
  color: var(--primary-dark);
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: 0.35s ease;
}

.process-card h3 {
  color: var(--dark);
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 12px;
  transition: 0.35s ease;
}

.process-card p {
  color: #64748b;
  line-height: 1.8;
  transition: 0.35s ease;
}

.process-card:hover i {
  background: var(--primary);
  color: var(--dark);
}

.process-card:hover h3,
.process-card:hover p {
  color: #fff;
}

/* WHY SERVICES */
.service-large-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.why-service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  padding: 22px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #f1f5f9;
}

.why-service-item i {
  color: var(--primary-dark);
  font-size: 24px;
  margin-top: 4px;
}

.why-service-item h4 {
  color: var(--dark);
  font-weight: 900;
  font-size: 18px;
}

.why-service-item p {
  color: #64748b;
  margin-top: 6px;
  line-height: 1.7;
}

/* RESPONSIVE SERVICES PAGE */
@media (max-width: 768px) {
  .services-intro-image img,
  .service-large-image img {
    height: 420px;
  }

  .services-intro-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .services-full-section {
    padding: 70px 0;
  }
}

/* ABOUT PAGE */
.about-hero {
  background:
    linear-gradient(120deg, rgba(23,32,51,0.80), rgba(31,59,44,0.74)),
    url("https://images.unsplash.com/photo-1600607687644-c7171b42498b?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.about-page-images {
  position: relative;
  min-height: 570px;
}

.about-page-images img {
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.about-page-video {
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
  display: block;
}

.about-page-main {
  width: 82%;
  height: 470px;
  border-radius: 34px;
}

.about-page-small {
  position: absolute;
  right: 0;
  bottom: 35px;
  width: 48%;
  height: 260px;
  border-radius: 28px;
  border: 10px solid #fff;
}

.about-floating-card {
  position: absolute;
  left: 35px;
  bottom: 0;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.about-floating-card i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--secondary);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.about-floating-card strong {
  display: block;
  color: var(--dark);
  font-weight: 900;
}

.about-floating-card span {
  display: block;
  color: #64748b;
  font-size: 14px;
  margin-top: 4px;
}

/* ABOUT VALUES */
.about-values-section {
  padding: 90px 0;
  background:
    linear-gradient(rgba(248,250,252,0.95), rgba(248,250,252,0.95)),
    url("https://images.unsplash.com/photo-1600585153490-76fb20a32601?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.about-value-card {
  background: #fff;
  padding: 38px 30px;
  border-radius: 30px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  text-align: center;
  transition: 0.35s ease;
  border: 1px solid #f1f5f9;
}

.about-value-card:hover {
  transform: translateY(-10px);
  background: var(--secondary);
}

.about-value-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 24px;
  background: rgba(214, 166, 59, 0.16);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: 0.35s ease;
}

.about-value-card h3 {
  color: var(--dark);
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 14px;
  transition: 0.35s ease;
}

.about-value-card p {
  color: #64748b;
  line-height: 1.8;
  transition: 0.35s ease;
}

.about-value-card:hover .about-value-icon {
  background: var(--primary);
  color: var(--dark);
}

.about-value-card:hover h3,
.about-value-card:hover p {
  color: #fff;
}

/* ABOUT CHECK */
.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  transition: 0.35s ease;
}

.about-check-item:hover {
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transform: translateX(6px);
}

.about-check-item i {
  color: var(--primary-dark);
  font-size: 24px;
  margin-top: 4px;
}

.about-check-item h4 {
  color: var(--dark);
  font-weight: 900;
  font-size: 18px;
}

.about-check-item p {
  color: #64748b;
  margin-top: 6px;
  line-height: 1.7;
}

/* ABOUT GALLERY */
.about-side-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  transition: 0.35s ease;
}

.about-side-gallery img:hover {
  transform: translateY(-8px);
}

.gallery-big img {
  height: 360px;
}

.about-side-gallery .grid img {
  height: 210px;
}

/* ABOUT STATS */
.about-stats-section {
  padding: 80px 0;
  background:
    linear-gradient(rgba(31,59,44,0.93), rgba(31,59,44,0.93)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
  color: #fff;
}

/* TEAM */
.team-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
  border: 1px solid #f1f5f9;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.14);
}

.team-img {
  height: 330px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.08);
}

.team-content {
  padding: 28px;
  text-align: center;
}

.team-content h3 {
  color: var(--dark);
  font-size: 22px;
  font-weight: 900;
}

.team-content p {
  color: #64748b;
  margin-top: 10px;
  line-height: 1.7;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.team-social a {
  width: 42px;
  height: 42px;
  background: rgba(214, 166, 59, 0.15);
  color: var(--primary-dark);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.team-social a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-4px);
}

/* RESPONSIVE ABOUT PAGE */
@media (max-width: 768px) {
  .about-page-images {
    min-height: 470px;
  }

  .about-page-main {
    width: 100%;
    height: 330px;
  }

  .about-page-small {
    width: 62%;
    height: 190px;
    bottom: 35px;
  }

  .about-floating-card {
    left: 18px;
    right: 18px;
    bottom: 0;
  }

  .about-values-section {
    padding: 70px 0;
  }

  .gallery-big img {
    height: 290px;
  }

  .about-side-gallery .grid img {
    height: 170px;
  }

  .team-img {
    height: 290px;
  }
}

/* CONTACT PAGE */
.contact-hero {
  background:
    linear-gradient(120deg, rgba(23,32,51,0.80), rgba(31,59,44,0.74)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

/* CONTACT INFO */
.contact-info-section {
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.contact-info-card {
  background: #fff;
  padding: 30px 22px;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
  text-align: center;
  border: 1px solid #f1f5f9;
  transition: 0.35s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  background: var(--secondary);
}

.contact-info-card i {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: rgba(214, 166, 59, 0.16);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  transition: 0.35s ease;
}

.contact-info-card h3 {
  color: var(--dark);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
  transition: 0.35s ease;
}

.contact-info-card p {
  color: #64748b;
  font-weight: 700;
  transition: 0.35s ease;
}

.contact-info-card:hover i {
  background: var(--primary);
  color: var(--dark);
}

.contact-info-card:hover h3,
.contact-info-card:hover p {
  color: #fff;
}

/* CONTACT FORM */
.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 34px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
  border: 1px solid #f1f5f9;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-field label {
  display: block;
  font-size: 13px;
  color: #334155;
  font-weight: 900;
  margin-bottom: 9px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 18px;
  padding: 15px 17px;
  outline: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.contact-field input,
.contact-field select {
  height: 56px;
}

.contact-field textarea {
  resize: none;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(214, 166, 59, 0.14);
}

/* CONTACT SIDE */
.contact-side-image {
  position: relative;
}

.contact-side-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.contact-floating-box {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 35px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.contact-floating-box i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--secondary);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-floating-box strong {
  display: block;
  color: var(--dark);
  font-weight: 900;
}

.contact-floating-box span {
  display: block;
  color: #64748b;
  font-size: 14px;
  margin-top: 4px;
}

/* DIRECT CONTACT BOX */
.contact-direct-box {
  background: var(--secondary);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.contact-direct-box h3 {
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 22px;
}

.contact-direct-box a {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 16px;
  border-radius: 18px;
  font-weight: 800;
  margin-bottom: 14px;
  transition: 0.3s ease;
}

.contact-direct-box a:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateX(6px);
}

.contact-direct-box i {
  font-size: 20px;
}

/* MAP */
.map-section {
  padding: 90px 0;
  background:
    linear-gradient(rgba(248,250,252,0.95), rgba(248,250,252,0.95)),
    url("https://images.unsplash.com/photo-1600585153490-76fb20a32601?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.map-box {
  margin-top: 45px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
  border: 10px solid #fff;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 26px;
  transition: 0.35s ease;
}

.faq-item:hover {
  background: #fff;
  transform: translateX(6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.faq-item h3 {
  color: var(--dark);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.faq-item h3 i {
  color: var(--primary-dark);
}

.faq-item p {
  color: #64748b;
  line-height: 1.8;
}

/* RESPONSIVE CONTACT PAGE */
@media (max-width: 768px) {
  .contact-info-section {
    margin-top: -35px;
  }

  .contact-form-box {
    padding: 28px;
  }

  .contact-side-image img {
    height: 420px;
  }

  .contact-floating-box {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .map-section {
    padding: 70px 0;
  }

  .map-box iframe {
    height: 360px;
  }
}
