:root {
  --gold: #8B9056;
  --gold-dark: #727848;
  --dark: #8B9056;
  --dark-mid: #727848;
  --bg-light: #f0f1e8;
  --bg-mid: #e4e6d6;
  --text-dark: #2d3020;
  --text-mid: #5a5e3a;
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

button {
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}

.tag {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: "Poppins", sans-serif;
}

.btn.primary {
  background: linear-gradient(135deg, #c9a14a, #e0ba65);
  color: #1a1508;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #b08a35, #c9a14a);
  transform: translateY(-2px);
}

.btn.outline {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn.outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #c9a14a, #e0ba65);
  color: #1a1508;
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #b08a35, #c9a14a);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  font-family: "Poppins", sans-serif;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-btn {
  background: linear-gradient(135deg, #c9a14a, #e0ba65);
  color: #1a1508;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #b08a35, #c9a14a);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
  z-index: 1000;
  background: rgba(60, 64, 36, 0.55);
  backdrop-filter: blur(14px);
  transition: background 0.4s;
}

.navbar.scrolled {
  background: rgba(60, 64, 36, 0.92);
}

.logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 6px 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
  transition: 0.25s;
  font-weight: 400;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}

.hero {
  height: 92vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroZoom 8s ease-out forwards;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(45, 48, 32, 0.72) 40%,
      rgba(45, 48, 32, 0.32));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 760px;
}

.hero-content .location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero-content .location::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-content h1 {
  font-size: 62px;
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content .desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1);
  }
}

.hero-tag-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-tag-wrap .gold-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-tag-wrap .tag {
  margin: 0;
  font-size: 11px;
}

#hero-section .hero-content h1,
#hero-section .hero-content #hero-title {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

#hero-section .hero-content #hero-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#hero-section .hero-content #hero-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

#hero-section .hero-content #hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 500px;
}

#hero-section .hero {
  height: 60vh;
  min-height: 420px;
}

.stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--dark);
  padding: 14px 8%;
  gap: 20px;
}

.stats>div {
  text-align: center;
}

.stats h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.stats>div>span,
.stats>div:not(:has(h3)) {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stats span {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.sub-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  background: var(--dark-mid);
  padding: 14px 8%;
  flex-wrap: wrap;
}

.sub-stats span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.services-section {
  padding: 90px 8%;
  background: var(--bg-light);
  text-align: center;
}

.services-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
}

.services-header p {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}

.services-header .line {
  width: 50px;
  height: 1px;
  background: var(--gold);
}

.services-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.service-card {
  display: flex;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.06);
  text-align: left;
  min-height: 380px;
}

.service-left {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-left .small {
  font-size: 11px;
  letter-spacing: 2px;
  color: #aaa;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-left h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.service-left .desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-left .btn {
  align-self: flex-start;
  background: linear-gradient(135deg, #c9a14a, #e0ba65);
  color: #1a1508;
}

.dots {
  margin-top: 28px;
  display: flex;
  gap: 8px;
}

.dots span {
  width: 24px;
  height: 3px;
  background: #ddd;
  border-radius: 2px;
  display: inline-block;
}

.dots span.active {
  background: var(--gold);
  width: 36px;
}

.service-right {
  flex: 1;
  min-height: 380px;
  overflow: hidden;
}

.service-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-right:hover img {
  transform: scale(1.04);
}

.room-section {
  padding: 90px 8%;
  background: #fff;
}

.room-section .tag {
  margin-bottom: 6px;
}

.room-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 44px;
  letter-spacing: -0.5px;
}

.room-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.room-image {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.room-content {
  flex: 1;
}

.room-content .small {
  font-size: 11px;
  letter-spacing: 2px;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.room-content h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.room-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 26px;
}

.room-content .btn {
  background: linear-gradient(135deg, #c9a14a, #e0ba65);
  color: #1a1508;
  margin-bottom: 30px;
}

.thumbs {
  display: flex;
  gap: 10px;
}

.thumbs img {
  width: 72px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
  border: 2px solid transparent;
}

.thumbs img:hover,
.thumbs img.active {
  opacity: 1;
  border-color: var(--gold);
}

.experience-section {
  padding: 90px 8%;
  background: var(--bg-light);
  text-align: center;
}

.experience-section .tag {
  margin-bottom: 6px;
}

.experience-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exp-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.exp-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.exp-card span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.6;
}

.exp-card p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.excellence-section {
  background: var(--dark);
  padding: 90px 8%;
}

.excellence-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ex-left {
  flex: 1;
}

.ex-left .tag {
  margin-bottom: 8px;
}

.ex-left h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.ex-left .desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-bottom: 38px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 22px 20px;
}

.feature-box h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.feature-box p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.ex-right {
  flex: 1;
  position: relative;
}

.ex-right img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
}

.badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: #1a1508;
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
}

.badge h3 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.badge p {
  font-size: 11px;
  font-weight: 500;
  margin-top: 3px;
}

.clarity-section {
  padding: 90px 8%;
  background: var(--bg-light);
  text-align: center;
}

.clarity-section .tag {
  margin-bottom: 6px;
}

.clarity-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.clarity-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
}

.clarity-item {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 22px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s;
}

.clarity-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.clarity-item .icon {
  width: 52px;
  height: 52px;
  background: rgba(139, 144, 86, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 18px;
  color: var(--gold);
}

.clarity-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.clarity-item p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
}

.testimonial-section {
  background: var(--dark);
  padding: 90px 8%;
  text-align: center;
}

.testimonial-section .tag {
  margin-bottom: 6px;
}

.testimonial-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.testimonial-container {
  max-width: 680px;
  margin: 0 auto 30px;
  min-height: 130px;
  position: relative;
}

.testimonial {
  display: none;
  animation: fadeUp 0.5s ease;
}

.testimonial.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial h4 {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
}

.test-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.test-dots span {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
}

.test-dots span.active {
  background: var(--gold);
  width: 40px;
}

.insight-section {
  padding: 90px 8%;
  background: var(--bg-light);
}

.insight-section .tag {
  margin-bottom: 6px;
}

.insight-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 44px;
  letter-spacing: -0.5px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.insight-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.insight-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.insight-card .category {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.insight-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.insight-card .desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.insight-card .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.insight-card .bottom span {
  font-size: 11px;
  color: #aaa;
}

.insight-card .bottom a {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.view-all {
  text-align: center;
}

.view-all .btn {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 12px 30px;
}

.view-all .btn:hover {
  background: var(--gold);
  color: #fff;
}

.cta-section {
  background: var(--dark);
  padding: 80px 8%;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.cta-box p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-box .btn {
  background: linear-gradient(135deg, #c9a14a, #e0ba65);
  color: #1a1508;
  font-weight: 600;
}

.footer {
  background: #8B9056;
  color: #fff;
  padding: 60px 8% 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-col>p,
.footer-col .footer-contact p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 8px;
  font-weight: 400;
  display: block;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: 0.25s;
  font-weight: 400;
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.cities,
.footer-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cities span,
.footer-tags span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  transition: 0.25s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  margin-top: 12px;
}

.footer-contact p {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.about-story {
  padding: 90px 8%;
  display: flex;
  gap: 60px;
  align-items: center;
  background: #fff;
}

.story-left {
  flex: 1;
}

.story-left .tag {
  margin-bottom: 10px;
}

.story-left h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.story-left p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 30px;
}

.story-right {
  flex: 1;
  position: relative;
}

.story-right img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.story-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: #1a1508;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
}

.values-section {
  padding: 80px 8%;
  background: var(--bg-light);
  text-align: center;
}

.values-section .tag {
  margin-bottom: 6px;
}

.values-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.value-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.value-card span {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 14px;
  line-height: 1;
}

.value-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

.team {
  padding: 80px 8%;
  background: #fff;
  text-align: center;
}

.team .tag {
  margin-bottom: 6px;
}

.team h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-card h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 18px 18px;
  background: linear-gradient(transparent, rgba(58, 63, 49, 0.82));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.what-cta {
  display: flex;
  gap: 0;
  background: var(--bg-light);
}

.capabilities {
  flex: 1;
  padding: 70px 8%;
}

.capabilities .tag {
  margin-bottom: 8px;
}

.capabilities h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.3px;
}

.cap-list p {
  font-size: 14px;
  color: var(--text-mid);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cap-list p::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}

.cta-box-dark {
  flex: 1;
  background: var(--dark);
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-box-dark h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.cta-box-dark p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}

.project-cta {
  padding: 60px 8%;
  background: var(--bg-mid);
  text-align: center;
}

.project-cta h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-cta p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.services-main {
  padding: 70px 8%;
  background: var(--bg-light);
}

.service-row {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-img {
  flex: 1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.service-img span {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: #1a1508;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.service-text>p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}

.points {
  margin-bottom: 28px;
}

.points p {
  font-size: 13px;
  color: var(--text-mid);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.final-cta {
  padding: 80px 8%;
  background: var(--dark);
  text-align: center;
}

.final-cta .small-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.final-cta h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.final-cta .desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.cta-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 36px;
  text-align: left;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.cta-bottom h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cta-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.explore {
  padding: 80px 8%;
  background: #fff;
}

.explore .small-title {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.explore h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}

.explore-box {
  display: flex;
  gap: 50px;
  align-items: center;
}

.explore-img {
  flex: 1.1;
  border-radius: var(--radius);
  overflow: hidden;
}

.explore-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.explore-content {
  flex: 1;
}

.explore-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.explore-content>p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}

.explore-content ul {
  list-style: none;
  margin-bottom: 28px;
}

.explore-content ul li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.browse {
  padding: 80px 8%;
  background: var(--bg-light);
}

.browse h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid .card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.grid .card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}

.grid .card:hover img {
  transform: scale(1.06);
}

.grid .card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 18px 16px;
  background: linear-gradient(transparent, rgba(58, 63, 49, 0.8));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.cta-dark {
  padding: 80px 8%;
  background: var(--dark);
  text-align: center;
}

.cta-dark h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-dark p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-light {
  background: var(--bg-mid);
  padding: 36px 8%;
}

.cta-flex {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-flex h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cta-flex p {
  font-size: 13px;
  color: var(--text-mid);
}

.portfolio-filter {
  padding: 40px 8% 20px;
  background: var(--bg-light);
}

.filter-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btns button {
  padding: 9px 22px;
  border-radius: 25px;
  font-size: 13px;
  background: #fff;
  color: var(--text-mid);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.25s;
  font-family: "Poppins", sans-serif;
}

.filter-btns button.active,
.filter-btns button:hover {
  background: var(--gold);
  color: #1a1508;
  border-color: var(--gold);
}

.portfolio-grid {
  padding: 30px 8% 80px;
  background: var(--bg-light);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s;
  display: block;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 22px 22px;
  background: linear-gradient(transparent, rgba(58, 63, 49, 0.8));
  color: #fff;
}

.portfolio-overlay h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.portfolio-overlay span {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portfolio-cta {
  display: none;
}

.blog-controls {
  padding: 36px 8% 20px;
  background: var(--bg-light);
}

.search {
  width: 100%;
  max-width: 420px;
  padding: 12px 16px 12px 42px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  outline: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 14px center;
  margin-bottom: 18px;
  display: block;
  transition: 0.3s;
}

.search:focus {
  border-color: var(--gold);
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filters button {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  background: #fff;
  color: var(--text-mid);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.25s;
  font-family: "Poppins", sans-serif;
}

.filters button.active,
.filters button:hover {
  background: var(--gold);
  color: #1a1508;
  border-color: var(--gold);
}

.blog-grid {
  padding: 20px 8% 80px;
  background: var(--bg-light);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-grid .card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.blog-grid .card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.blog-grid .card .tag {
  display: inline-block;
  background: rgba(139, 144, 86, 0.12);
  color: var(--gold);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.blog-grid .card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.45;
}

.blog-grid .card>p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-grid .card .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-grid .card .bottom span {
  font-size: 11px;
  color: #bbb;
}

.blog-grid .card .bottom a {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

.contact-main {
  padding: 60px 8%;
  background: var(--bg-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
  margin-bottom: 24px;
}

.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  color: #fff;
}

.contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info-card>p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s;
}

.info-box:hover {
  background: rgba(255, 255, 255, 0.07);
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(139, 144, 86, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text span {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.info-text strong {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.active-call {
  background: rgba(34, 180, 90, 0.08);
  border-color: rgba(34, 180, 90, 0.25);
}

.active-call .info-icon {
  background: rgba(34, 180, 90, 0.14);
}

.info-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 18px 0;
}

.office-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.office-time span {
  color: var(--gold);
  font-weight: 600;
}

.location-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.location-tags span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  min-width: 40px;
}

.step span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #aaa;
  font-weight: 600;
  flex-shrink: 0;
}

.step p {
  font-size: 12px;
  color: #aaa;
  margin: 0;
  white-space: nowrap;
}

.step.active span {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1508;
}

.step.active p {
  color: var(--text-dark);
  font-weight: 600;
}

.form-header {
  margin-bottom: 24px;
}

.form-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.form-header p {
  font-size: 13px;
  color: var(--text-mid);
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
  text-transform: uppercase;
}

.contact-form input {
  width: 100%;
  height: 48px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 0 16px;
  font-size: 14px;
  color: var(--text-dark);
  background: #fdfbf8;
  outline: none;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}

.contact-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(139, 144, 86, 0.1);
}

.contact-form input::placeholder {
  color: #c0b8ae;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 16px;
  flex-wrap: wrap;
}

.form-bottom p {
  font-size: 11px;
  color: #aaa;
  margin: 0;
}

.next-btn {
  background: var(--gold);
  color: #1a1508;
  padding: 13px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}

.next-btn:hover {
  background: var(--gold-dark);
}

.review-card {
  max-width: 340px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-card>p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(139, 144, 86, 0.15);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.review-user strong {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 600;
}

.review-user span {
  font-size: 11px;
  color: #aaa;
}

.contact-cta {
  background: var(--dark-mid);
  padding: 40px 8%;
  border-top: 1px solid rgba(139, 144, 86, 0.2);
}

.cta-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cta-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.cta-btn {
  background: var(--gold);
  color: #1a1508;
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
}

.cta-btn:hover {
  background: var(--gold-dark);
}

.hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 18px 8%;
  background: var(--bg-mid);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}

@media (max-width: 1100px) {

  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clarity-grid {
    flex-wrap: wrap;
  }

  .clarity-item {
    flex: 1;
    min-width: calc(33% - 14px);
  }
}

@media (max-width: 900px) {

  .excellence-container,
  .room-container,
  .about-story,
  .explore-box,
  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }

  .ex-right img,
  .room-image img,
  .story-right img,
  .explore-img img {
    height: 300px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .what-cta {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  /* ── NAVBAR & MENU ─────────────────────── */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 18, 12, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    border: none;
    padding: 80px 20px 40px;
    display: flex;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    z-index: 999;
    transform: translateY(-16px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s;
    gap: 4px;
    overflow-y: auto;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 19px;
    padding: 13px 24px;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    transition:
      background 0.2s,
      color 0.2s;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(139, 144, 86, 0.15);
    color: var(--gold);
  }

  .nav-links .mobile-quote-btn {
    display: inline-block;
    margin-top: 18px;
    background: linear-gradient(135deg, #c9a14a, #e0ba65);
    color: #1a1508;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
    font-size: 22px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
  }

  .nav-btn {
    display: none;
  }

  /* ── HERO ──────────────────────────────── */
  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero-content {
    padding: 0 5%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
    letter-spacing: -0.5px;
    line-height: 1.18;
  }

  .hero-content .desc {
    font-size: 13px;
    margin-bottom: 26px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    max-width: 260px;
    font-size: 13px;
    padding: 12px 20px;
  }

  /* ── STATS ─────────────────────────────── */
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 12px 3%;
    text-align: center;
  }

  .stats>div {
    padding: 3px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stats>div:last-child {
    border-right: none;
  }

  .stats>div>span,
  .stats>div:not(:has(h3)) {
    font-size: 15px;
  }

  .stats span {
    font-size: 9px;
    margin-top: 1px;
  }

  /* ── SUB-STATS — 2×2 grid ──────────────── */
  .sub-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    background: var(--dark-mid);
  }

  .sub-stats span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    font-size: 10px;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    white-space: nowrap;
    gap: 6px;
  }

  .sub-stats span::before {
    content: "✓";
    color: var(--gold);
    font-size: 10px;
  }

  /* ── SERVICES SECTION ──────────────────── */
  .services-section {
    padding: 50px 5% 40px;
  }

  .services-title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .service-card {
    flex-direction: column-reverse;
    /* Image on TOP */
    border-radius: var(--radius);
    overflow: hidden;
  }

  .service-right {
    width: 100%;
    min-height: 230px;
    height: 230px;
    flex: none;
  }

  .service-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-left {
    padding: 26px 22px;
    flex: none;
  }

  .service-left h3 {
    font-size: 22px;
  }

  .service-left .desc {
    font-size: 13px;
  }

  /* ── ROOM SECTION ──────────────────────── */
  .room-section {
    padding: 50px 5% 40px;
  }

  .room-section h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .room-container {
    flex-direction: column;
    gap: 20px;
  }

  .room-image {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .room-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  .room-content {
    width: 100%;
  }

  .room-content h3 {
    font-size: 20px;
  }

  .room-content p {
    font-size: 13px;
  }

  .thumbs {
    gap: 8px;
    margin-top: 20px;
  }

  .thumbs img {
    width: 60px;
    height: 48px;
  }

  /* ── EXPERIENCE SECTION ────────────────── */
  .experience-section {
    padding: 50px 5% 40px;
  }

  .experience-section h2 {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .exp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .exp-card {
    padding: 22px 18px;
    border-radius: 10px;
  }

  .exp-card span {
    font-size: 22px;
  }

  .exp-card p {
    font-size: 13px;
  }

  /* ── EXCELLENCE SECTION ────────────────── */
  .excellence-section {
    padding: 50px 5% 40px;
  }

  .excellence-container {
    flex-direction: column;
    gap: 30px;
  }

  .ex-left .tag {
    margin-bottom: 8px;
  }

  .ex-left h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .ex-left .desc {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .features {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .feature-box {
    padding: 16px 14px;
    border-radius: 10px;
  }

  .feature-box h4 {
    font-size: 13px;
  }

  .feature-box p {
    font-size: 11px;
  }

  .ex-right {
    width: 100%;
  }

  .ex-right img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius);
  }

  .badge {
    bottom: 16px;
    left: 16px;
    padding: 10px 16px;
  }

  .badge h3 {
    font-size: 20px;
  }

  /* ── CLARITY SECTION ───────────────────── */
  .clarity-section {
    padding: 50px 5% 40px;
  }

  .clarity-section h2 {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .clarity-grid {
    flex-direction: column;
    gap: 12px;
  }

  .clarity-item {
    min-width: 100%;
    padding: 22px 20px;
  }

  /* ── TESTIMONIAL ───────────────────────── */
  .testimonial-section {
    padding: 50px 5% 40px;
  }

  .testimonial-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .testimonial p {
    font-size: 14px;
    line-height: 1.7;
  }

  .testimonial h4 {
    font-size: 13px;
  }

  /* ── INSIGHT ───────────────────────────── */
  .insight-section {
    padding: 50px 5% 40px;
  }

  .insight-section h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .insight-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .insight-card {
    padding: 22px 20px;
  }

  .insight-card h3 {
    font-size: 15px;
  }

  .insight-card .desc {
    font-size: 12px;
  }

  /* ── CTA SECTION ───────────────────────── */
  .cta-section {
    padding: 40px 5%;
  }

  .cta-box {
    padding: 36px 22px;
    text-align: center;
  }

  .cta-box h2 {
    font-size: 24px;
  }

  .cta-box p {
    font-size: 13px;
  }

  .cta-content,
  .cta-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 5%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 16px 5%;
  }


  .form-row {
    grid-template-columns: 1fr;
  }

  .form-steps {
    flex-wrap: wrap;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-story {
    flex-direction: column;
  }

  .story-right img {
    height: 260px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-box {
    flex-direction: column;
  }

  .explore-img img {
    height: 240px;
  }

  .what-cta {
    flex-direction: column;
  }

  .cta-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 27px;
  }

  .hero-content {
    padding: 0 5%;
  }

  .navbar {
    padding: 13px 5%;
  }

  .exp-grid {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 2%;
  }

  .stats>div>span,
  .stats>div:not(:has(h3)) {
    font-size: 13px;
  }

  .stats span {
    font-size: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


.thumbs {
  perspective: 800px;
}

.thumb-flip {
  width: 72px;
  height: 58px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-radius: 8px;
}

.thumb-flip.flipped {
  transform: rotateY(180deg);
}

.thumb-flip .flip-front,
.thumb-flip .flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.thumb-flip .flip-front img,
.thumb-flip .flip-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.thumb-flip.active .flip-front img,
.thumb-flip:hover .flip-front img {
  opacity: 1;
}

.thumb-flip .flip-back {
  transform: rotateY(180deg);
  background: rgba(139, 144, 86, 0.15);
}

.thumb-flip .flip-back img {
  opacity: 1;
}

.thumb-flip.active .flip-front,
.thumb-flip:hover .flip-front {
  border-color: var(--gold);
}


.tilt-wrap {
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
  will-change: transform;
  border-radius: var(--radius);
  overflow: hidden;
}

.tilt-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.12s ease-out;
}


.autoscroll-track-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.autoscroll-track-wrap::before,
.autoscroll-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.autoscroll-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light), transparent);
}

.autoscroll-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light), transparent);
}

.autoscroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: autoScroll 28s linear infinite;
}

.autoscroll-track:hover {
  animation-play-state: paused;
}

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.autoscroll-track .insight-card,
.autoscroll-track .blog-card {
  width: 300px;
  flex-shrink: 0;
}


.img-reveal,
.img-reveal.from-left,
.img-reveal.from-right {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.img-reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

.img-reveal.delay-1,
.img-reveal.delay-2,
.img-reveal.delay-3,
.img-reveal.delay-4 {
  transition-delay: 0s !important;
}

/* Override for hover zoom on animated images */
.room-image,
.ex-right,
.service-right,
.story-right,
.explore-img,
.portfolio-card .card-img,
.blog-card .card-img,
.team-card img,
.space-card img {
  overflow: hidden;
}

.room-image img,
.ex-right img,
.service-right img,
.story-right img,
.explore-img img,
.portfolio-card .card-img img,
.blog-card .card-img img,
.team-card img,
.space-card img {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.room-image:hover img,
.ex-right:hover img,
.service-right:hover img,
.story-right:hover img,
.explore-img:hover img,
.portfolio-card:hover .card-img img,
.blog-card:hover .card-img img,
.team-card:hover img,
.space-card:hover img {
  transform: scale(1.06);
}


.room-image,
.ex-right,
.service-right,
.story-right,
.explore-img,
.contact-img,
.about-img,
.banner-img,
.space-card,
.team-card,
.portfolio-card,
.blog-card .card-img,
.tilt-wrap {
  position: relative;
}

.room-image::after,
.ex-right::after,
.service-right::after,
.story-right::after,
.explore-img::after,
.contact-img::after,
.about-img::after,
.banner-img::after,
.space-card::after,
.team-card::after,
.portfolio-card::after,
.blog-card .card-img::after,
.tilt-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32%;
  background: linear-gradient(to top,
      rgba(58, 63, 49, 0.72) 0%,
      rgba(58, 63, 49, 0) 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: 0 0 var(--radius) var(--radius);
}

.page-hero {
  height: 72vh;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroZoom 8s ease-out forwards;
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45, 48, 32, 0.72) 40%, rgba(45, 48, 32, 0.32));
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 760px;
}

.page-hero .hero-content .location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.page-hero .hero-content .location::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.page-hero .hero-content h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.page-hero .hero-content .desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 540px;
}

.page-hero .hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-service-section {
  padding: 80px 8%;
  background: #fff;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.about-service-left {
  flex: 1;
}

.about-service-left .tag {
  margin-bottom: 10px;
}

.about-service-left h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.about-service-right {
  flex: 1.4;
}

.about-service-right>p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 26px;
}

.service-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
}

.service-checks span {
  font-size: 13px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.service-checks span::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(139, 144, 86, 0.15);
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23c9a14a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.expertise-section {
  padding: 80px 8%;
  background: var(--bg-light);
}

.expertise-section .tag {
  margin-bottom: 6px;
}

.expertise-section h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 44px;
  letter-spacing: -0.5px;
}

.expertise-slider {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.expertise-slide-left {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  background: #ddd;
}

.expertise-slide-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expertise-counter {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.expertise-slide-right {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 36px 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.expertise-slide-right .slide-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.expertise-slide-right h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.expertise-slide-right p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}

.expertise-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
}

.expertise-thumbnails img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.expertise-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.expertise-dots {
  display: flex;
  gap: 6px;
  flex: 1;
}

.expertise-dots span {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: #ddd;
  display: block;
  cursor: pointer;
  transition: 0.3s;
}

.expertise-dots span.active {
  background: var(--gold);
  width: 40px;
}

.expertise-arr {
  display: flex;
  gap: 8px;
}

.expertise-arr button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-arr button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.what-offer-section {
  padding: 80px 8%;
  background: #fff;
}

.what-offer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.what-offer-header h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.what-offer-header .offer-nav {
  display: flex;
  gap: 10px;
}

.what-offer-header .offer-nav button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-offer-header .offer-nav button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.offer-slide {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.offer-slide-left {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 380px;
}

.offer-slide-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-slide-counter {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.offer-slide-right {
  flex: 1;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.offer-icon {
  width: 52px;
  height: 52px;
  background: rgba(139, 144, 86, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 20px;
}

.offer-slide-right h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.offer-slide-right p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}

.offer-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
}

.offer-thumbnails img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.offer-dots-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.offer-dots {
  display: flex;
  gap: 6px;
}

.offer-dots span {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: #ddd;
  display: block;
}

.offer-dots span.active {
  background: var(--gold);
  width: 36px;
}

.how-we-work {
  padding: 80px 8%;
  background: var(--bg-light);
  text-align: center;
}

.how-we-work .tag {
  margin-bottom: 6px;
}

.how-we-work h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.work-steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
}

.work-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  z-index: 0;
}

.work-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 auto 18px;
  transition: 0.3s;
}

.work-step:hover .step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1508;
}

.work-step h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.work-step p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 120px;
  margin: 0 auto;
}

.why-choose-section {
  padding: 80px 8%;
  background: #fff;
  text-align: center;
}

.why-choose-section .tag {
  margin-bottom: 6px;
}

.why-choose-section h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.why-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.why-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.why-card .why-icon {
  width: 46px;
  height: 46px;
  background: rgba(139, 144, 86, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.65;
}

.recent-projects {
  padding: 80px 8%;
  background: var(--bg-light);
}

.recent-projects-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.recent-projects-header h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  padding: 9px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  transition: 0.3s;
}

.view-all-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1508;
}

.projects-hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 460px;
}

.projects-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.projects-hero-card:hover img {
  transform: scale(1.04);
}

.project-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(45, 48, 32, 0.78);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.project-nav-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.project-nav-dots span {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.project-nav-dots span.active {
  background: var(--gold);
}

.faq-section {
  padding: 80px 8%;
  background: #fff;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.faq-left {
  flex: 0 0 280px;
}

.faq-left .tag {
  margin-bottom: 10px;
}

.faq-left h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.faq-left p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq-right {
  flex: 1;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 18px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
}

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--text-mid);
  transition: 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1508;
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding-top: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 12px;
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8%;
  z-index: 900;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sticky-bar nav {
  display: flex;
  gap: 24px;
}

.sticky-bar nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: 0.25s;
}

.sticky-bar nav a:hover,
.sticky-bar nav a.active {
  color: #fff;
}

.ready-section {
  padding: 50px 8%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ready-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ready-section p {
  font-size: 13px;
  color: var(--text-mid);
}

@media (max-width: 768px) {
  .about-service-section {
    flex-direction: column;
    gap: 32px;
  }

  .expertise-slider {
    flex-direction: column;
  }

  .offer-slide {
    flex-direction: column;
  }

  .work-steps {
    flex-wrap: wrap;
    gap: 24px;
  }

  .work-steps::before {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-section {
    flex-direction: column;
    gap: 32px;
  }

  .faq-left {
    flex: none;
  }

  .what-offer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .page-hero .hero-content h1 {
    font-size: 34px;
  }

  .ready-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-bar nav {
    gap: 12px;
  }
}

.page-hero {
  height: 72vh;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroZoom 8s ease-out forwards;
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45, 48, 32, 0.72) 40%, rgba(45, 48, 32, 0.32));
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 760px;
}

.page-hero .hero-content .location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.page-hero .hero-content .location::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.page-hero .hero-content h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.page-hero .hero-content .desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 540px;
}

.page-hero .hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-space-section {
  padding: 80px 8%;
  background: #fff;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.about-space-left {
  flex: 1;
}

.about-space-left .tag {
  margin-bottom: 10px;
}

.about-space-left h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.about-space-right {
  flex: 1.4;
}

.about-space-right>p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 26px;
}

.space-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
}

.space-checks span {
  font-size: 13px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.space-checks span::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(139, 144, 86, 0.15);
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23c9a14a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.design-elements-section {
  padding: 80px 8%;
  background: var(--bg-light);
}

.design-elements-section .tag {
  margin-bottom: 6px;
}

.design-elements-section h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 44px;
  letter-spacing: -0.5px;
}

.elements-slider {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.elements-slide-left {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 380px;
}

.elements-slide-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.elements-counter {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
}

.elements-slide-right {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.elements-slide-right .slide-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.elements-slide-right h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.elements-slide-right p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}

.elements-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
}

.elements-thumbnails img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.elements-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.elements-dots {
  display: flex;
  gap: 6px;
  flex: 1;
}

.elements-dots span {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: #ddd;
  display: block;
  cursor: pointer;
  transition: 0.3s;
}

.elements-dots span.active {
  background: var(--gold);
  width: 36px;
}

.elements-arr {
  display: flex;
  gap: 8px;
}

.elements-arr button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.elements-arr button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.home-design-section {
  padding: 80px 8%;
  background: #fff;
}

.home-design-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.home-design-header h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.home-design-header .design-nav {
  display: flex;
  gap: 10px;
}

.home-design-header .design-nav button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-design-header .design-nav button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.design-slide {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.design-slide-left {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 380px;
}

.design-slide-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.design-counter {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
}

.design-slide-right {
  flex: 1;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.design-icon {
  width: 52px;
  height: 52px;
  background: rgba(139, 144, 86, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 20px;
}

.design-slide-right h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.design-slide-right p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}

.design-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
}

.design-thumbnails img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.design-dots-wrap {
  display: flex;
  align-items: center;
  margin-top: 18px;
}

.design-dots {
  display: flex;
  gap: 6px;
}

.design-dots span {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: #ddd;
  display: block;
}

.design-dots span.active {
  background: var(--gold);
  width: 36px;
}

.how-we-work {
  padding: 80px 8%;
  background: var(--bg-light);
  text-align: center;
}

.how-we-work .tag {
  margin-bottom: 6px;
}

.how-we-work h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.work-steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
}

.work-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  z-index: 0;
}

.work-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 auto 18px;
  transition: 0.3s;
}

.work-step:hover .step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1508;
}

.work-step h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.work-step p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 140px;
  margin: 0 auto;
}

.why-choose-section {
  padding: 80px 8%;
  background: #fff;
  text-align: center;
}

.why-choose-section .tag {
  margin-bottom: 6px;
}

.why-choose-section h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.why-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.why-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.why-card .why-icon {
  width: 46px;
  height: 46px;
  background: rgba(139, 144, 86, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.65;
}

.recent-projects {
  padding: 80px 8%;
  background: var(--bg-light);
}

.recent-projects-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.recent-projects-header h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  padding: 9px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  transition: 0.3s;
}

.view-all-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1508;
}

.projects-hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 500px;
}

.projects-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.projects-hero-card:hover img {
  transform: scale(1.03);
}

.project-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(45, 48, 32, 0.78);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.project-nav-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.project-nav-dots span {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.project-nav-dots span.active {
  background: var(--gold);
}

.space-cta-section {
  padding: 90px 8%;
  background: var(--dark);
  text-align: center;
}

.space-cta-section .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.space-cta-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.space-cta-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8%;
  z-index: 900;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sticky-bar nav {
  display: flex;
  gap: 24px;
}

.sticky-bar nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: 0.25s;
}

.sticky-bar nav a:hover,
.sticky-bar nav a.active {
  color: #fff;
}

.ready-section {
  padding: 50px 8%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ready-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ready-section p {
  font-size: 13px;
  color: var(--text-mid);
}

@media (max-width: 768px) {
  .about-space-section {
    flex-direction: column;
    gap: 32px;
  }

  .elements-slider {
    flex-direction: column;
  }

  .design-slide {
    flex-direction: column;
  }

  .work-steps {
    flex-wrap: wrap;
    gap: 24px;
  }

  .work-steps::before {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-design-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .page-hero .hero-content h1 {
    font-size: 34px;
  }

  .ready-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-bar nav {
    gap: 12px;
  }

  .space-cta-section h2 {
    font-size: 28px;
  }
   }