/* =============================================
   IKONIK REALITY — Black & Gold Theme
   ============================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --gray: #2A2A2A;
  --text: #E0E0E0;
  --text-muted: #888;
  --white: #FFFFFF;
  --radius: 8px;
  --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

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

/* =============================================
   NAV
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  color: var(--gold);
  font-size: 24px;
}

.logo-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}

.logo-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--gold);
  line-height: 1;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
}

.agent-photo-wrap {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.agent-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.15);
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
}

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  min-width: 180px;
  z-index: 999;
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown-menu li { list-style: none; }

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

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

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu.open { display: block; }

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.mobile-menu.open { display: flex; }

.mobile-menu li a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.9) 100%),
    url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.4), rgba(201,168,76,0.05));
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 900px;
}

.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.hero-realtor {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-sub {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Search Box */
.search-box {
  background: rgba(20,20,20,0.95);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
}

.search-field i {
  color: var(--gold);
  width: 16px;
}

.search-field input,
.search-field select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 14px;
  width: 100%;
  font-family: inherit;
}

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

.search-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.search-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Stats */
.hero-stats {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: auto;
  background: rgba(10,10,10,0.9);
  border-top: 1px solid rgba(201,168,76,0.2);
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 40px;
  border-right: 1px solid rgba(201,168,76,0.15);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
}

.stat span:last-child {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =============================================
   SECTIONS
   ============================================= */
section { padding: 80px 24px; }

.dark-section {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

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

.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 15px;
}

/* =============================================
   IDX CONTAINER
   ============================================= */
.idx-container {
  max-width: 1200px;
  margin: 0 auto;
}

.idx-placeholder {
  border: 2px dashed rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 60px;
  text-align: center;
  background: rgba(201,168,76,0.03);
}

.idx-message h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin: 20px 0 12px;
}

.idx-message p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

/* =============================================
   PROPERTY CARDS
   ============================================= */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.property-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.property-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(201,168,76,0.1);
}

.card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.card-body { padding: 20px; }

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 8px;
}

.card-address {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card-features {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.card-features span i {
  color: var(--gold);
  margin-right: 4px;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  transform: translateY(-4px);
}

.featured-service {
  border-color: var(--gold);
  background: rgba(201,168,76,0.07);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card ul {
  margin-bottom: 24px;
}

.service-card ul li {
  font-size: 13px;
  color: var(--text);
  padding: 4px 0;
}

.services-cta {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.services-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.services-cta p {
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 700px) {
  .services-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

/* =============================================
   INVESTMENT SECTION
   ============================================= */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.invest-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.invest-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  transform: translateY(-4px);
}

.featured-card {
  border-color: var(--gold);
  background: rgba(201,168,76,0.07);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.invest-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
}

.invest-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 12px;
}

.invest-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.invest-card ul {
  margin-bottom: 24px;
}

.invest-card ul li {
  font-size: 13px;
  color: var(--text);
  padding: 4px 0;
}

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 4px;
}

.agent-title {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px !important;
}

.about-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 24px;
  transition: var(--transition);
}

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

.feature i { font-size: 24px; margin-bottom: 12px; }

.feature h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.feature p { font-size: 13px; color: var(--text-muted); }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.calendar-container h3,
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 20px;
}

.calendar-placeholder {
  border: 2px dashed rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
}

.calendar-placeholder p {
  color: var(--text-muted);
  margin: 16px 0 24px;
}

.calendar-booking-box {
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
  background: rgba(201,168,76,0.04);
}

.calendar-booking-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 20px 0 10px;
}

.calendar-booking-box p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.btn-large {
  padding: 16px 36px !important;
  font-size: 16px !important;
}

.booking-note {
  margin-top: 16px !important;
  font-size: 12px !important;
  color: var(--text-muted);
}

.contact-item {
  margin-bottom: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 16px 20px;
  transition: var(--transition);
}

.contact-link:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }

.phone-link { border-color: rgba(201,168,76,0.4); }

.contact-link i {
  color: var(--gold);
  font-size: 20px;
  width: 24px;
}

.contact-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

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

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

/* =============================================
   BUTTONS
   ============================================= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--gold);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}

/* =============================================
   LIST YOUR PROPERTY FORM
   ============================================= */
.listing-form-container {
  max-width: 900px;
  margin: 0 auto;
}

.listing-form {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

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

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.listing-form input,
.listing-form select,
.listing-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

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

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

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  padding: 0;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 60px 24px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.footer-links ul li a {
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-contact p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact a { color: var(--text-muted); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

/* =============================================
   SERVICE BOOKING
   ============================================= */
.service-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition);
  min-width: 110px;
  font-size: 13px;
  color: var(--text-muted);
}

.service-btn i { font-size: 22px; color: var(--text-muted); transition: var(--transition); }

.service-btn:hover,
.service-btn.active {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--white);
}

.service-btn:hover i,
.service-btn.active i { color: var(--gold); }

.selected-service-display {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
}

.bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
}

.booking-card:hover { border-color: var(--gold); }

.booking-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

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

.booking-service {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.booking-status {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

.booking-status.pending { background: rgba(255,180,0,0.15); color: #ffb400; }
.booking-status.confirmed { background: rgba(0,180,80,0.15); color: #00b450; }

.booking-details p {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
}

.booking-details p i { margin-right: 8px; }

.loading-msg {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
}

.loading-msg p { margin-top: 16px; }

/* =============================================
   FLOATING CALL BUTTON
   ============================================= */
.float-call {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: var(--transition);
  z-index: 999;
  animation: pulse 2s infinite;
}

.float-call:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,0.4); }
  50% { box-shadow: 0 4px 40px rgba(201,168,76,0.7); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .search-fields { grid-template-columns: 1fr; }

  .hero-stats { flex-wrap: wrap; }
  .stat { padding: 16px 20px; width: 50%; }
  .stat:nth-child(2) { border-right: none; }

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

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

  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  section { padding: 60px 16px; }

  #hero h1 { font-size: 32px; }

  .stat { width: 50%; }

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

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

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

  .contact-actions { flex-direction: column; }
}
