/* =========================================================================
   Variables & Theme
   ========================================================================= */
:root {
  --primary: #d4af37; /* Luxury Gold */
  --primary-dark: #b5952f;
  --bg-dark: #0a0a0a; /* Deep Black */
  --bg-darker: #050505;
  --bg-light: #f5f0e6; /* Warm Beige */
  --text-light: #ffffff;
  --text-muted: #a0a0a0;
  --text-dark: #1a1a1a;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --section-padding: 100px 0;
}

/* =========================================================================
   Reset & Globals
   ========================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* =========================================================================
   Typography & Utilities
   ========================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

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

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

.section-padding {
  padding: var(--section-padding);
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.me-2 { margin-right: 0.5rem; }

.bg-dark { background-color: var(--bg-darker); }
.bg-light { background-color: var(--bg-light); color: var(--text-dark); }
.text-primary { color: var(--primary); }

.section-badge {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid var(--primary);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  border-radius: 30px;
  margin-bottom: 20px;
}

.badge-light {
}

.section-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.bg-light .section-subtitle { color: #666; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

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

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--bg-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.bg-light .btn-outline {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
}
.bg-light .btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
}

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

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
  display: flex;
  flex-direction: column;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: -5px;
}
.footer-brand .logo h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: -5px;
}

.logo span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--text-light);
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s ease-out; /* zoom effect */
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  z-index: 10;
  max-width: 800px;
}

.hero-subtitle {
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 25px;
  color: #fff;
}

.hero-desc {
  font-size: 1.25rem;
  color: #ddd;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-controls {
  position: absolute;
  bottom: 40px;
  right: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.slider-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* =========================================================================
   Trust Strip (Marquee)
   ========================================================================= */
.trust-strip {
  background: var(--primary);
  color: var(--bg-dark);
  padding: 15px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll-marquee 20s linear infinite;
}

.trust-item {
  font-size: 1.1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
}

.marquee-content .dot {
  width: 5px;
  height: 5px;
  background: var(--bg-dark);
  margin: 0 20px;
  flex-shrink: 0;
}

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

/* =========================================================================
   About Preview Section (Split Layout)
   ========================================================================= */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary);
  color: var(--bg-dark);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 10px solid var(--bg-dark);
  z-index: 2;
}

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

.experience-badge .text {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* =========================================================================
   Services Section
   ========================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: left;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card:hover::before {
  transform: translateY(0);
}

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

.service-card:hover .service-icon {
  color: var(--bg-dark);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-card:hover h3 {
  color: var(--bg-dark);
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  transition: var(--transition);
}

.service-card:hover p {
  color: rgba(10,10,10,0.8);
}

/* =========================================================================
   Featured Gallery (Horizontal Scroll)
   ========================================================================= */
.gallery-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding-bottom: 30px;
  cursor: grab;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.gallery-carousel:active {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  width: max-content;
}

.gallery-item {
  width: 350px;
  height: 450px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay span {
  color: var(--primary);
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

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

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

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

/* =========================================================================
   Client Reviews
   ========================================================================= */
.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.stars {
  color: #fbbc05; /* Google star color */
  font-size: 1.2rem;
  display: flex;
  gap: 3px;
}

.rating-number {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

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

.reviews-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: 100%;
  padding: 40px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.review-stars {
  color: #fbbc05;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.review-text {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.5;
}

.review-author {
  color: var(--primary);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.rev-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

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

/* =========================================================================
   Team Section
   ========================================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.flip-container {
  perspective: 1000px;
  height: 450px;
  cursor: pointer;
}

.flip-container:hover .flipper {
  transform: rotateY(180deg);
}

.flipper {
  transition: 0.8s;
  transform-style: preserve-3d;
  position: relative;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.front, .back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.front {
  z-index: 2;
  transform: rotateY(0deg);
}

.front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  text-align: left;
}

.team-info-overlay h3 {
  font-size: 1.8rem;
  color: var(--primary);
}

.team-info-overlay span {
  color: #ddd;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.back {
  transform: rotateY(180deg);
  background: var(--bg-darker);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.back-content {
  text-align: center;
}

.back-content h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.back-content span {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

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

/* =========================================================================
   CTA Section
   ========================================================================= */
.cta-section {
  position: relative;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  z-index: -1;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-title {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* =========================================================================
   Location & Footer
   ========================================================================= */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.detail-item {
  display: flex;
  gap: 20px;
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.detail-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.detail-item p {
  color: var(--text-muted);
}

.location-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Footer */
.footer {
  background: var(--bg-darker);
  padding: 80px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-desc {
  color: var(--text-muted);
  max-width: 350px;
}

.footer-links h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

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

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: var(--text-muted);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a:hover {
  color: var(--primary);
}

.footer-rating .stars {
  justify-content: flex-start;
  font-size: 1rem;
  margin-bottom: 5px;
}

/* =========================================================================
   Animations & Reveals
   ========================================================================= */
.reveal {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  visibility: visible;
}

.fade-in {
  transition: opacity 1s ease-out;
}

.slide-up {
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.active {
  transform: translateY(0);
}

.fade-left {
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-right {
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-left.active, .fade-right.active {
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* =========================================================================
   Responsive Design
   ========================================================================= */
@media (max-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .split-layout, .location-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .experience-badge { bottom: 20px; right: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links, .nav-actions .btn { display: none; }
  .mobile-menu-toggle { display: block; }

  /* Mobile Nav */
  .navbar.menu-open { background: var(--bg-darker); }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-darker);
    padding: 20px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.8rem; }
  .hero-controls {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }
  .section-padding { padding: 60px 0; }
  .section-title { font-size: 2.2rem; }
  .cta-title { font-size: 2.5rem; }
  .image-wrapper img { height: 400px; }
  .gallery-item { width: 280px; height: 380px; }
  .review-card { padding: 25px; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
