:root {
  --primary: #c8a84e;
  --primary-dark: #a8893e;
  --primary-light: #dfc76e;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --bg-section-alt: #0e0e0e;
  --text-white: #ffffff;
  --text-light: #cccccc;
  --text-muted: #888888;
  --border-color: #222222;
  --gold-gradient: linear-gradient(135deg, #c8a84e, #dfc76e, #c8a84e);
  --dark-gradient: linear-gradient(180deg, #0a0a0a, #111111);
  --overlay-dark: rgba(0, 0, 0, 0.7);
  --overlay-darker: rgba(0, 0, 0, 0.85);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 5px 30px rgba(200, 168, 78, 0.15);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 168, 78, 0.1);
}

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

.nav-logo img {
  height: 100px;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 50px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-white);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--bg-dark) !important;
  padding: 10px 25px !important;
  border-radius: 3px;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--primary-light) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-bg .hero-fallback-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 25px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-title .gold {
  color: var(--primary);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 0.8s forwards;
  opacity: 0;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: var(--primary);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

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

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--text-white);
}

.btn-outline:hover {
  background: var(--text-white);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-gold-outline:hover {
  background: var(--primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-section-alt);
}

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

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title .gold {
  color: var(--primary);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--primary);
  margin: 20px auto;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid rgba(200, 168, 78, 0.2);
  border-bottom: 1px solid rgba(200, 168, 78, 0.2);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 168, 78, 0.3);
  box-shadow: var(--shadow);
  background: var(--bg-card-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary);
  font-size: 1.8rem;
  border: 1px solid rgba(200, 168, 78, 0.3);
  background: rgba(200, 168, 78, 0.05);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover {
  gap: 15px;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.9);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--primary);
  z-index: -1;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 25px;
  text-align: center;
}

.about-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-badge .text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.about-text-content .section-label {
  text-align: left;
}

.about-text-content .section-title {
  text-align: left;
}

.about-text-content .section-divider {
  margin: 20px 0;
}

.about-text-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature .check {
  color: var(--primary);
  font-size: 1.1rem;
}

.about-feature span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 40px 25px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(200, 168, 78, 0.3);
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

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

/* ===== TESTIMONIALS ===== */
.testimonials-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 0 40px;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-quote {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-white);
  font-size: 1rem;
}

.testimonial-role {
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 5px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border: 1px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--primary);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: url('../assets/pictures/cta-banner.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-white);
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--text-muted);
  margin-bottom: 35px;
  font-size: 1.05rem;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 28px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  text-decoration: none;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

.cta-phone:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.cta-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
}

.cta-phone:hover .cta-phone-icon {
  background: rgba(0, 0, 0, 0.15);
}

.cta-phone-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  font-size: 1.5rem;
  font-weight: 700;
}

.cta-phone-text small {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
}

.footer-main {
  padding: 80px 0 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand img {
  height: 120px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg-dark);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact-item .icon {
  color: var(--primary);
  min-width: 20px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero-contain {
  height: auto;
  aspect-ratio: 2.6 / 1;
  min-height: 0;
  background-color: #0a0a0a;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
}

.page-hero-contain::before {
  background: rgba(0, 0, 0, 0.55);
}

.page-hero-contain .page-hero-content {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-darker);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-white);
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* ===== ABOUT PAGE ===== */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.founder-image {
  position: relative;
}

.founder-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--primary);
  z-index: -1;
}

.founder-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 10px;
}

.founder-title {
  color: var(--primary);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.founder-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(200, 168, 78, 0.3);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.value-card h4 {
  font-family: var(--font-heading);
  color: var(--text-white);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 168, 78, 0.3);
}

.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: grayscale(30%);
  transition: var(--transition);
}

.team-card:hover img {
  filter: grayscale(0%);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h4 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== SERVICES PAGE ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-detail-content .section-label {
  text-align: left;
}

.service-detail-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.service-detail-content ul {
  margin: 20px 0;
}

.service-detail-content ul li {
  color: var(--text-light);
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
}

.service-detail-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(200, 168, 78, 0.15);
  font-weight: 700;
  margin-bottom: 15px;
}

.process-step h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== GALLERY PAGE ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg-dark);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item-overlay .zoom-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.gallery-item-overlay span {
  color: var(--text-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--text-white);
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--text-white);
  cursor: pointer;
  background: none;
  border: none;
  padding: 20px;
  transition: var(--transition);
}

.lightbox-nav:hover {
  color: var(--primary);
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(200, 168, 78, 0.3);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 168, 78, 0.1);
  border: 1px solid rgba(200, 168, 78, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.contact-card p,
.contact-card a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-card a:hover {
  color: var(--primary);
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 30px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(200, 168, 78, 0.1);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-group select option {
  background: var(--bg-dark);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.form-submit:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-gold);
}

.map-section {
  width: 100%;
  height: 400px;
  filter: grayscale(80%) brightness(0.7);
  border: 1px solid var(--border-color);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-accent {
    display: none;
  }

  .about-experience-badge {
    left: 20px;
  }

  .founder-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-darker);
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border-color);
  }

  .nav-links.active {
    right: 0;
  }

  /* Menu must sit ABOVE the dark overlay so links are tappable */
  .nav-links {
    z-index: 999;
  }

  .hamburger {
    display: flex;
  }

  /* Smaller logo on phones so it doesn't overlap hero content */
  .nav-logo img {
    height: 56px;
  }
  .navbar.scrolled .nav-logo img {
    height: 44px;
  }

  /* Give inner-page hero banners breathing room below the fixed navbar */
  .page-hero-contain {
    aspect-ratio: auto;
    height: 46vh;
    min-height: 340px;
  }

  /* Fixed background attachment is broken/zoomed on iOS — use scroll */
  .cta-banner {
    background-attachment: scroll;
  }

  /* Hide the scroll cue on phones — it collides with the stacked buttons */
  .hero-scroll {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    min-height: 600px;
  }

  .page-hero {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 70px 0;
  }

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

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .gallery-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 15px;
    font-size: 0.75rem;
  }
}

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}