@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary-color: #0b2545;
  --primary-light: #134074;
  --accent-color: #c69c50;
  --accent-light: #d8b26c;
  --dark-bg: #051020;
  --dark-section: #08172c;
  --light-bg: #f4f6f9;
  --white: #ffffff;
  --text-dark: #1f2937;
  --text-light: #ffffff;
  --text-grey: #6b7280;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: rgba(0, 0, 0, 0.2);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-sans: 'Montserrat', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

/* Base Headings & Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--primary-color);
}

.text-accent {
  color: var(--accent-color) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-light-grey {
  color: #9ca3af !important;
}

/* Section Common Styles */
section {
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

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

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

.section-title-wrap {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

/* Sticky Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 8%;
  transition: var(--transition-smooth);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.scrolled {
  background: rgba(11, 37, 69, 0.95);
  backdrop-filter: blur(15px);
  padding: 15px 8%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

header.scrolled .logo-img {
  height: 40px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 10px 0;
  transition: var(--transition-smooth);
  display: inline-block;
}

.nav-item > a:hover {
  color: var(--accent-color);
}

.nav-item.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
  display: inline-block;
  margin-left: 2px;
}

.nav-item.has-dropdown:hover > a::after {
  color: var(--accent-color);
}

/* Dropdown Menu CSS */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-color);
  border-top: 3px solid var(--accent-color);
  min-width: 280px;
  list-style: none;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 100;
}

.dropdown-item {
  padding: 0;
}

.dropdown-item a {
  display: block;
  padding: 10px 24px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  text-transform: none;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.dropdown-item a:hover {
  color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.03);
  padding-left: 30px;
}

/* Show dropdown on hover */
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: var(--transition-smooth);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(198, 156, 80, 0.3);
}

.btn-secondary {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--primary-color);
  color: var(--white);
}

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

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 5%;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* High-end CSS Background Image Placeholder with Ken Burns slow motion */
.hero-bg-image {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 25%, rgba(198, 156, 80, 0.15), transparent 70%), 
              linear-gradient(135deg, var(--primary-color) 0%, #061222 100%);
  background-size: cover;
  background-position: center;
  animation: kenBurnsBg 20s ease-in-out infinite alternate;
}

/* If the user later supplies img/hero-bg.jpg, this will load it, keeping the animation */
.hero-bg-image-src {
  background-image: url('img/hero-bg.jpg');
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 16, 32, 0.45) 0%, rgba(5, 16, 32, 0.85) 100%);
  z-index: 2;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-family: var(--font-serif);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.hero-btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-decoration: none;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-down:hover {
  color: var(--accent-color);
  padding-bottom: 10px;
}

.hero-scroll-down span {
  display: block;
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

/* Keyframes animations */
@keyframes kenBurnsBg {
  0% { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -0.5%); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(198, 156, 80, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(198, 156, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(198, 156, 80, 0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Section: Intro Block */
.intro-block {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  background-color: var(--dark-bg);
}

.intro-text-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.intro-lead {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: var(--accent-color);
  margin-bottom: 24px;
  line-height: 1.4;
}

.intro-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
}

/* Section: Corporate Pillars */
.award-section {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.award-badge-container {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

/* Clean Professional Promise Emblem replacing old awards */
.award-badge {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
  backdrop-filter: blur(10px);
  padding: 40px;
  text-align: center;
  max-width: 380px;
  position: relative;
  overflow: hidden;
}

.award-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
  background-size: 200% 100%;
  animation: shimmer 4s infinite linear;
}

.award-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px double var(--accent-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  background: rgba(11, 37, 69, 0.5);
}

.award-circle i {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.award-title-gold {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.award-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.award-subtext {
  font-size: 0.85rem;
  color: #9ca3af;
}

.award-pillars {
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.pillar-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 30px;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 156, 80, 0.1);
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 20px;
  border: 1px solid rgba(198, 156, 80, 0.2);
}

.pillar-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* Section: Featured Properties */
.featured-properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.property-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  background-color: var(--dark-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid var(--primary-color);
  transition: var(--transition-smooth);
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.15);
  border-bottom-color: var(--accent-color);
}

/* Glassmorphic Gradient Placeholder instead of real images */
.property-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.property-card-img {
  background-color: var(--dark-bg);
}

.property-card-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 16, 32, 0.92) 0%, rgba(5, 16, 32, 0.35) 55%, rgba(5, 16, 32, 0.15) 100%);
  z-index: 3;
}

/* Linear Grid overlay to simulate building/structural elements */
.property-card-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 2;
}

.property-card-placeholder:not(.property-card-img)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(198, 156, 80, 0.15), transparent 70%);
  z-index: 3;
}

.property-card-img::before {
  opacity: 0.12;
}

.property-card-content {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.property-status-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.property-status {
  background: rgba(11, 37, 69, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.property-status.sale {
  border-left: 2px solid var(--accent-color);
}

.property-status.lease {
  border-left: 2px solid #3b82f6;
}

.property-meta-icon {
  background: rgba(255, 255, 255, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  backdrop-filter: blur(5px);
}

.property-details {
  margin-top: auto;
}

.property-price {
  color: var(--accent-color);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.property-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.property-address {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Card Hover overlay (glassmorphism slide up) */
.property-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 37, 69, 0.95);
  backdrop-filter: blur(10px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.property-card:hover .property-hover-overlay {
  opacity: 1;
  transform: translateY(0);
}

.property-hover-overlay h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.property-hover-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 24px;
}

/* Section: Trust & Advantage */
.trust-section {
  background-color: var(--light-bg);
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.advantage-block {
  flex: 1 1 450px;
}

.advantage-list {
  list-style: none;
  margin-top: 30px;
}

.advantage-item {
  position: relative;
  padding-left: 35px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: #374151;
}

.advantage-item i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.advantage-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

/* Google Reviews & Testimonials Carousel */
.testimonials-block {
  flex: 1 1 450px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  padding: 40px;
  border-top: 4px solid var(--accent-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.google-trust {
  display: flex;
  align-items: center;
  gap: 15px;
}

.google-logo {
  height: 28px;
}

.google-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.google-rating-text {
  font-size: 0.75rem;
  color: var(--text-grey);
}

.carousel-container {
  position: relative;
  height: 180px;
  overflow: hidden;
  margin-bottom: 20px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.5;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-color);
  border: 1px solid rgba(11, 37, 69, 0.1);
  font-size: 0.85rem;
}

.author-info h5 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.author-info p {
  font-size: 0.7rem;
  color: var(--text-grey);
}

.carousel-nav {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  background: transparent;
  border: 1px solid #d1d5db;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

/* Section: How It Works */
.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
  position: relative;
  flex-wrap: wrap;
  gap: 40px;
}

/* SVG Connector line wrap */
.steps-connector-svg-wrap {
  position: absolute;
  top: 40px;
  left: 12%;
  width: 76%;
  height: 10px;
  z-index: 1;
}

.steps-connector-svg {
  width: 100%;
  height: 100%;
}

.connector-line-glow {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.connector-line-glow.active {
  stroke-dashoffset: 0;
}

.step-item {
  flex: 1 1 250px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: #d1d5db;
  margin: 0 auto 25px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.step-item:hover .step-num {
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(198, 156, 80, 0.2);
  transform: translateY(-3px);
}

.step-item h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--text-grey);
  max-width: 240px;
  margin: 0 auto;
}

/* Section: Expertise Columns (Hover-Expand Accordion Layout) */
.expertise-grid {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-top: 50px;
  height: 520px;
  transition: var(--transition-smooth);
}

.expertise-card {
  flex: 1;
  height: 100%;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-top: 4px solid var(--primary-color);
  padding: 40px 25px;
  text-align: center;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              border-top-color 0.4s ease,
              box-shadow 0.4s ease;
}

.expertise-card:hover {
  flex: 1.6;
  border-color: var(--accent-color);
  border-top-color: var(--accent-color);
  box-shadow: 0 20px 50px rgba(11, 37, 69, 0.1);
}

.expertise-icon-placeholder {
  width: 70px;
  height: 70px;
  min-height: 70px;
  border-radius: 50%;
  background: #f4f6f9;
  margin-bottom: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.expertise-icon-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(30deg, transparent 40%, rgba(198, 156, 80, 0.05) 50%, transparent 60%);
  background-size: 200% 200%;
}

.expertise-card:hover .expertise-icon-placeholder {
  background: rgba(198, 156, 80, 0.1);
}

.expertise-icon-placeholder i {
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.expertise-card:hover .expertise-icon-placeholder i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.expertise-card h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  transition: var(--transition-smooth);
}

.expertise-card:hover h3 {
  color: var(--accent-color);
}

/* Detail list - hidden when card is standard, fades/slides in on hover */
.expertise-card p.card-detail-text {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  font-size: 0.85rem;
  color: var(--text-grey);
  line-height: 1.6;
  margin-top: 0;
  transition: opacity 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease;
}

.expertise-card:hover p.card-detail-text {
  opacity: 1;
  max-height: 180px;
  margin-top: 15px;
}

.expertise-card .btn {
  opacity: 0;
  transform: translateY(15px);
  margin-top: auto;
  padding: 10px 20px;
  font-size: 0.75rem;
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

.expertise-card:hover .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Glare overlay for 3D card tilt */
.glare-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  pointer-events: none;
  background: transparent;
  transition: background 0.15s ease;
}


/* Section: Handbook Download */
.handbook-section {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--light-bg);
}

.handbook-visual {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

/* 3D Pure CSS Book Mockup */
.book-container {
  width: 240px;
  height: 320px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.book-container:hover {
  transform: rotateY(-18deg) rotateX(5deg) translateZ(10px);
  box-shadow: 25px 25px 45px rgba(0,0,0,0.2);
}

.book-cover {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #061222 100%);
  border-radius: 3px 6px 6px 3px;
  padding: 30px 25px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateZ(1px);
  border-left: 5px solid rgba(255, 255, 255, 0.1);
}

.book-logo {
  height: 35px;
  align-self: flex-start;
}

.book-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--white);
}

.book-title span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-color);
  margin-top: 15px;
  font-weight: 600;
}

.book-spine {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background: #051020;
  transform: rotateY(-90deg) translateX(-10px);
  transform-origin: left center;
  z-index: 1;
}

.book-pages {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 230px;
  height: 310px;
  background: #fdfdfd;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
  border-radius: 0 4px 4px 0;
  transform: translateZ(-5px);
  z-index: 0;
}

.handbook-info {
  flex: 1 1 500px;
}

.handbook-info h2 {
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.handbook-info p {
  color: var(--text-grey);
  margin-bottom: 30px;
}

.handbook-features {
  list-style: none;
  margin-bottom: 35px;
}

.handbook-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.handbook-features li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--accent-color);
}

/* Map Section (Single QLD Location Marker) */
.map-section {
  padding: 0;
  height: 500px;
  position: relative;
  background-color: var(--dark-bg);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #0d274c 0%, #051020 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Interactive SVG Map Lines overlay styling */
.map-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 0),
                    radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 0);
  background-size: 24px 24px, 48px 48px;
}

/* Simulated topographic lines using custom CSS gradients */
.map-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(198, 156, 80, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 156, 80, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.map-container-overlay {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  pointer-events: none;
}

.map-title {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
}

.map-subtitle {
  color: var(--accent-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Map Pulse Markers */
.map-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-marker::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: pulse 2s infinite;
}

.map-marker:hover {
  background: var(--accent-light);
  transform: translate(-50%, -50%) scale(1.2);
  transition: var(--transition-smooth);
}

.marker-label {
  position: absolute;
  bottom: 25px;
  background: rgba(11, 37, 69, 0.9);
  backdrop-filter: blur(5px);
  border: 1px solid var(--accent-color);
  color: var(--white);
  padding: 6px 12px;
  font-size: 0.65rem;
  white-space: nowrap;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(5px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.map-marker:hover .marker-label {
  opacity: 1;
  transform: translateY(0);
}

/* Single QLD Marker coordinates centered */
#marker-qld {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Section: Footer Form & Info */
footer {
  background-color: #030a14;
  color: var(--white);
  padding: 100px 8% 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-form-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: -10px 0 24px;
  max-width: 420px;
}

.footer-form-side h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 0;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
}

.form-label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -10px;
  font-size: 0.7rem;
  color: var(--accent-color);
}

textarea.form-input {
  min-height: 80px;
  resize: vertical;
}

.form-btn-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}

.form-submit-btn {
  background: transparent;
  border: none;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  transition: var(--transition-smooth);
}

.form-submit-btn:hover {
  color: var(--accent-color);
  padding-left: 8px;
}

/* Footer quick links + office */
.footer-info-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-quick-links h4,
.office-info h4 {
  color: var(--accent-color);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.footer-quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-quick-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-quick-links a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.nav-menu a.active {
  color: var(--accent-color);
}

.nav-cta-btn {
  padding: 10px 20px !important;
  font-size: 0.75rem !important;
}

.img-fallback {
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: linear-gradient(135deg, #1a2a3a 0%, #0d1824 100%);
}

.office-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.office-info a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
}

.office-info a:hover {
  color: var(--accent-color);
}

/* Social & Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links-wrap {
  display: flex;
  gap: 30px;
}

.footer-link {
  text-decoration: none;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--white);
}

.copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  section {
    padding: 80px 5%;
  }
  header, header.scrolled {
    padding: 20px 5%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem !important;
  }
  .section-title {
    font-size: 2rem;
  }
  .mobile-toggle {
    display: block;
  }
  
  /* Mobile dropdown support */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-section);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    transition: var(--transition-smooth);
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow-y: auto;
    padding: 100px 30px;
    align-items: flex-start;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-item > a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border-top: none;
    padding: 5px 0 5px 15px;
    display: none;
    min-width: auto;
  }
  
  .nav-item.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-item a {
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .hero-btn-group {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-btn-group .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-info-side {
    padding-left: 0;
    border-left: none;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Mobile Accordion Overrides */
  .expertise-grid {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 25px;
  }
  
  .expertise-card {
    flex: none !important;
    height: auto;
  }
  
  .expertise-card p.card-detail-text {
    opacity: 1;
    max-height: none;
    margin-top: 15px;
  }
  
  .expertise-card .btn {
    opacity: 1;
    transform: none;
    margin-top: 20px;
  }
  
  /* Mobile steps SVG connector hidden */
  .steps-connector-svg-wrap {
    display: none;
  }
}

/* Reveal transition on scroll (Intersection Observer classes) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Subpage Hero Header Section */
.page-hero {
  height: 45vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 5%;
}

.page-hero .hero-bg-image {
  animation: kenBurnsBg 25s ease-in-out infinite alternate;
}

.page-hero h1.page-title {
  font-size: 2.8rem;
  font-family: var(--font-serif);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.page-hero p.page-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-color);
}

/* Unique background image mappings for subpages (each image path used exactly once) */
.services-hero { background-image: url('img/services-hero.jpg'); }
.holding-hero { background-image: url('img/holding-hero.jpg'); }
.portfolio-hero { background-image: url('img/portfolio-hero.jpg'); }
.structuring-hero { background-image: url('img/structuring-hero.jpg'); }
.consultancy-hero { background-image: url('img/consultancy-hero.jpg'); }
.properties-hero { background-image: url('img/properties-hero.jpg'); }
.sale-hero { background-image: url('img/sale-hero.jpg'); }
.lease-hero { background-image: url('img/lease-hero.jpg'); }
.resources-hero { background-image: url('img/resources-hero.jpg'); }
.handbook-hero { background-image: url('img/handbook-hero.jpg'); }
.faqs-hero { background-image: url('img/faqs-hero.jpg'); }
.reviews-hero { background-image: url('img/reviews-hero.jpg'); }
.appraisal-hero { background-image: url('img/appraisal-hero.jpg'); }
.contact-hero { background-image: url('img/contact-hero.jpg'); }
.privacy-hero { background-image: url('img/privacy-hero.jpg'); }
.cookie-hero { background-image: url('img/cookie-hero.jpg'); }
.terms-hero { background-image: url('img/terms-hero.jpg'); }

/* Centered content block layout for blank subpages */
.page-content-block {
  padding: 80px 8%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-content-block p {
  font-size: 1.1rem;
  color: var(--text-grey);
  margin-bottom: 30px;
}

/* ===== CINEMATIC HOMEPAGE HERO ===== */
.hero-cinematic {
  text-align: left;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
}

.hero-overlay-gradient {
  background:
    linear-gradient(105deg, rgba(5, 16, 32, 0.92) 0%, rgba(5, 16, 32, 0.75) 45%, rgba(5, 16, 32, 0.35) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(5, 16, 32, 0.95) 100%);
}

.hero-split-layout {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 8% 100px;
  align-items: center;
  min-height: 100vh;
}

.hero-left {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(198, 156, 80, 0.35);
  background: rgba(198, 156, 80, 0.08);
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 28px;
}

.hero-headline .line-reveal {
  display: block;
  overflow: hidden;
}

.hero-headline .line-reveal span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: lineSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-headline .line-reveal[data-delay="0"] span { animation-delay: 0.15s; }
.hero-headline .line-reveal[data-delay="1"] span { animation-delay: 0.35s; }
.hero-headline .line-reveal[data-delay="2"] span { animation-delay: 0.55s; }

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

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

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

.hero-btn-group-left {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.hero-floating-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 32px;
  width: 100%;
  max-width: 380px;
  position: relative;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-floating-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-color), transparent);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-row:last-child { border-bottom: none; }

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num .counter-suffix {
  font-size: 1rem;
  color: var(--accent-color);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
  max-width: 140px;
  line-height: 1.4;
}

.hero-mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 380px;
  opacity: 0;
  animation: fadeInUp 1s ease 1.2s forwards;
}

.hero-mini-gallery img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition-smooth);
}

.hero-mini-gallery img:hover {
  transform: scale(1.03);
  border-color: var(--accent-color);
}

/* Location Marquee */
.location-marquee-wrap {
  background: var(--primary-color);
  border-top: 1px solid rgba(198, 156, 80, 0.2);
  border-bottom: 1px solid rgba(198, 156, 80, 0.2);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.location-marquee {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.location-marquee:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.marquee-item i {
  color: var(--accent-color);
  font-size: 0.65rem;
}

/* Stats Bento Grid */
.stats-bento-section {
  padding: 0 8% 80px;
  margin-top: -40px;
  position: relative;
  z-index: 6;
}

.stats-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.bento-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
  box-shadow: 0 12px 40px rgba(11, 37, 69, 0.1);
}

.bento-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--white);
  border: none;
}

.bento-card.featured h3,
.bento-card.featured .bento-num { color: var(--white); }

.bento-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 156, 80, 0.12);
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.bento-card.featured .bento-icon {
  background: rgba(198, 156, 80, 0.2);
  color: var(--accent-light);
}

.bento-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 8px;
}

.bento-label {
  font-size: 0.8rem;
  color: var(--text-grey);
  line-height: 1.5;
}

.bento-card.featured .bento-label { color: rgba(255, 255, 255, 0.7); }

.bento-card.featured p.bento-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

/* Split Intro Section */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 8%;
  background: var(--dark-bg);
}

.intro-visual-col {
  position: relative;
}

.intro-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid rgba(198, 156, 80, 0.3);
}

.intro-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  height: 200px;
  object-fit: cover;
  border: 3px solid var(--accent-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.intro-badge-float {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--accent-color);
  color: var(--white);
  padding: 16px 22px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
  box-shadow: 0 10px 30px rgba(198, 156, 80, 0.35);
}

.intro-text-col .intro-lead {
  text-align: left;
  font-size: 1.65rem;
}

.intro-text-col .intro-sub {
  text-align: left;
  margin-bottom: 20px;
}

.intro-checklist {
  list-style: none;
  margin: 28px 0 36px;
}

.intro-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.intro-checklist li i {
  color: var(--accent-color);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== SHARED PAGE ARTICLE STYLES ===== */
.page-article {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 5%;
  text-align: left;
  color: var(--text-grey);
  line-height: 1.85;
}

.page-article .article-lead {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.7;
  border-left: 4px solid var(--accent-color);
  padding-left: 24px;
}

.page-article h2 {
  color: var(--primary-color);
  font-size: 1.65rem;
  margin: 48px 0 18px;
  font-family: var(--font-serif);
}

.page-article h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin: 28px 0 12px;
  border-bottom: 1px solid rgba(198, 156, 80, 0.25);
  padding-bottom: 8px;
}

.page-article ul, .page-article ol {
  margin: 16px 0 24px 24px;
}

.page-article li { margin-bottom: 10px; }

.page-article .content-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  margin: 32px 0;
  border: 1px solid #e5e7eb;
}

.page-article .content-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.page-article .content-img-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

.page-article .callout-box {
  background: #f8f9fb;
  border-left: 4px solid var(--accent-color);
  padding: 24px 28px;
  margin: 32px 0;
  font-size: 0.95rem;
}

.page-article .callout-box strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.page-article .info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.88rem;
}

.page-article .info-table th,
.page-article .info-table td {
  border: 1px solid #e5e7eb;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.page-article .info-table th {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
}

.page-article .info-table tr:nth-child(even) td {
  background: #f9fafb;
}

/* FAQ Accordion */
.faq-accordion { margin: 32px 0; }

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--accent-color); }

.faq-question i {
  color: var(--accent-color);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding-bottom: 22px;
}

/* Contact Page Layout */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
  align-items: start;
}

.contact-info-panel h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-detail-card {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-detail-card i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 156, 80, 0.1);
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form-panel {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-top: 4px solid var(--accent-color);
  padding: 40px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.contact-form-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.contact-form-panel .form-subtitle {
  color: var(--text-grey);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

.form-select {
  width: 100%;
  padding: 16px 12px;
  border: 1px solid #d1d5db;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* Reviews Grid */
.reviews-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5% 80px;
}

.review-card-page {
  background: var(--white);
  border: 1px solid #e5e7eb;
  padding: 32px;
  position: relative;
  transition: var(--transition-smooth);
}

.review-card-page:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.review-card-page::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(198, 156, 80, 0.15);
  line-height: 1;
}

.review-stars { color: var(--accent-color); margin-bottom: 16px; font-size: 0.85rem; }

.review-card-page .review-text {
  font-size: 0.95rem;
  color: var(--text-grey);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

@media (max-width: 1100px) {
  .hero-split-layout { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .stats-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card.featured { grid-column: span 2; }
  .intro-split { grid-template-columns: 1fr; }
  .intro-img-accent { right: 0; bottom: -20px; }
  .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-mini-gallery { display: none; }
  .stats-bento-grid { grid-template-columns: 1fr; }
  .bento-card.featured { grid-column: span 1; }
  .page-article .content-img-row { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

