/* ==========================================================================
   VAISHNAVI INTERIORS - LUXURY DESIGN SYSTEM & MASTER STYLESHEET
   All Styles, Custom Animations, Lightbox, Sliders, and Layout Utilities
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & RESET
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Premium Midnight Navy & Gold */
  --bg-dark: #0f1827;
  --bg-card: #151f30;
  --bg-card-hover: #1e2d44;
  --bg-glass: rgba(21, 31, 48, 0.85);
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa841f;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #fff2ac 50%, #aa841f 100%);
  --gold-glow: 0 10px 30px rgba(212, 175, 55, 0.25);

  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --text-light: #ffffff;

  --border-gold: rgba(212, 175, 55, 0.3);
  --border-glass: rgba(255, 255, 255, 0.1);

  /* Fonts */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Spacing & Transitions */
  --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY & BUTTONS
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 650px;
  margin: 0 auto 40px auto;
  font-size: 1.05rem;
  text-align: center;
}

/* Luxury Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  box-shadow: var(--gold-glow);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-25deg);
  transition: 0.6s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 120%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   3. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
  background: #f2f2f294;
}

.navbar.scrolled {
  background: #f2f2f294;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  padding: 14px 5%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img,
.site-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.brand-logo:hover img,
.site-logo:hover {
  transform: scale(1.03);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-light);
}

.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #022765;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

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

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-drawer-close {
  font-size: 2rem;
  color: var(--gold-primary);
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: transform 0.2s ease;
}

.mobile-drawer-close:hover {
  transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   4. HERO AUTO-SLIDING BANNER
   -------------------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.slide-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  transform: scale(1.08);
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15, 24, 39, 0.3) 0%, rgba(15, 24, 39, 0.88) 100%);
}

.slide-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 900px;
  z-index: 10;
}

.slide-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.slide-content p {
  font-size: 1.25rem;
  color: rgba(240, 244, 248, 0.95);
  max-width: 700px;
  margin: 0 auto 32px auto;
}

/* Slider Indicators & Nav */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  width: 32px;
  border-radius: 6px;
  background: var(--gold-gradient);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(21, 31, 48, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

.slider-btn.prev {
  left: 30px;
}

.slider-btn.next {
  right: 30px;
}

/* --------------------------------------------------------------------------
   5. WELCOME CONTENT SECTION
   -------------------------------------------------------------------------- */
.welcome-section {
  padding: 100px 5%;
  position: relative;
}

.welcome-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-left {
  padding-right: 20px;
}

.welcome-right {
  position: relative;
}

.welcome-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.welcome-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

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

.welcome-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  padding: 20px 30px;
  border-radius: var(--radius-sm);
  box-shadow: var(--gold-glow);
  text-align: center;
}

.welcome-badge .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.welcome-badge .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
}

/* Feature Check Points */
.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px 0;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.feature-check-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   6. SERVICES SECTION (3 COLS)
   -------------------------------------------------------------------------- */
.services-section {
  padding: 100px 5%;
  background: rgba(21, 31, 48, 0.45);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  background: var(--bg-card-hover);
}

.service-img-box {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

.service-card:hover .service-img-box img {
  transform: scale(1.1);
}

.service-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

.service-desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.service-link svg {
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   7. COUNTER SECTION (4 STATS)
   -------------------------------------------------------------------------- */
.counter-section {
  padding: 80px 5%;
  background: linear-gradient(180deg, #0f1827 0%, #151f30 100%);
  position: relative;
}

.counter-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.counter-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 36px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  transition: var(--transition-fast);
}

.counter-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
}

.counter-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px auto;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. WHY CHOOSE US (6 TOPICS + ICONS)
   -------------------------------------------------------------------------- */
.why-us-section {
  padding: 100px 5%;
}

.why-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  position: relative;
}

.why-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.why-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  margin-bottom: 20px;
}

.why-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. OUR WORK & LIGHTBOX MODAL (WITH ZOOM & NEXT/PREV)
   -------------------------------------------------------------------------- */
.work-section {
  padding: 100px 5%;
  background: rgba(21, 31, 48, 0.45);
}

.work-header {
  text-align: center;
  margin-bottom: 50px;
}

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

/* CSS Infinite Marquee */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
  width: 100%;
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-track.left {
  animation: scroll-left 50s linear infinite;
}
.marquee-track.right {
  animation: scroll-right 50s linear infinite;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}
@keyframes scroll-right {
  0% { transform: translateX(calc(-50% - 10px)); }
  100% { transform: translateX(0); }
}
.marquee-img {
  height: 280px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  border: 1px solid var(--border-glass);
}
.marquee-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  border-color: var(--gold-primary);
}

.work-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  border: 1px solid var(--border-glass);
}

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

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 24, 39, 0.96) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition-fast);
}

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

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

.work-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 1px;
  font-weight: 700;
}

.work-title {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 24, 39, 0.96);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-wrapper {
  position: relative;
  max-width: 1000px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  transition: transform 0.3s ease;
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 16px;
  text-align: center;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

/* Lightbox Controls */
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: var(--gold-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(21, 31, 48, 0.9);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.lightbox-nav-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-zoom-bar {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.zoom-btn {
  padding: 8px 16px;
  background: rgba(21, 31, 48, 0.9);
  border: 1px solid var(--border-gold);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.zoom-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

/* --------------------------------------------------------------------------
   10. TESTIMONIAL SECTION (3 COLS AUTO SLIDING)
   -------------------------------------------------------------------------- */
.testimonial-section {
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 5rem;
  position: absolute;
  top: 10px;
  right: 20px;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
}

.stars {
  color: var(--gold-primary);
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}

.client-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
}

.client-role {
  font-size: 0.8rem;
  color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   11. FOOTER & INNER PAGE SPECIFICS
   -------------------------------------------------------------------------- */
.footer {
  background: #010816;
  border-top: 1px solid var(--border-gold);
  padding: 80px 5% 30px 5%;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about p {
  margin-top: 16px;
  font-size: 0.9rem;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

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

.footer-contact-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Inner Page Header Hero Banners */
.page-hero {
  position: relative;
  padding: 170px 5% 90px 5%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--border-glass);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 24, 39, 0.72) 0%, rgba(15, 24, 39, 0.92) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero.services-banner {
  background-image: url('../images/service-1.jpg');
}

.page-hero.contact-banner {
  background-image: url('../images/hero-1.jpg');
}

.page-hero h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Contact Form & Info */
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  padding: 80px 5%;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 30px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 40px;
  border-radius: var(--radius-md);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(15, 24, 39, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
}

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

.mobile-drawer-header {
  display: none;
}

/* --------------------------------------------------------------------------
   12. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .slide-content h1 {
    font-size: 2.8rem;
  }

  .welcome-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .workflow-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }

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

@media (max-width: 900px) {
  .nav-cta {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-glass);
  }

  .mobile-only-cta {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #111a29;
    border-left: 1px solid var(--border-gold);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    padding: 30px 24px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.85);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 6px 0;
  }

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

  .slide-content h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .welcome-features {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .workflow-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }

  .work-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

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

  .slider-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .counter-grid {
    grid-template-columns: 1fr !important;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}