/* AB Greenvalley Landscaping - Premium Stylesheet */

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

:root {
  /* Colors */
  --primary-green: #061d11;
  --primary-green-light: #0d3822;
  --primary-green-rgb: 6, 29, 17;
  --accent-gold: #cda15d;
  --accent-gold-dark: #ab813d;
  --accent-gold-rgb: 205, 161, 93;
  --dark-obsidian: #050c07;
  --light-velvet: #f4f6f4;
  --text-light: #f9faf9;
  --text-dark: #1f2421;
  --text-muted-light: #a5b0a9;
  --text-muted-dark: #637068;
  --error: #e05e5e;
  --success: #63bf89;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --transition-smooth: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.3s ease;
  
  /* Borders & Glass */
  --glass-bg: rgba(6, 29, 17, 0.75);
  --glass-border: rgba(205, 161, 93, 0.2);
  --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background-color: var(--dark-obsidian);
  color: var(--text-light);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  background-color: var(--dark-obsidian);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-obsidian);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typographic Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Luxury Utilities */
.gold-text {
  color: var(--accent-gold);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fce0ad 0%, #cda15d 50%, #8c6832 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.luxury-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.luxury-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.section-padding {
  padding: 8rem 0;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--border-radius);
}

/* Buttons */
.btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.4rem;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(205, 161, 93, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fce0ad 0%, var(--accent-gold) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: -1;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(205, 161, 93, 0.45);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.4rem;
  background: transparent;
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--accent-gold);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--primary-green);
  box-shadow: 0 8px 25px rgba(205, 161, 93, 0.2);
  transform: translateY(-3px);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-obsidian);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-content {
  text-align: center;
  max-width: 400px;
  width: 80%;
}

.preloader-logo {
  max-width: 180px;
  height: auto;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: scale(0.8);
  animation: logoReveal 1.5s forwards cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 10px rgba(205, 161, 93, 0.2));
}

.preloader-bar-bg {
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-green-light) 0%, var(--accent-gold) 100%);
  transition: width 0.1s linear;
}

.preloader-counter {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
}

.preloader-status {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted-light);
  margin-top: 0.5rem;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  border: none;
}

.float-call {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--primary-green);
}

.float-whatsapp {
  background: #25D366;
}

.float-quote {
  background: var(--primary-green-light);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

/* Header & Top Bar */
.top-bar {
  background: rgba(3, 10, 5, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0.5rem 0;
  font-size: 0.8rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 2rem;
  color: var(--text-muted-light);
}

.top-info span i {
  color: var(--accent-gold);
  margin-right: 0.5rem;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2px;
  cursor: pointer;
}

.lang-btn {
  padding: 4px 12px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 0.75rem;
  border: none;
  background: transparent;
  color: var(--text-muted-light);
  transition: var(--transition-fast);
  cursor: pointer;
}

.lang-btn.active {
  background: var(--accent-gold);
  color: var(--primary-green);
}

.header-lang-switcher {
  display: none !important;
}
@media (max-width: 991px) {
  .header-lang-switcher {
    display: flex !important;
    margin-left: auto;
    margin-right: 1.5rem;
    align-items: center;
    z-index: 1001;
  }
}

/* Navigation Header */
#main-header {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

#main-header.sticky {
  position: fixed;
  top: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo img {
  height: 90px;
  width: auto;
  transition: var(--transition-fast);
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
}

#main-header.sticky .logo img {
  height: 70px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.mobile-close-li {
  display: none;
}

.mobile-cta-li {
  display: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.75rem;
}

.burger-menu {
  display: none;
  cursor: pointer;
}

.burger-menu div {
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  margin: 5px;
  transition: var(--transition-fast);
}

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

.hero-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-swiper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 12, 7, 0.35) 0%, rgba(5, 12, 7, 0.55) 60%, rgba(5, 12, 7, 0.85) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-swiper-prev,
.hero-swiper-next {
  color: var(--accent-gold) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(4, 14, 8, 0.5) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
}

.hero-swiper-prev::after,
.hero-swiper-next::after {
  font-size: 1.0rem !important;
  font-weight: 900;
}

.hero-swiper-prev:hover,
.hero-swiper-next:hover {
  background: var(--accent-gold) !important;
  color: var(--primary-green) !important;
  border-color: var(--accent-gold) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.hero-swiper-prev {
  left: 2rem !important;
}

.hero-swiper-next {
  right: 2rem !important;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 720px;
  margin-top: 60px;
}

.hero-title {
  font-size: clamp(2.0rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--text-muted-light);
  margin-bottom: 1.8rem;
  max-width: 580px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn-gold,
.hero-buttons .btn-outline {
  padding: 0.75rem 1.6rem;
  font-size: 0.8rem;
}

/* Hero Socials */
.hero-socials {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hero-socials a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-socials a:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-3px);
}

@media (min-width: 769px) {
  .hero-content {
    margin-left: 80px;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted-light);
}

.scroll-indicator i {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  color: var(--accent-gold);
}

/* About Section Splitting */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-grid > * {
  min-width: 0;
}

.about-left-story {
  /* Animated via GSAP */
}

.about-visuals {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-box {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.about-img-box img {
  transition: transform 1.5s var(--transition-smooth);
}

.about-img-box:hover img {
  transform: scale(1.05);
}

.about-swiper .swiper-pagination {
  bottom: 1.5rem !important;
}

.about-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.about-swiper .swiper-pagination-bullet-active {
  background: var(--accent-gold);
  width: 24px;
  border-radius: 5px;
}

.about-experience-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 220px;
}

.about-experience-badge h2 {
  font-size: 3.5rem;
  line-height: 1;
}

.about-experience-badge p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-top: 0.5rem;
}

.about-three-pillars {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.03);
  background: rgba(255, 255, 255, 0.02);
}

.pillar-card i {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pillar-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.pillar-card p {
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

/* Services Section */
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
  gap: 2.5rem;
}

.service-card {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
  perspective: 1000px;
  transform-style: preserve-3d;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, rgba(205, 161, 93, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.service-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(205, 161, 93, 0.08);
  border: 1px solid rgba(205, 161, 93, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  transition: var(--transition-fast);
}

.service-icon-box i {
  color: var(--accent-gold);
  font-size: 1.8rem;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-fast);
}

.service-card p {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.service-link i {
  transition: transform var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
}

.service-card:hover .service-icon-box {
  background: var(--accent-gold);
}

.service-card:hover .service-icon-box i {
  color: var(--primary-green);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* Why Choose Us & Stats Counter */
.why-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(13, 56, 34, 0.15) 0%, transparent 80%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 6rem;
  border-bottom: 1px solid rgba(205, 161, 93, 0.1);
  padding-bottom: 5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  font-weight: 600;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.adv-card {
  padding: 1rem;
}

.adv-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent-gold);
  opacity: 0.5;
  margin-bottom: 1.5rem;
  display: block;
}

.adv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.adv-card p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

/* Before & After Interactive Slider */
.ba-container {
  max-width: 1000px;
  margin: 0 auto;
}

.ba-slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  user-select: none;
  touch-action: none;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-after {
  z-index: 10;
}

.ba-before {
  z-index: 20;
  width: 50%;
  overflow: hidden;
}

/* Force before image to fit exactly 100% of the wrapper container */
.ba-before img {
  max-width: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--accent-gold);
  z-index: 30;
  cursor: ew-resize;
  transform: translateX(-50%);
  touch-action: none;
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  border: 4px solid var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  font-size: 0.8rem;
  touch-action: none;
}

.ba-badge {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 25;
  border-radius: 4px;
  font-weight: 700;
  pointer-events: none;
}

.ba-before-badge {
  left: 1.5rem;
  background-color: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

.ba-after-badge {
  right: 1.5rem;
  background-color: rgba(205, 161, 93, 0.8);
  color: var(--primary-green);
  border: 1px solid var(--accent-gold);
}

.gallery-item.before-after-slider {
  aspect-ratio: 16/9 !important;
  height: auto !important;
  cursor: default !important;
  grid-column: span 2;
}

@media (max-width: 991px) {
  .gallery-item.before-after-slider {
    grid-column: span 1;
  }
}

.ba-slider-caption {
  margin-top: 1rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Gallery Masonry & Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted-light);
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background-color: rgba(205, 161, 93, 0.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.03);
  aspect-ratio: 1;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--primary-green) 0%, rgba(5, 12, 7, 0.2) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 2;
}

.gallery-overlay h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  transform: translateY(15px);
  transition: transform var(--transition-fast);
}

.gallery-overlay span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  transform: translateY(15px);
  transition: transform var(--transition-fast) 0.05s;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 10, 5, 0.98);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid var(--glass-border);
}

.lightbox-caption {
  text-align: center;
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-light);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--text-light);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

/* Testimonials Carousel */
.testimonials-section {
  background: radial-gradient(circle at 90% 10%, rgba(205, 161, 93, 0.08) 0%, transparent 60%);
}

.testimonials-slider {
  padding-bottom: 4rem;
}

.testimonial-card {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
}

.test-stars {
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 4px;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.4;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.test-user {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.test-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent-gold);
}

.test-user h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-family: var(--font-sans);
}

.test-user span {
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

/* FAQ Accordion */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 1.8rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-question h3 {
  font-size: 1.25rem;
  font-family: var(--font-sans);
}

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--accent-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255,255,255,0.01);
}

.faq-answer-inner {
  padding: 0 2.5rem 2rem;
  color: var(--text-muted-light);
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.02);
  margin-top: -1px;
}

.faq-item.active {
  border-color: var(--accent-gold);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--accent-gold);
  color: var(--primary-green);
}

/* Blog Section */
.blog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-search-box {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.blog-search-box input {
  width: 100%;
  padding: 0.8rem 1.2rem 0.8rem 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: var(--text-light);
  outline: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.blog-search-box input:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
}

.blog-search-box i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-img-box {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--glass-border);
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--transition-smooth);
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.06);
}

.blog-card-content {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.blog-card h3 {
  font-size: 1.45rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* Service Area */
.area-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.area-city {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.area-city i {
  color: var(--accent-gold);
}

.area-map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  position: relative;
  aspect-ratio: 16/10;
  background-color: #0b0c0b;
}

/* Stylized luxury iframe overlay */
.area-map-container iframe {
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(110deg) saturate(30%) brightness(95%);
  border: 0;
}

/* Contact Section & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
}

.contact-form {
  padding: 4rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 0.75rem;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 1.1rem 1.4rem;
  color: var(--text-light);
  outline: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.04);
}

select option {
  color: #000000 !important;
  background-color: #ffffff !important;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  justify-content: center;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(205, 161, 93, 0.2);
  background: rgba(205, 161, 93, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  color: var(--accent-gold);
  font-size: 1.4rem;
}

.info-details h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
}

.info-details p,
.info-details a {
  color: var(--text-muted-light);
  font-size: 0.95rem;
}

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

/* Call To Action */
.cta-section {
  position: relative;
  background: linear-gradient(rgba(5, 12, 7, 0.9), rgba(5, 12, 7, 0.9)),
              url('https://images.unsplash.com/photo-1558904541-efa8c3a30fc9?auto=format&fit=crop&q=80&w=1400');
  background-size: cover;
  background-position: center;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-muted-light);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background-color: #030805;
  border-top: 1px solid rgba(255,255,255,0.02);
  padding: 6rem 0 3rem;
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.footer-col p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

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

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

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icons a:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background-color: rgba(205, 161, 93, 0.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

/* Modals & Popups */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 10, 5, 0.85);
  backdrop-filter: blur(8px);
  z-index: 11000;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-content {
  width: 90%;
  max-width: 600px;
  position: relative;
  padding: 4rem 3rem 3rem;
  border-radius: var(--border-radius);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-muted-light);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--accent-gold);
}

.form-success-alert {
  display: none;
  background-color: rgba(99, 191, 137, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Animations */
@keyframes logoReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .about-grid, .contact-grid, .area-grid {
    gap: 3rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 6rem 0;
  }
  .top-info {
    display: none;
  }
  .burger-menu {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #061d11 !important;
    background: #061d11 !important;
    border: none !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 1.8rem;
    transform: translate3d(100%, 0, 0) !important;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    z-index: 999999 !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav-links.open {
    transform: translate3d(0, 0, 0) !important;
    visibility: visible;
  }
  /* Prevent scroll when menu is active on mobile */
  body.menu-open {
    overflow: hidden !important;
  }
  /* Force disable sticky header glassmorphism and background transparency when menu is open to prevent Safari compositing bugs */
  body.menu-open #main-header,
  body.menu-open #main-header.sticky {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
  }
  .nav-links a {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
  }
  .mobile-close-li {
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    list-style: none;
  }
  .menu-close-btn {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-close-btn:hover {
    color: #fff;
    transform: scale(1.1);
  }
  .mobile-cta-li {
    display: flex;
    list-style: none;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }
  .menu-cta-container {
    display: flex;
    gap: 0.8rem;
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }
  .menu-cta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition-fast);
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid rgba(205, 161, 93, 0.4);
  }
  .menu-cta-btn i {
    font-size: 0.85rem;
  }
  .menu-cta-btn:hover {
    background: rgba(205, 161, 93, 0.1);
    border-color: var(--accent-gold);
    color: #fff;
    transform: translateY(-1px);
  }
  .about-grid, .contact-grid, .area-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .adv-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  #main-header {
    top: 0;
  }
  .hero {
    height: auto;
    min-height: 100vh;
  }
  .hero-container {
    height: auto;
    min-height: calc(100vh - 180px);
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-content {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-title {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
    line-height: 1.2;
    margin-bottom: 0.8rem;
    text-align: center;
  }
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    gap: 0.6rem;
  }
  .hero-buttons .btn-gold,
  .hero-buttons .btn-outline {
    width: auto;
    max-width: none;
    padding: 0.6rem 1.1rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
  .hero-swiper-prev,
  .hero-swiper-next {
    width: 36px !important;
    height: 36px !important;
  }
  .hero-swiper-prev::after,
  .hero-swiper-next::after {
    font-size: 0.8rem !important;
  }
  .hero-swiper-prev {
    left: 0.5rem !important;
  }
  .hero-swiper-next {
    right: 0.5rem !important;
  }
  .hero-socials {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .blog-controls {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 2.5rem 1.5rem;
  }
  .about-three-pillars {
    grid-template-columns: 1fr;
  }
  .about-experience-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 1.5rem;
    max-width: 160px;
  }
  .about-experience-badge h2 {
    font-size: 2.5rem;
  }
  .about-experience-badge p {
    font-size: 0.65rem;
  }
}


/* CMS Dashboard & Mobile App Styling Integration */
.admin-body {
  background-color: #030805;
  color: #e5ece8;
  font-family: var(--font-sans);
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background-color: #05140b;
  border-right: 1px solid rgba(205, 161, 93, 0.15);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.admin-logo h3 {
  font-family: var(--font-serif);
  color: var(--accent-gold);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.admin-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-muted-light);
}

.admin-menu-item i {
  font-size: 1.1rem;
  width: 20px;
}

.admin-menu-item:hover,
.admin-menu-item.active {
  background-color: rgba(205, 161, 93, 0.1);
  color: var(--accent-gold);
}

.admin-main {
  padding: 3rem;
  overflow-y: auto;
  max-height: 100vh;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 1.5rem;
}

.admin-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.admin-stat-card {
  padding: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.admin-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(205, 161, 93, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-gold);
}

.admin-stat-info h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted-light);
  font-family: var(--font-sans);
}

.admin-stat-info h3 {
  font-size: 1.8rem;
  line-height: 1.2;
}

.admin-panel-section {
  display: none;
}

.admin-panel-section.active {
  display: block;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.admin-table th, 
.admin-table td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.admin-table th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
}

.admin-table tbody tr:hover {
  background-color: rgba(255,255,255,0.01);
}

.status-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
}

.status-badge.new { background-color: rgba(205, 161, 93, 0.15); color: var(--accent-gold); }
.status-badge.contacted { background-color: rgba(99, 191, 137, 0.15); color: var(--success); }
.status-badge.pending { background-color: rgba(255, 193, 7, 0.15); color: #ffc107; }
.status-badge.approved { background-color: rgba(99, 191, 137, 0.15); color: var(--success); }
.status-badge.archived { background-color: rgba(255,255,255,0.1); color: var(--text-muted-light); }

.admin-btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-fast);
  background-color: rgba(255,255,255,0.05);
  color: white;
}

.admin-btn:hover {
  background-color: rgba(255,255,255,0.1);
}

.admin-btn-action {
  background-color: rgba(205, 161, 93, 0.1);
  color: var(--accent-gold);
  border-color: rgba(205, 161, 93, 0.2);
}

.admin-btn-action:hover {
  background-color: var(--accent-gold);
  color: var(--primary-green);
}

/* Mobile App Simulator Mockup Frame */
.mobile-app-body {
  background-color: #0b0c0b;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.phone-mockup {
  width: 380px;
  height: 780px;
  background-color: #000;
  border-radius: 44px;
  padding: 12px;
  border: 4px solid #333;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 0 8px rgba(205, 161, 93, 0.15);
  position: relative;
  overflow: hidden;
}

/* Phone Screen Area */
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background-color: #06120a;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  color: #e5ece8;
  font-size: 0.85rem;
}

/* Phone Notch */
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 24px;
  background-color: #000;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-notch::after {
  content: '';
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background-color: #222;
}

.phone-header {
  padding: 2.2rem 1.2rem 0.8rem;
  background-color: #040e08;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-header h4 {
  font-family: var(--font-serif);
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.phone-content {
  flex-grow: 1;
  padding: 1.2rem;
  overflow-y: auto;
}

.phone-nav {
  height: 60px;
  background-color: #040e08;
  border-top: 1px solid rgba(255,255,255,0.03);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 50;
}

.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.65rem;
  color: var(--text-muted-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.phone-nav-item i {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.phone-nav-item.active {
  color: var(--accent-gold);
}

.phone-job-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.phone-job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding-bottom: 0.5rem;
}

.phone-job-header h5 {
  font-size: 0.9rem;
  color: var(--accent-gold);
  font-family: var(--font-sans);
}

.phone-job-meta {
  font-size: 0.75rem;
  color: var(--text-muted-light);
  margin-bottom: 0.5rem;
}

.phone-job-meta i {
  margin-right: 0.4rem;
  color: var(--accent-gold);
}

/* =========================================================================
   Admin Panel Responsive Design (Android & iOS Compatibility)
   ========================================================================= */
/* Mobile Admin Helper Elements Hidden on Desktop */
.admin-mobile-top-bar {
  display: none;
}
.admin-sidebar-overlay {
  display: none;
}
.admin-sidebar-close {
  display: none;
}

@media (max-width: 1024px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-mobile-top-bar {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #05140b;
    border-bottom: 1px solid rgba(205, 161, 93, 0.15);
    padding: 0 1.5rem;
    z-index: 1003;
  }

  .admin-menu-toggle {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: color var(--transition-fast);
  }

  .admin-menu-toggle:hover {
    color: #fff;
  }

  .admin-mobile-logo {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  .admin-sidebar-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 10, 5, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1004;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .admin-sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  .admin-sidebar {
    position: fixed !important;
    top: 0;
    left: 0;
    height: 100vh !important;
    width: 280px !important;
    background-color: #05140b !important;
    z-index: 1005 !important;
    transform: translate3d(-100%, 0, 0) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 10px 0 30px rgba(0,0,0,0.5) !important;
    flex-direction: column !important;
    padding: 2.5rem 1.5rem !important;
    gap: 2rem !important;
    border-bottom: none !important;
    border-right: 1px solid rgba(205, 161, 93, 0.15) !important;
  }

  .admin-sidebar.open {
    transform: translate3d(0, 0, 0) !important;
  }

  .admin-logo {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    position: relative !important;
    width: 100% !important;
  }

  .admin-sidebar-close {
    display: flex !important;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.2rem;
    transition: var(--transition-fast);
    align-items: center;
    justify-content: center;
  }

  .admin-sidebar-close:hover {
    color: #fff;
    transform: scale(1.1);
  }

  .admin-sidebar nav {
    width: 100%;
    margin: 0.5rem 0;
  }

  .admin-menu {
    flex-direction: column !important;
    overflow-x: visible !important;
    gap: 0.5rem !important;
    padding-bottom: 0 !important;
  }

  .admin-menu-item {
    white-space: normal !important;
    padding: 0.9rem 1.2rem !important;
    font-size: 0.85rem !important;
    width: 100% !important;
  }

  .admin-sidebar div[style*="border-top"] {
    display: block !important;
  }

  .admin-main {
    padding: 1.5rem;
    padding-top: 80px !important; /* Make room for mobile fixed top bar */
    max-height: none;
    overflow-y: visible;
  }

  .admin-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }

  .admin-header > div {
    width: 100%;
  }

  .admin-header > div:nth-child(2) {
    display: flex !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
  }

  .admin-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .admin-stat-card {
    padding: 1.2rem;
    gap: 1rem;
  }

  .admin-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .admin-stat-info h3 {
    font-size: 1.5rem;
  }

  /* Force display:grid containers to stack on mobile */
  .admin-panel-section div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Make tables scrollable */
  .glass-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-table {
    min-width: 600px;
  }
}

@media (max-width: 576px) {
  .admin-stats-strip {
    grid-template-columns: 1fr !important;
  }

  .admin-header > div:nth-child(2) {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
  }
  
  .admin-header > div:nth-child(2) img {
    display: none !important; /* Hide avatar on very small screens to save space */
  }
}

/* =========================================================================
   COMMERCIAL SHOWCASE SECTION SWIPER OVERRIDES
   ========================================================================= */
.commercial-swiper .swiper-pagination {
  bottom: 1.5rem !important;
}

.commercial-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.commercial-swiper .swiper-pagination-bullet-active {
  background: var(--accent-gold);
  width: 24px;
  border-radius: 5px;
}

.commercial-swiper-prev,
.commercial-swiper-next {
  color: var(--accent-gold) !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(4, 14, 8, 0.65) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.commercial-swiper-prev::after,
.commercial-swiper-next::after {
  font-size: 0.8rem !important;
  font-weight: 900;
}

.commercial-swiper-prev:hover,
.commercial-swiper-next:hover {
  background: var(--accent-gold) !important;
  color: var(--primary-green) !important;
  border-color: var(--accent-gold) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.commercial-swiper-prev {
  left: 1rem !important;
}

.commercial-swiper-next {
  right: 1rem !important;
}

/* Navigation items responsive display controls */
#pwa-install-li {
  display: none !important;
}

@media (max-width: 991px) {
  #pwa-install-li {
    display: block !important;
  }
}
