/*
Theme Name: Bijesh Softech
Theme URI: https://bijeshsoftech.online
Author: Bijesh Softech
Author URI: https://bijeshsoftech.online
Description: Premium Property & Resort Management WordPress Theme by Bijesh Softech. Designed for luxury hotels, villas, resorts, and property portfolios with booking integration, amenity showcases, and dynamic room management.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bijesh-softech
Tags: property-management, resort, hotel, luxury, booking, real-estate, full-width-template, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready

Bijesh Softech Theme - Property & Resort Management
Copyright (C) 2026 Bijesh Softech
*/

/* ============================================================
   BIJESH SOFTECH — PROPERTY RESORT MANAGEMENT THEME
   Design System & Base Styles
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Palette */
  --gold:           #C9A84C;
  --gold-light:     #E8C97A;
  --gold-dark:      #9C7B2F;
  --onyx:           #0D0D0D;
  --charcoal:       #1A1A1A;
  --deep:           #111318;
  --slate:          #2A2D35;
  --mist:           #F4F1EB;
  --ivory:          #FAF8F3;
  --cream:          #FFFDF7;
  --text-primary:   #1C1C1E;
  --text-secondary: #4A4A52;
  --text-muted:     #8A8A96;
  --border:         rgba(201,168,76,0.2);
  --border-light:   rgba(255,255,255,0.08);

  /* Typography */
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --font-accent:    'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-gap:    100px;
  --container-max:  1320px;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      24px;
  --radius-xl:      40px;

  /* Shadows */
  --shadow-card:    0 8px 40px rgba(0,0,0,0.12);
  --shadow-hover:   0 20px 60px rgba(0,0,0,0.22);
  --shadow-gold:    0 4px 30px rgba(201,168,76,0.25);

  /* Transitions */
  --ease-smooth:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:         0.2s;
  --t-mid:          0.4s;
  --t-slow:         0.7s;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--t-fast) var(--ease-smooth); }
a:hover { color: var(--gold-dark); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.12em; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-gap) 0; }
.section--dark { background: var(--deep); color: var(--ivory); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--ivory); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow::before,
.eyebrow::after {
  content: '—';
  margin: 0 8px;
  opacity: 0.5;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.flex { display: flex; }
.grid { display: grid; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all var(--t-mid) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--onyx);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.4);
  color: var(--onyx);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(201,168,76,0.6);
}

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

.btn-dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.btn-dark:hover {
  background: var(--slate);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* ---------- Header / Navigation ---------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--t-mid) var(--ease-smooth);
  padding: 20px 0;
}

#site-header.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.site-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.04em;
  line-height: 1;
}

.site-logo .logo-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

#primary-nav ul li a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.85);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--t-fast);
}

#primary-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-mid) var(--ease-smooth);
}

#primary-nav ul li a:hover,
#primary-nav ul li.current-menu-item a {
  color: var(--gold);
}

#primary-nav ul li a:hover::after,
#primary-nav ul li.current-menu-item a::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(250,248,243,0.7);
  letter-spacing: 0.04em;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: all var(--t-mid) var(--ease-smooth);
  display: block;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-content .eyebrow { color: var(--gold-light); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(250,248,243,0.82);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,248,243,0.6);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--charcoal);
  padding: 0;
  border-bottom: 1px solid var(--border-light);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border-light);
  position: relative;
  transition: background var(--t-mid);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,168,76,0.06); }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.55);
  margin-top: 6px;
  display: block;
}

/* ---------- Properties / Rooms Grid ---------- */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.property-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--t-mid) var(--ease-smooth);
  position: relative;
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.property-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}

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

.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--onyx);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 2;
}

.property-badge.available { background: #2ECC71; color: #fff; }
.property-badge.booked    { background: #E74C3C; color: #fff; }

.property-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  font-size: 0.9rem;
  transition: all var(--t-fast);
  z-index: 2;
  cursor: pointer;
  border: none;
}

.property-wishlist:hover { background: var(--gold); color: var(--onyx); }

.property-card-body {
  padding: 24px;
}

.property-type {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.property-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.property-location svg { color: var(--gold); flex-shrink: 0; }

.property-amenities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.amenity-tag {
  background: var(--mist);
  color: var(--text-secondary);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
}

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.property-price .amount {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.property-price .period {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}

.property-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.stars { color: var(--gold); font-size: 0.75rem; }

/* ---------- Featured Property (Wide Card) ---------- */
.featured-property {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: var(--charcoal);
  margin-top: 56px;
}

.featured-property-image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.featured-property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}

.featured-property:hover .featured-property-image img { transform: scale(1.04); }

.featured-property-content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-property-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ivory);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.featured-property-content p {
  color: rgba(250,248,243,0.72);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.featured-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.detail-item .label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.detail-item .value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ivory);
}

/* ---------- Amenities Showcase ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 56px;
}

.amenity-card {
  background: var(--ivory);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--t-mid) var(--ease-smooth);
  position: relative;
}

.amenity-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width var(--t-mid) var(--ease-smooth);
}

.amenity-card:hover::before { width: 60%; }

.amenity-card:hover {
  background: var(--cream);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.amenity-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: all var(--t-mid) var(--ease-smooth);
}

.amenity-card:hover .amenity-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1) rotate(5deg);
}

.amenity-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Booking Form ---------- */
.booking-section {
  background: linear-gradient(135deg, var(--deep) 0%, var(--charcoal) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.booking-bar {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}

.booking-bar h2 {
  color: var(--ivory);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}

.booking-bar .lead {
  color: rgba(250,248,243,0.6);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ivory);
  transition: all var(--t-fast);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder { color: rgba(250,248,243,0.35); }
.form-group select option { background: var(--charcoal); color: var(--ivory); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-card);
  transition: all var(--t-mid) var(--ease-smooth);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.author-info .name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  display: block;
}

.author-info .origin {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
  margin-top: 56px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--t-mid);
}

.gallery-item:hover::after { background: rgba(0,0,0,0.2); }

/* ---------- Team Section ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

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

.team-photo {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: border-color var(--t-mid);
}

.team-photo::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t-mid);
}

.team-card:hover .team-photo::before { opacity: 1; }
.team-card:hover .team-photo img { border-color: var(--gold); }

.team-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}

.contact-form-wrap {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item .label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.contact-info-item .value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ---------- Footer ---------- */
#site-footer {
  background: var(--onyx);
  color: rgba(250,248,243,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
}

.footer-brand .logo-main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ivory);
  display: block;
  margin-bottom: 4px;
}

.footer-brand .logo-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(250,248,243,0.55);
  margin-bottom: 24px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,248,243,0.6);
  font-size: 0.9rem;
  transition: all var(--t-fast);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--onyx);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(250,248,243,0.5);
  transition: color var(--t-fast);
}

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

/* ---------- Footer Bottom (NO "Powered by WordPress") ---------- */
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(250,248,243,0.35);
}

.footer-copyright strong {
  color: var(--gold);
  font-weight: 600;
}

.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(250,248,243,0.3);
  transition: color var(--t-fast);
}

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

/* ---------- Scroll To Top ---------- */
#scroll-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--onyx);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--t-mid) var(--ease-smooth);
  border: none;
  font-size: 1rem;
  z-index: 999;
  box-shadow: var(--shadow-gold);
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-4px);
}

/* ---------- Loader ---------- */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  z-index: 9999;
  transition: opacity 0.8s var(--ease-smooth), visibility 0.8s;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.06em;
  animation: fadeUpIn 0.8s var(--ease-smooth) forwards;
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: loadProgress 1.6s var(--ease-smooth) forwards;
}

@keyframes loadProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Divider ---------- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto;
  border-radius: 2px;
}

.gold-divider.left { margin-left: 0; }

/* ---------- WordPress Core Classes ---------- */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.82rem; color: var(--text-muted); text-align: center; margin-top: 8px; }
.sticky { background: rgba(201,168,76,0.05); }
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .properties-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
  .booking-form    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 70px; }

  #primary-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }

  #primary-nav.open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #primary-nav.open ul {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  #primary-nav.open ul li a {
    font-size: 1.1rem;
    letter-spacing: 0.14em;
  }

  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .properties-grid { grid-template-columns: 1fr; }
  .featured-property { grid-template-columns: 1fr; }
  .featured-property-image { min-height: 300px; }
  .featured-property-content { padding: 36px 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: auto; grid-row: auto; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .booking-form { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
