/* ============================================================
   Access Property Consult Ltd — style.css
   Built by Elevado | accessproperty.com.ng
   ============================================================ */

/* -------------------------------------------------------
   CSS Variables
   ------------------------------------------------------- */
:root {
  --lemon:      #B5C200;
  --gold:       #C9A227;
  --green:      #1A7C3A;
  --dark:       #1A1A1A;
  --white:      #FFFFFF;
  --red:        #dc3545;
  --grey:       #6c757d;
  --light-bg:   #F8F8F2;
  --card-shadow: 0 4px 20px rgba(0,0,0,0.10);
  --radius:     8px;
  --transition: 0.28s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  color: #2d2d2d;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* -------------------------------------------------------
   Utility Classes
   ------------------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }
.text-gold  { color: var(--gold); }
.text-lemon { color: var(--lemon); }
.text-green { color: var(--green); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.section-pad { padding: 5rem 0; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.divider-gold {
  width: 60px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.75rem auto 2rem;
}
.divider-gold.left { margin-left: 0; }

/* -------------------------------------------------------
   Buttons
   ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-lemon  { background: var(--lemon); color: var(--dark); border-color: var(--lemon); }
.btn-lemon:hover { background: #9da800; border-color: #9da800; }
.btn-gold   { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: #a8841a; border-color: #a8841a; }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-green  { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: #145e2a; border-color: #145e2a; }
.btn-dark   { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: #333; border-color: #333; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-danger { background: var(--red); color: #fff; border-color: var(--red); }
.btn-danger:hover { background: #b02a37; border-color: #b02a37; }

/* -------------------------------------------------------
   Badges
   ------------------------------------------------------- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-sale    { background: var(--lemon); color: var(--dark); }
.badge-rent    { background: var(--gold);  color: var(--white); }
.badge-sold    { background: var(--red);   color: var(--white); }
.badge-rented  { background: var(--grey);  color: var(--white); }
.badge-available { background: var(--green); color: var(--white); }
.badge-featured { background: var(--lemon); color: var(--dark); }

/* -------------------------------------------------------
   Navbar
   ------------------------------------------------------- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--lemon);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.navbar-logo img { height: 48px; width: auto; }
.navbar-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.navbar-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--gold);
}
.navbar-logo-tagline {
  font-size: 0.7rem; color: var(--grey);
  font-weight: 500;
}

/* Nav links — dark text on white navbar */

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--dark);
  position: relative;
  transition: color var(--transition);
}
/* hamburger — always black so it's visible on white navbar */
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 50%; right: 50%;
  height: 2px; background: var(--lemon);
  transition: var(--transition); border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { left: 0.9rem; right: 0.9rem; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links .btn { margin-left: 0.5rem; }

.hamburger {
  display: none;
  flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px;
  cursor: pointer; background: none; border: none; padding: 0;
}
.hamburger span {
  display: block; height: 3px; border-radius: 2px;
  background: #1A1A1A !important;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,8px); background: #1A1A1A !important; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-8px); background: #1A1A1A !important; }

.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 998;
}
.mobile-nav-overlay.active { display: block; }

.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white);
  z-index: 999;
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-top: 2px solid var(--lemon);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 0.75rem 0;
  font-weight: 600; font-size: 1rem;
  color: var(--dark);
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* -------------------------------------------------------
   Hero Section
   ------------------------------------------------------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background-image: url('/assets/images/hero-bg.jpg');
  background-size: cover; background-position: center;
  background-attachment: scroll;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.72) 0%, rgba(26,28,0,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  color: var(--white); text-align: center;
  padding: 4rem 1.25rem 3rem;
  max-width: 860px; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--lemon); color: var(--dark);
  padding: 0.35rem 1rem; border-radius: 20px;
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
}

/* Hero Search Bar */
.hero-search {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.hero-search h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  text-align: left;
}
.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.search-grid select {
  width: 100%; padding: 0.65rem 0.85rem;
  border: 1.5px solid #e0e0e0; border-radius: var(--radius);
  background: #fafafa; color: var(--dark);
  font-size: 0.9rem; font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23888' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 12px;
  padding-right: 2rem;
}
.search-grid select:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(201,162,39,0.15); }

/* -------------------------------------------------------
   Section: Featured Properties
   ------------------------------------------------------- */
.properties-section { padding: 5rem 0; background: var(--light-bg); }

/* Property Cards */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.prop-card {
  background: var(--white); border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.16); }

.prop-card-img {
  position: relative; height: 220px; overflow: hidden;
}
.prop-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.prop-card:hover .prop-card-img img { transform: scale(1.06); }

.prop-card-badges {
  position: absolute; top: 0.75rem; left: 0.75rem;
  display: flex; gap: 0.4rem; flex-wrap: wrap;
}
.prop-card-featured {
  position: absolute; top: 0.75rem; right: 0.75rem;
}

.prop-card-body { padding: 1.2rem 1.25rem 1.25rem; }
.prop-card-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.35rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.prop-card-location {
  font-size: 0.85rem; color: var(--grey);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.3rem;
}
.prop-card-location svg { flex-shrink: 0; }
.prop-card-price {
  font-size: 1.2rem; font-weight: 800;
  color: var(--gold); margin-bottom: 0.85rem;
}
.prop-card-specs {
  display: flex; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid #f0f0f0; padding-top: 0.85rem;
  font-size: 0.85rem; color: var(--grey); font-weight: 600;
}
.prop-card-spec { display: flex; align-items: center; gap: 0.3rem; }

/* -------------------------------------------------------
   About Teaser
   ------------------------------------------------------- */
.about-section { padding: 5rem 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-img-wrap { border-radius: 12px; overflow: hidden; box-shadow: var(--card-shadow); }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.stat-card {
  background: var(--light-bg); border-radius: var(--radius);
  padding: 1.25rem; text-align: center;
  border-top: 3px solid var(--gold);
}
.stat-card .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: var(--gold);
}
.stat-card .stat-label { font-size: 0.82rem; color: var(--grey); font-weight: 600; }

/* -------------------------------------------------------
   Services Teaser
   ------------------------------------------------------- */
.services-section { padding: 5rem 0; background: var(--light-bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: 12px;
  padding: 2rem 1.5rem; text-align: center;
  box-shadow: var(--card-shadow);
  border-bottom: 4px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover { border-color: var(--lemon); transform: translateY(-4px); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--lemon), var(--gold));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.6rem;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--grey); font-size: 0.9rem; line-height: 1.6; }

/* -------------------------------------------------------
   CTA Banner
   ------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a00 100%);
  padding: 4.5rem 0; text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.78); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* -------------------------------------------------------
   Properties Page — Filter Bar
   ------------------------------------------------------- */
.filter-section {
  background: var(--white);
  padding: 2rem 0 1.5rem;
  border-bottom: 2px solid #f0f0f0;
  position: sticky; top: 72px; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.filter-form {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: flex-end;
}
.filter-group { display: flex; flex-direction: column; gap: 0.3rem; }
.filter-group label { font-size: 0.78rem; font-weight: 700; color: var(--grey); text-transform: uppercase; }
.filter-group select,
.filter-group input {
  padding: 0.6rem 0.85rem; border: 1.5px solid #ddd; border-radius: var(--radius);
  font-size: 0.9rem; color: var(--dark); background: #fafafa;
  min-width: 130px;
  transition: border-color var(--transition);
}
.filter-group select:focus,
.filter-group input:focus { border-color: var(--gold); outline: none; }
.filter-results-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0;
  font-size: 0.92rem; color: var(--grey); font-weight: 600;
}

/* -------------------------------------------------------
   Property Detail Page
   ------------------------------------------------------- */
.property-detail { padding: 3rem 0 5rem; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--grey); margin-bottom: 1.5rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); font-weight: 600; }
.breadcrumb span { color: var(--grey); }

.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; }

/* Gallery */
.gallery-main {
  border-radius: 12px; overflow: hidden;
  height: 420px; cursor: zoom-in;
  position: relative; margin-bottom: 0.75rem;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-main:hover img { transform: scale(1.02); }
.gallery-thumbs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.gallery-thumb {
  width: 90px; height: 70px; border-radius: 6px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb:hover,
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  justify-content: center; align-items: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2.5rem; color: var(--white);
  cursor: pointer; background: none; border: none;
  line-height: 1; transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); color: var(--white);
  border: none; cursor: pointer;
  font-size: 2rem; padding: 0.6rem 1rem; border-radius: 6px;
  transition: background var(--transition);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); }

/* Property Specs */
.detail-title {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
  margin-bottom: 0.75rem;
}
.detail-meta {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  align-items: center; margin-bottom: 1rem;
}
.detail-price {
  font-size: 1.6rem; font-weight: 800;
  color: var(--gold); margin-bottom: 1.5rem;
}
.specs-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem; margin-bottom: 2rem;
}
.spec-item {
  background: var(--light-bg); border-radius: var(--radius);
  padding: 1rem; text-align: center;
  border-top: 3px solid var(--lemon);
}
.spec-item .spec-num { font-size: 1.4rem; font-weight: 800; color: var(--gold); }
.spec-item .spec-label { font-size: 0.78rem; color: var(--grey); font-weight: 600; text-transform: uppercase; }

.detail-description h3, .detail-features h3, .video-section h3 {
  font-size: 1.15rem; margin-bottom: 0.75rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--lemon);
}
.detail-description p { color: #555; line-height: 1.8; }
.features-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem; margin-top: 0.5rem;
}
.features-list li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: #444; padding: 0.3rem 0;
}
.features-list li::before {
  content: '✓'; color: var(--green);
  font-weight: 700; font-size: 1rem;
}

/* Enquiry Card */
.enquiry-card {
  background: var(--white); border-radius: 12px;
  padding: 1.75rem; box-shadow: var(--card-shadow);
  border-top: 4px solid var(--gold);
  position: sticky; top: 90px;
}
.enquiry-card h3 { font-size: 1.1rem; margin-bottom: 1.25rem; }
.enquiry-card .btn { width: 100%; justify-content: center; margin-bottom: 0.75rem; font-size: 0.95rem; }
.enquiry-divider { text-align: center; color: var(--grey); font-size: 0.85rem; margin: 0.5rem 0; }
.enquiry-info { margin-top: 1.25rem; font-size: 0.88rem; color: #555; }
.enquiry-info a { color: var(--gold); font-weight: 600; }

/* Video Section */
.video-section { margin-top: 2.5rem; }
.video-section video { width: 100%; border-radius: var(--radius); margin-bottom: 0.75rem; }

/* Similar Properties */
.similar-section { padding: 4rem 0; background: var(--light-bg); }

/* -------------------------------------------------------
   About Page
   ------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2800 100%);
  padding: 5rem 0 4rem; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; }
.about-full { padding: 5rem 0; }
.about-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.ceo-card {
  background: var(--light-bg); border-radius: 12px;
  padding: 2rem; text-align: center; margin-top: 2rem;
  border-top: 4px solid var(--gold);
}
.ceo-card h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.ceo-card p { color: var(--grey); font-size: 0.9rem; }

/* -------------------------------------------------------
   Services Page
   ------------------------------------------------------- */
.service-full {
  padding: 5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.service-full:nth-child(even) { background: var(--light-bg); }
.service-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.service-full:nth-child(even) .service-full-grid { direction: rtl; }
.service-full:nth-child(even) .service-full-content { direction: ltr; }
.service-full-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--lemon), var(--gold));
  border-radius: 20px; display: flex; align-items: center;
  justify-content: center; font-size: 2.2rem; margin-bottom: 1.5rem;
}
.service-full h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.service-full-img { border-radius: 12px; overflow: hidden; box-shadow: var(--card-shadow); }
.service-full-img img { width: 100%; height: 360px; object-fit: cover; }
.service-benefits { margin-top: 1.25rem; }
.service-benefits li {
  display: flex; gap: 0.5rem; align-items: flex-start;
  padding: 0.5rem 0; font-size: 0.95rem; color: #444;
}
.service-benefits li::before { content: '→'; color: var(--lemon); font-weight: 700; margin-top: 1px; }

/* -------------------------------------------------------
   Contact Page
   ------------------------------------------------------- */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lemon), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: #555; }
.contact-item a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white); border-radius: 12px;
  padding: 2rem; box-shadow: var(--card-shadow);
  border-top: 4px solid var(--gold);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid #ddd; border-radius: var(--radius);
  font-size: 0.95rem; color: var(--dark);
  transition: border-color var(--transition);
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(201,162,39,0.12); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.flash-success {
  background: #d4edda; color: #155724;
  padding: 1rem 1.25rem; border-radius: var(--radius);
  margin-bottom: 1.25rem; border-left: 4px solid #28a745;
}
.flash-error {
  background: #f8d7da; color: #721c24;
  padding: 1rem 1.25rem; border-radius: var(--radius);
  margin-bottom: 1.25rem; border-left: 4px solid var(--red);
}
.flash-info {
  background: #d1ecf1; color: #0c5460;
  padding: 1rem 1.25rem; border-radius: var(--radius);
  margin-bottom: 1.25rem; border-left: 4px solid #17a2b8;
}

/* -------------------------------------------------------
   Pagination
   ------------------------------------------------------- */
.pagination {
  display: flex; justify-content: center; gap: 0.5rem;
  flex-wrap: wrap; padding: 2.5rem 0;
}
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius);
  border: 1.5px solid #ddd; font-weight: 700; font-size: 0.9rem;
  color: var(--dark); transition: var(--transition);
}
.pagination a:hover { background: var(--lemon); border-color: var(--lemon); color: var(--dark); }
.pagination .current { background: var(--gold); border-color: var(--gold); color: var(--white); }
.pagination .dots { border: none; width: auto; }

/* -------------------------------------------------------
   404 Page
   ------------------------------------------------------- */
.notfound { padding: 8rem 0; text-align: center; }
.notfound-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 800; color: var(--lemon);
  line-height: 1; display: block;
}
.notfound h2 { font-size: 1.8rem; margin: 0.5rem 0; }
.notfound p { color: var(--grey); margin-bottom: 2rem; font-size: 1.05rem; }

/* -------------------------------------------------------
   Footer
   ------------------------------------------------------- */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.75);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 1rem; font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.65);
  font-size: 0.88rem; padding: 0.25rem 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--lemon); }
.footer-social {
  display: flex; gap: 0.6rem; margin-top: 1rem;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-bottom {
  padding-top: 1.5rem; text-align: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold); }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 997;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }

/* -------------------------------------------------------
   No Results
   ------------------------------------------------------- */
.no-results {
  text-align: center; padding: 5rem 1rem;
  grid-column: 1 / -1;
}
.no-results h3 { font-size: 1.4rem; margin-bottom: 0.75rem; color: var(--grey); }

/* -------------------------------------------------------
   Admin Styles
   ------------------------------------------------------- */
.admin-wrap { min-height: 100vh; background: #f4f5f7; }

.admin-header {
  background: var(--gold); color: var(--white);
  padding: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  position: sticky; top: 0; z-index: 900;
}
.admin-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; padding: 0 1.5rem;
}
.admin-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem; color: var(--white);
  display: flex; align-items: center; gap: 0.5rem;
}
.admin-nav { display: flex; gap: 0.25rem; }
.admin-nav a {
  color: rgba(255,255,255,0.85); padding: 0.4rem 0.85rem;
  border-radius: 4px; font-size: 0.88rem; font-weight: 600;
  transition: background var(--transition);
}
.admin-nav a:hover,
.admin-nav a.active { background: rgba(255,255,255,0.2); color: var(--white); }
.admin-nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

.admin-content { padding: 2rem 1.5rem; max-width: 1400px; margin: 0 auto; }

/* Admin Stats Cards */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card-admin {
  background: var(--white); border-radius: var(--radius);
  padding: 1.25rem 1rem; text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border-top: 4px solid var(--lemon);
}
.stat-card-admin .stat-num { font-size: 1.8rem; font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat-card-admin .stat-label { font-size: 0.78rem; color: var(--grey); font-weight: 700; text-transform: uppercase; margin-top: 0.25rem; }
.stat-card-admin.accent-gold { border-top-color: var(--gold); }
.stat-card-admin.accent-red  { border-top-color: var(--red); }
.stat-card-admin.accent-green { border-top-color: var(--green); }

/* Admin Tables */
.admin-card {
  background: var(--white); border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  overflow: hidden; margin-bottom: 2rem;
}
.admin-card-header {
  padding: 1rem 1.5rem;
  border-bottom: 2px solid #f0f0f0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.admin-card-header h3 { font-size: 1.05rem; margin: 0; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th {
  background: #f8f8f8; padding: 0.85rem 1rem;
  text-align: left; font-weight: 700; color: var(--grey);
  text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.04em;
  border-bottom: 2px solid #eee;
}
.admin-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f5f5f5;
  vertical-align: middle;
}
.admin-table tr:hover td { background: #fafaf8; }
.admin-table img { width: 70px; height: 50px; object-fit: cover; border-radius: 4px; }

/* Admin Forms */
.admin-form-wrap {
  background: var(--white); border-radius: 10px;
  padding: 2rem; box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group-full { grid-column: 1 / -1; }

/* Admin login page */
.admin-login-page {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background: var(--dark);
}
.admin-login-box {
  background: var(--white); border-radius: 16px;
  padding: 2.5rem; width: 100%; max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  text-align: center;
}
.admin-login-box img { height: 60px; margin: 0 auto 1.25rem; }
.admin-login-box h2 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.admin-login-box p { color: var(--grey); font-size: 0.88rem; margin-bottom: 1.75rem; }
.login-border { border-top: 4px solid var(--gold); border-radius: 16px; }

/* Mobile admin bottom nav */
.admin-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--white); border-top: 2px solid var(--gold);
  padding: 0.5rem 0 0.75rem;
}
.admin-bottom-nav-inner {
  display: flex; justify-content: space-around;
}
.admin-bottom-nav a {
  display: flex; flex-direction: column; align-items: center;
  font-size: 0.7rem; font-weight: 700; color: var(--grey);
  gap: 0.2rem; padding: 0.25rem 0.5rem;
  transition: color var(--transition);
}
.admin-bottom-nav a svg { width: 22px; height: 22px; }
.admin-bottom-nav a.active,
.admin-bottom-nav a:hover { color: var(--gold); }

/* Unread badge */
.unread-badge {
  display: inline-block; background: var(--red); color: var(--white);
  border-radius: 10px; font-size: 0.7rem; font-weight: 700;
  padding: 0.1rem 0.45rem; margin-left: 0.3rem; vertical-align: middle;
}

/* Image preview grid */
.image-preview-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.75rem; }
.img-preview-item { position: relative; }
.img-preview-item img { width: 100px; height: 80px; object-fit: cover; border-radius: 4px; border: 2px solid #ddd; }
.img-preview-item label {
  position: absolute; top: 4px; right: 4px;
  background: var(--red); color: var(--white);
  font-size: 0.7rem; padding: 0.15rem 0.4rem; border-radius: 3px;
  cursor: pointer; font-weight: 700;
}

/* -------------------------------------------------------
   Responsive Breakpoints
   ------------------------------------------------------- */
@media (max-width: 860px) {
  /* Navbar */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Grids */
  .about-grid,
  .about-full-grid,
  .detail-grid,
  .contact-grid,
  .service-full-grid { grid-template-columns: 1fr; }
  .service-full:nth-child(even) .service-full-grid { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .gallery-main { height: 280px; }
  .about-img-wrap img { height: 300px; }
  .enquiry-card { position: static; }

  /* Admin */
  .admin-nav { display: none; }
  .admin-nav-toggle { display: block; }
  .admin-bottom-nav { display: block; }
  .admin-content { padding: 1.5rem 1rem 5rem; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .prop-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .search-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .whatsapp-float { bottom: 5rem; right: 1rem; }
}

@media (max-width: 380px) {
  .search-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
}

/* -------------------------------------------------------
   iOS Safari fix — background-attachment: fixed unsupported
   ------------------------------------------------------- */
@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll;
    min-height: -webkit-fill-available;
  }
}
/* Make hamburger icon visible in lemon green */
.menu-toggle,
.mobile-menu-toggle,
.hamburger,
.navbar-toggler,
.elementor-menu-toggle,
.nav-toggle {
    color: #B7C800 !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 99999 !important;
}

/* Hamburger lines */
.menu-toggle span,
.mobile-menu-toggle span,
.hamburger span,
.navbar-toggler span,
.navbar-toggler-icon,
.elementor-menu-toggle span,
.nav-toggle span {
    background-color: #B7C800 !important;
    color: #B7C800 !important;
}

/* Font icons */
.menu-toggle i,
.mobile-menu-toggle i,
.hamburger i,
.navbar-toggler i,
.elementor-menu-toggle i,
.nav-toggle i {
    color: #B7C800 !important;
}

/* SVG icons */
.menu-toggle svg,
.mobile-menu-toggle svg,
.hamburger svg,
.navbar-toggler svg,
.elementor-menu-toggle svg,
.nav-toggle svg {
    fill: #B7C800 !important;
    stroke: #B7C800 !important;
}