/* Tiger Group — shared theme (header, footer, cards, sections) */
:root {
  --gold: #9b7847;
  --gold2: #d4af37;
  --gold3: #d4af37;
  --dark: #111;
  --light: #f7f4ef;
  --white: #fff;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --concrete: #1a1408;
  --concrete2: #2a2010;
  --sky: #0a2540;
  --sky2: #1a4a7a;
  --sky3: #2d6fad;
  --accent: #d4af37;
  --green: #27ae60;
}

/* Buttons (index theme) */
.btn {
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.btn.primary {
  background: var(--gold);
  color: #fff;
}
.btn.secondary {
  background: #fff;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 30px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 700;
}
.btn.primary:hover {
  background: #b89565;
  transform: translateY(-2px);
}
.btn.secondary:hover,
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* Inner page hero band (matches index gold accent) */
.page-hero {
  padding: 36px 18px 28px;
}
.page-hero-inner {
  max-width: 1400px;
  margin: auto;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding: 40px 48px;
  position: relative;
}
.page-hero-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold2));
}
.page-hero-text {
  flex: 1;
  min-width: 260px;
  padding-left: 12px;
}
.page-hero-text h1 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}
.page-hero-text h1 span {
  color: var(--gold);
}
.page-hero-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  max-width: 560px;
}
.page-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.page-hero-stat {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff;
  border-radius: 16px;
  padding: 22px 28px;
  text-align: center;
  min-width: 140px;
}
.page-hero-stat .num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.page-hero-stat .lbl {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
  margin-top: 6px;
}

/* Section heading (index) */
.sec-head {
  max-width: 1400px;
  margin: 0 auto 22px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.sec-head h2 {
  font-size: 26px;
  font-weight: 800;
  color: #111;
}
.sec-head h2 span {
  color: var(--gold);
}
.sec-head button {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  background: none;
  border: 2px solid var(--gold);
  padding: 9px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.sec-head button:hover {
  background: var(--gold);
  color: #fff;
}

/* Property cards (index) */
.prop-section {
  max-width: 1400px;
  margin: 0 auto 50px;
  padding: 0 18px;
}
.prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
}
.prop-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.prop-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.14);
}
.prop-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.prop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.prop-card:hover .prop-img img {
  transform: scale(1.06);
}
.prop-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}
.pending-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #e67e22;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}
.prop-body {
  padding: 18px 20px;
}
.prop-body h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
  line-height: 1.3;
}
.prop-city {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}
.prop-city i {
  color: var(--gold);
  margin-right: 4px;
}
.prop-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
}
.prop-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.prop-meta span {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}
.prop-meta span i {
  color: var(--gold);
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #aaa;
  grid-column: 1 / -1;
}
.empty-state i {
  font-size: 48px;
  margin-bottom: 14px;
  display: block;
}

/* Content pages (About, CEO, Careers) */
.content-wrap {
  max-width: 1400px;
  margin: 0 auto 50px;
  padding: 0 18px;
}
.content-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 44px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.content-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
}
.content-card h2 span {
  color: var(--gold);
}
.content-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 14px;
}
.content-card p:last-child {
  margin-bottom: 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.value-item {
  background: linear-gradient(135deg, #fff8ee, #fff);
  border: 1px solid #e8dcc8;
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
}
.value-item i {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
}
.value-item h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #111;
}
.value-item p {
  font-size: 13px;
  margin: 0;
}
.ceo-profile {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ceo-photo {
  width: 160px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  border: 5px solid var(--gold2);
  box-shadow: 0 8px 28px rgba(155, 120, 71, 0.25);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 48px;
  flex-shrink: 0;
  overflow: hidden;
}
.ceo-photo.photo-square {
  width: 160px;
  height: 160px;
  border-radius: 12px;
}
.ceo-photo.photo-portrait {
  width: 150px;
  height: 200px;
  border-radius: 16px;
}
.ceo-photo.photo-landscape {
  width: 200px;
  height: 140px;
  border-radius: 12px;
}
.ceo-meta h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111;
}
.ceo-meta .role {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  margin: 6px 0 12px;
}
.ceo-quote {
  border-left: 5px solid var(--gold);
  padding: 20px 24px;
  background: #f7f4ef;
  border-radius: 0 14px 14px 0;
  font-style: italic;
  color: #444;
  line-height: 1.85;
  margin: 20px 0;
}
.team-divider {
  text-align: center;
  margin: 36px 0 24px;
  position: relative;
}
.team-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #e8e2d8;
}
.team-divider span {
  position: relative;
  background: #fff;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.manager-profile {
  margin-top: 0;
  padding-top: 8px;
}
.manager-photo {
  width: 130px;
  height: 130px;
  font-size: 40px;
}
.job-card {
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 16px;
  transition: 0.3s;
}
.job-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(155, 120, 71, 0.12);
}
.job-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}
.job-meta {
  font-size: 12px;
  color: #888;
  font-weight: 700;
  margin-bottom: 10px;
}
.job-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-bottom a {
  color: var(--gold);
  font-weight: 700;
  transition: 0.3s;
}
.footer-bottom a:hover {
  color: #b89565;
}

/* Services section */
.tg-services-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f8f5ef, #ffffff);
  overflow: hidden;
}
.tg-services-container {
  max-width: 1450px;
  margin: auto;
}
.tg-services-top {
  text-align: center;
  margin-bottom: 60px;
}
.tg-badge {
  display: inline-block;
  padding: 10px 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(155, 120, 71, 0.2);
}
.tg-services-title {
  font-size: 52px;
  font-weight: 800;
  color: #1e2f45;
  margin-bottom: 18px;
}
.tg-services-title span {
  color: var(--gold);
}
.tg-services-subtitle {
  max-width: 850px;
  margin: auto;
  font-size: 17px;
  line-height: 1.9;
  color: #666;
}
.tg-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.tg-service-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
  border: 1px solid #eee;
}
.tg-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.tg-service-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.tg-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.tg-service-card:hover .tg-service-image img {
  transform: scale(1.1);
}
.tg-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}
.tg-service-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.tg-service-content {
  padding: 30px;
}
.tg-service-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1e2f45;
}
.tg-service-text {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 25px;
}
.tg-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}
.tg-service-btn:hover {
  background: #1e2f45;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .tg-services-title {
    font-size: 32px;
  }
  .tg-services-section {
    padding: 60px 16px;
  }
  .page-hero-inner {
    padding: 28px 24px;
  }
  .page-hero-text h1 {
    font-size: 28px;
  }
  .content-card {
    padding: 28px 22px;
  }
}
