/* ===== LORDLAND ASSETS — style.css ===== */

/* VARIABLES */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --white: #FFFFFF;
  --grey: #8A8A8A;
  --light: #F5F3EF;
  --border: rgba(201, 168, 76, 0.2);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  --trans: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: #333;
  overflow-x: hidden;
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-logo {
  width: 180px;
  margin: 0 auto 24px;
  animation: pulse 1.5s ease infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  animation: loadBar 2.5s ease forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.7;
    transform: scale(0.97)
  }
}

/* CONTAINER */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

/* SECTION TYPOGRAPHY */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  color: var(--dark);
  font-weight: 700;
}

.dark-section .section-title {
  color: var(--white);
}

.gold-text {
  color: var(--gold);
}

.section-sub {
  color: var(--grey);
  max-width: 560px;
  font-size: 16px;
  margin-top: 12px;
}

.dark-section .section-sub {
  color: #999;
}

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

.section-header.center .section-sub {
  margin: 12px auto 0;
}

.section-header.center .section-tag {
  justify-content: center;
}

.section-header.flex-between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% 200%;
  background-position: 0% 0%;
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 3px;
  transition: var(--trans);
  border: none;
}

.btn-primary:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 3px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--trans);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border: 2px solid var(--gold);
  border-radius: 3px;
  transition: var(--trans);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  transition: var(--trans);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.btn-sm-outline {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 3px;
  transition: var(--trans);
}

.btn-sm-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.center-btn {
  text-align: center;
  margin-top: 52px;
}

/* ===== HEADER ===== */
.header-top {
  background: var(--black);
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.header-contact-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.header-contact-strip span {
  color: #aaa;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-contact-strip i {
  color: var(--gold);
}

.header-social {
  display: flex;
  gap: 12px;
}

.header-social a {
  color: #aaa;
  font-size: 13px;
  transition: var(--trans);
}

.header-social a:hover {
  color: var(--gold);
}

.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}

.navbar.scrolled {
  background: var(--black);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}

.nav-logo {
  height: 75px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 3px;
  transition: var(--trans);
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  color: var(--gold);
}

.nav-links>li>a i {
  font-size: 11px;
  transition: var(--trans);
}

.nav-links>li:hover>a i {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark2);
  border: 1px solid var(--border);
  min-width: 220px;
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--trans);
  z-index: 100;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  color: #bbb;
  font-size: 14px;
  padding: 10px 20px;
  transition: var(--trans);
  border-left: 2px solid transparent;
}

.dropdown li a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  border-left-color: var(--gold);
}

.nav-cta {
  font-size: 13px;
  padding: 11px 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

.hamburger span:nth-child(1) {
  width: 24px;
}

.hamburger span:nth-child(2) {
  width: 18px;
}

.hamburger span:nth-child(3) {
  width: 21px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  width: 24px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 24px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1448630360428-65456885c650?w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex: 1;
  padding-top: 80px;
  padding-bottom: 120px;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.05;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 32px;
  animation: fadeUp 0.8s ease 0.6s both;
}

.stat-item {
  text-align: center;
  padding: 0 28px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  padding-right: 0;
}

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-item>span:last-of-type {
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 4px;
  display: inline-block;
}

.stat-item p {
  color: #aaa;
  font-size: 13px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* Hero Search Bar */
.hero-search-bar {
  position: relative;
  z-index: 3;
  background: var(--dark2);
  border-top: 1px solid var(--border);
}

.search-box {
  display: flex;
  align-items: flex-end;
  gap: 0;
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 160px;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}

.search-field label {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.search-field select {
  width: 100%;
  background: transparent;
  border: none;
  color: #ccc;
  font-size: 14px;
  outline: none;
  appearance: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.search-field select option {
  background: var(--dark2);
  color: var(--white);
}

.btn-search {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  padding: 20px 36px;
  border-radius: 0;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-search:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ===== ABOUT ===== */
.about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-block {
  position: relative;
}

.about-img-main {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-thumb {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 4px solid var(--white);
}

.about-img-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.about-exp-badge {
  position: absolute;
  top: 30px;
  left: -30px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  padding: 20px 24px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.exp-num {
  display: block;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.about-content {
  padding-right: 20px;
}

.about-desc {
  color: #555;
  font-size: 16px;
  margin: 20px 0 28px;
}

.about-features {
  margin-bottom: 32px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-features li i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.about-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== SERVICES ===== */
.dark-section {
  background: var(--dark);
}

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

.service-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: 4px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: var(--trans);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: var(--gold);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #7A5E20 100%);
  border-color: var(--gold);
}

.service-card.featured .service-icon {
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-link {
  color: var(--white);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 24px;
  transition: var(--trans);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--black);
}

.service-card.featured:hover .service-icon {
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.service-card h3 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
}

.service-link:hover {
  gap: 10px;
}

/* ===== PROPERTIES ===== */
.properties {
  background: var(--white);
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid #ddd;
  color: #666;
  transition: var(--trans);
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.prop-card {
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--trans);
  border: 1px solid #eee;
}

.prop-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.prop-img {
  position: relative;
  overflow: hidden;
}

.prop-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.prop-card:hover .prop-img img {
  transform: scale(1.06);
}

.prop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prop-badge.commercial {
  background: #1A3A5C;
  color: var(--white);
}

.prop-badge.agri {
  background: #2A5C2A;
  color: var(--white);
}

.hot-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #E74C3C;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 1px;
}

.prop-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--trans);
}

.prop-card:hover .prop-overlay {
  opacity: 1;
}

.prop-body {
  padding: 22px;
}

.prop-body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 8px;
}

.prop-loc {
  color: var(--grey);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.prop-loc i {
  color: var(--gold);
}

.prop-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.prop-specs span {
  font-size: 12px;
  color: #666;
  background: #f5f5f5;
  padding: 5px 10px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.prop-specs i {
  color: var(--gold);
  font-size: 11px;
}

.prop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #eee;
}

.prop-price {
  font-size: 14px;
  color: #555;
}

.prop-price strong {
  color: var(--gold-dark);
  font-size: 18px;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--dark2);
}

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

.why-content .section-title {
  margin-bottom: 16px;
}

.why-content>p {
  color: #999;
  font-size: 15px;
  margin-bottom: 36px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--trans);
}

.why-item:hover .why-icon {
  background: var(--gold);
  color: var(--black);
}

.why-item h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}

.why-item p {
  color: #888;
  font-size: 14px;
}

.why-img {
  position: relative;
}

.why-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 6px;
}

.why-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--black);
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.why-badge i {
  color: var(--gold);
  font-size: 28px;
}

.why-badge strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.why-badge span {
  color: #888;
  font-size: 12px;
}

/* ===== PROJECTS ===== */
.projects {
  background: var(--light);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.project-card.large {
  grid-row: span 2;
}

.project-card.large img {
  height: 100%;
  min-height: 400px;
}

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

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  padding: 40px 24px 24px;
}

.proj-tag {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 6px;
}

.project-info h3 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 20px;
  margin-bottom: 4px;
}

.project-info p {
  color: #bbb;
  font-size: 13px;
  margin-bottom: 12px;
}

.proj-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
}

.proj-link:hover {
  gap: 10px;
}

/* ===== TESTIMONIALS — 3-CARD CAROUSEL ===== */
.testimonials {
  background: var(--dark);
  overflow: hidden;
}

.testi-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Arrows */
.testi-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--gold);
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--trans);
  z-index: 2;
  cursor: pointer;
}

.testi-arrow:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.testi-arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Viewport clips the overflowing cards */
.testi-viewport {
  flex: 1;
  overflow: hidden;
  margin: 0 20px;
}

/* Track holds all cards in a row */
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each card takes exactly 1/3 of viewport minus gaps */
.testi-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: 8px;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

/* Quote icon */
.testi-quote-icon {
  color: var(--gold);
  font-size: 22px;
  opacity: 0.4;
  margin-bottom: 14px;
}

.testi-stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.testi-card>p {
  color: #bbb;
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testi-author-text strong {
  color: var(--white);
  display: block;
  font-size: 15px;
}

.testi-author-text span {
  color: #888;
  font-size: 13px;
}

/* Dots */
.testi-dots-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: var(--trans);
}

.testi-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 4px;
}

/* Mobile: 1 card */
@media (max-width: 767px) {
  .testi-card {
    flex: 0 0 100%;
  }

  .testi-arrow {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .testi-viewport {
    margin: 0 12px;
  }
}

/* Tablet: 2 cards */
@media (min-width: 768px) and (max-width: 1023px) {
  .testi-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

/* ===== TEAM ===== */
.team {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

.team-img {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.team-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

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

.team-info {
  padding: 20px 12px 12px;
}

.team-info h3 {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-info span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}

.team-social {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.team-social a {
  width: 34px;
  height: 34px;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 13px;
  transition: var(--trans);
}

.team-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1400&q=80') center/cover no-repeat;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(154, 122, 46, 0.4));
}

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

.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--dark2);
}

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

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-item p {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
}

.contact-form {
  background: var(--dark3);
  padding: 40px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

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

.form-group {
  margin-bottom: 0;
}

.form-group.full {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark2);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 3px;
  font-size: 14px;
  transition: var(--trans);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group select option {
  background: var(--dark2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
}

.form-success {
  display: none;
  color: #4CAF50;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  padding: 12px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 3px;
}

/* ===== FOOTER ===== */
.footer-main {
  background: var(--black);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  width: 250px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: #777;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 13px;
  transition: var(--trans);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

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

.footer-col ul li a {
  color: #777;
  font-size: 14px;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: #666;
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #666;
  font-size: 13px;
  transition: var(--trans);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* BACK TO TOP */
.back-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5);
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  transform: translateY(-4px);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--trans);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .footer-grid {
    grid-template-columns: 1fr 1fr;
  } */
}

@media (max-width: 900px) {

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-thumb {
    display: none;
  }

  .about-exp-badge {
    left: 16px;
    top: 16px;
  }

  .why-badge {
    left: 16px;
  }

  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card.large {
    grid-row: span 1;
  }

  .project-card.large img {
    height: 260px;
    min-height: unset;
  }

  .testi-card {
    min-width: calc(50% - 24px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-contact-strip {
    display: none;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 16px;
    gap: 0;
    border-top: 1px solid var(--border);
  }

  .nav-links.open>li>a {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    background: var(--dark3);
    margin-left: 16px;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .navbar {
    position: fixed;
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat-item {
    padding: 12px 0;
  }

  .search-box {
    flex-direction: column;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .btn-search {
    width: 100%;
    justify-content: center;
  }

  .properties-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    min-width: calc(100% - 24px);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .section-header.flex-between {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-btns {
    flex-direction: column;
  }

  .about-btns {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section-pad {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
}