/* ============================================
   CAMOUFLAGE STUDIO - DERMAQ INSPIRED ELEGANT DESIGN
   Modern, elegant, and sophisticated homepage
   ============================================ */
@import url('mobile-enhancements.css');

:root {
  /* Camouflage Studio Color Palette */
  /* Deep Navy / Midnight Blue */
  --deep-navy: #0B0E1A;
  --navy-light: #1a1d2a;
  --navy-lighter: #2a2d3a;
  
  /* Soft Gold / Champagne */
  --soft-gold: #D9C9B1;
  --gold-light: #e4d7c3;
  --gold-dark: #c9b89f;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #1A1A1A;
  --light-grey: #F4F4F4;
  --medium-grey: #e0e0e0;
  --dark-grey: #666666;
  
  /* Primary Colors */
  --primary: var(--soft-gold);
  --primary-dark: var(--gold-dark);
  --primary-light: var(--gold-light);
  --secondary: var(--deep-navy);
  --accent: var(--deep-navy);
  --dark: var(--deep-navy);
  --light: var(--light-grey);
  --bg-primary: var(--white);
  --bg-secondary: var(--light-grey);
  --bg-accent: var(--navy-light);
  --text-primary: var(--black);
  --text-secondary: var(--dark-grey);
  --text-muted: var(--dark-grey);
  --border: var(--medium-grey);
  --shadow-sm: 0 2px 8px rgba(11, 14, 26, 0.05);
  --shadow-md: 0 4px 24px rgba(11, 14, 26, 0.08);
  --shadow-lg: 0 12px 48px rgba(11, 14, 26, 0.12);
  --shadow-xl: 0 20px 60px rgba(11, 14, 26, 0.16);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 80px;
}

/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

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

/* ============ NAVIGATION ============ */
.navbar {
  background: rgba(11, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 201, 177, 0.2);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: none;
}

.navbar.scrolled {
  background: rgba(11, 14, 26, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--soft-gold);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.nav-logo i {
  color: var(--soft-gold);
  font-size: 24px;
}

.nav-logo:hover {
  color: var(--soft-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--soft-gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--soft-gold);
}

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

.nav-link.phone-number {
  color: var(--soft-gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link.phone-number i {
  font-size: 12px;
}

.nav-link.book-now-btn {
  background: var(--soft-gold);
  color: var(--deep-navy);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(217, 201, 177, 0.3);
}

.nav-link.book-now-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 201, 177, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  margin: 0;
}

.hero-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  margin: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
  margin: 0;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: slowZoom 12s ease-in-out infinite;
  margin: 0;
}

.slide:not(.active) .hero-image {
  animation: none;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
  margin: 0;
}

.slider-prev,
.slider-next {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.slider-prev i,
.slider-next i {
  color: var(--primary);
  font-size: 18px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  margin: 0;
}

.slider-dot {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

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

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}


.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  background: rgba(11, 14, 26, 0.75);
  padding: 40px 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 201, 177, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft-gold);
  color: var(--deep-navy);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  animation: slideUp 0.8s ease 0.1s both;
}

.hero-badge i {
  font-size: 14px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
  animation: slideUp 0.8s ease 0.2s both;
  letter-spacing: -1px;
}

.hero-title .italic {
  font-style: italic;
  font-weight: 400;
}

.hero-title .rose {
  color: var(--soft-gold);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 300;
  animation: slideUp 0.8s ease 0.3s both;
}

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

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: slideUp 0.8s ease 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: 'Lato', sans-serif;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 0;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--soft-gold) 0%, var(--gold-dark) 100%);
  color: var(--deep-navy);
  box-shadow: 0 8px 32px rgba(217, 201, 177, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(217, 201, 177, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--soft-gold);
  border: 2px solid var(--soft-gold);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: rgba(217, 201, 177, 0.1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  padding: 18px 40px;
  font-size: 17px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  animation: slideUp 0.8s ease 0.5s both;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--soft-gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ============ SECTION HEADERS ============ */
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--soft-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.left {
  text-align: left;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header h2 .italic {
  font-style: italic;
  color: var(--soft-gold);
  font-weight: 400;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.section-header.left p {
  margin: 0;
}

/* ============ WHY US SECTION ============ */
.why-us-section {
  padding: 100px 0;
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.why-us-card {
  background: var(--light);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.why-us-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.why-us-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--soft-gold);
  transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(217, 201, 177, 0.3);
}

.why-us-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.why-us-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

.benefits-list {
  list-style: none;
  text-align: left;
}

.benefits-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits-list i {
  color: var(--soft-gold);
  font-size: 14px;
}

/* ============ SERVICES SECTION ============ */
.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.service-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-secondary);
}

/* Hide ALL icons in services section - ONLY on homepage */
.homepage .services-section i,
.homepage .service-card i,
.homepage .service-loading i,
.homepage .service-book-btn i,
.homepage .service-duration i,
.homepage .service-footer i,
.homepage .services-cta i,
.homepage .section-header i,
.homepage .why-us-section i,
.homepage .testimonials-section i,
.homepage .gallery-section i,
.homepage .about-section i,
.homepage .cta-section i,
.homepage .footer i,
.homepage .navbar i,
.homepage .hero i,
.homepage .slider-nav i,
.homepage .slider-dots i {
  display: none !important;
}

/* Additional comprehensive icon hiding */
.homepage .fa,
.homepage .fas,
.homepage .far,
.homepage .fab,
.homepage .fal,
.homepage .fad,
.homepage .fass,
.homepage .fasr,
.homepage .fasl {
  display: none !important;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--soft-gold) 0%, var(--gold-dark) 100%);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

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

.service-content {
  padding: 32px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.service-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex-grow: 1;
  line-height: 1.8;
  font-weight: 300;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.service-price {
  font-weight: 500;
  color: var(--soft-gold);
  font-size: 1.2rem;
}

.service-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-duration i {
  display: none;
}

.service-book-btn {
  width: 100%;
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-top: auto;
  font-weight: 500;
}

.service-book-btn i {
  display: none;
}

.services-cta {
  text-align: center;
  padding: 40px 0;
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--light);
  padding: 40px 32px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 14px;
}

.testimonial-stars i {
  color: var(--primary);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.author-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============ GALLERY SECTION ============ */
.gallery-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
  border-top: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.gallery-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.8) 0%, rgba(190, 18, 60, 0.8) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

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

.gallery-overlay h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

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

.filter-btn {
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-family: 'Font Awesome 6 Free';
}

.lightbox-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-family: 'Font Awesome 6 Free';
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

.lightbox-image.loading {
  opacity: 0.7;
}

.lightbox-caption {
  padding: 30px;
  text-align: center;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.lightbox-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.lightbox-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* ============ ABOUT SECTION ============ */
.about-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.about-content-centered {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text-center {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 300;
}

.section-header.center {
  text-align: center;
  margin: 0 auto;
}

/* About Section Image Styles */
.about-image-container {
  margin-bottom: 30px;
  text-align: center;
}

.about-main-image {
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--soft-gold);
  transition: transform 0.3s ease;
}

.about-main-image:hover {
  transform: scale(1.05);
}

.studio-showcase {
  margin: 40px 0;
}

.studio-showcase h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-primary);
  text-align: center;
}

.studio-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.studio-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.studio-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Enhanced Testimonial Avatar Styles */
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--soft-gold);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.technology-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  perspective: 1000px;
}

.tech-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  border: 1px solid rgba(217, 201, 177, 0.1);
  box-shadow: 0 10px 40px rgba(11, 14, 26, 0.06);
  transform-style: preserve-3d;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--soft-gold) 0%, var(--gold-dark) 100%);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.tech-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 25px 60px rgba(11, 14, 26, 0.12);
  border-color: rgba(217, 201, 177, 0.3);
}

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

.tech-visual {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.tech-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--soft-gold);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(11, 14, 26, 0.15);
}

.tech-card:hover .tech-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(217, 201, 177, 0.25);
}

.tech-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 201, 177, 0.15) 0%, transparent 70%);
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}

.tech-card:nth-child(2) .tech-glow {
  animation-delay: 1s;
}

.tech-card:nth-child(3) .tech-glow {
  animation-delay: 2s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

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

.tech-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.tech-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.tech-features {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.tech-feature {
  background: rgba(217, 201, 177, 0.1);
  color: var(--deep-navy);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border: 1px solid rgba(217, 201, 177, 0.2);
  transition: all 0.3s ease;
}

.tech-card:hover .tech-feature {
  background: var(--soft-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 201, 177, 0.3);
}

/* Responsive adjustments for technology showcase */
@media (max-width: 1024px) {
  .technology-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .technology-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  
  .tech-card {
    padding: 32px 24px;
  }
  
  .tech-content h3 {
    font-size: 1.2rem;
  }
  
  .tech-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .tech-card {
    padding: 24px 20px;
  }
  
  .tech-visual {
    height: 100px;
    margin-bottom: 24px;
  }
  
  .tech-icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .tech-glow {
    width: 120px;
    height: 120px;
  }
  
  .tech-content h3 {
    font-size: 1.1rem;
  }
  
  .tech-content p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  
  .tech-feature {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-light) 100%);
  border-top: 1px solid var(--soft-gold);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D9C9B1' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4zm0-30V0h-2v4h-4v2h4v4h2v-4h4zM6 34v-4H4v4H0v2h4v4h2v-4h4zM6 4V0H4v4H0v2h4v4h2v-4h4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-content {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-content h2 .italic {
  font-style: italic;
  font-weight: 400;
}

.cta-content p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.8;
  font-weight: 300;
}

.cta-content .btn {
  margin: 0 auto;
}

.cta-content .btn-primary {
  background: var(--soft-gold);
  color: var(--deep-navy);
}

.cta-content .btn-primary:hover {
  background: var(--gold-dark);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--deep-navy);
  color: var(--white);
  padding: 80px 0 20px;
  border-top: 1px solid var(--soft-gold);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.footer-section h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-logo i {
  color: var(--soft-gold);
  font-size: 24px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--soft-gold);
}

.contact-info,
.hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info i,
.hours i {
  color: var(--soft-gold);
  margin-right: 8px;
  width: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(217, 201, 177, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-weight: 300;
}

/* ============ RESPONSIVE DESIGN - AWARD WINNING ============ */

/* Large Tablets & Medium Screens */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .hero {
    padding: 40px 0 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

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

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

  .technology-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

/* Tablets (768px to 1024px) */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  /* Navigation */
  .nav-container {
    padding: 0 24px;
  }

  .nav-menu {
    gap: 12px;
  }

  .nav-link {
    font-size: 13px;
    padding: 8px 12px;
  }

  /* Hero Section */
  .hero {
    padding: 40px 0 0;
  }
  
  .hero-content {
    max-width: 90%;
    padding: 30px 20px;
    width: 85%;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .hero-badge {
    font-size: 13px;
    padding: 10px 18px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .btn-large {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  /* Why Us Section */
  .why-us-section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-us-card {
    padding: 32px 24px;
  }

  .why-us-card h3 {
    font-size: 1.1rem;
  }

  .why-us-card p {
    font-size: 0.9rem;
  }

  /* Services Section */
  .services-section {
    padding: 80px 0;
  }

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

  .service-card {
    padding: 0;
  }

  .service-content {
    padding: 24px 20px;
  }

  .service-name {
    font-size: 1.1rem;
  }

  .service-description {
    font-size: 0.85rem;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .testimonial-author {
    font-size: 0.9rem;
  }

  /* Gallery */
  .gallery-section {
    padding: 80px 0;
  }

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

  .gallery-item {
    border-radius: 12px;
  }

  .gallery-overlay h3 {
    font-size: 1rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }

  /* About Section */
  .about-section {
    padding: 80px 0;
  }

  .about-content-centered {
    gap: 32px;
  }

  .section-header.center h2 {
    font-size: 2rem;
  }

  .about-text-center {
    font-size: 0.95rem;
  }

  .technology-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }


  /* CTA Section */
  .cta-section {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  /* Footer */
  .footer {
    padding: 60px 0 30px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}

/* Mobile Large (480px to 768px) */
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  /* Navigation */
  .nav-container {
    padding: 0 16px;
  }

  .nav-logo {
    font-size: 18px;
    gap: 8px;
  }

  .nav-logo i {
    font-size: 22px;
  }

  .navbar {
    padding: 12px 0;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: 12px 8px;
    font-size: 13px;
  }

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

  .nav-link.phone-number {
    display: none;
  }

  .nav-link.book-now-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  /* Hero Section */
  .hero {
    padding: 40px 0 0;
  }
  
  .hero-content {
    max-width: 90%;
    padding: 25px 18px;
    width: 85%;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.4;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
  }

  /* Hero Slider Mobile */
  .slider-nav {
    padding: 0 16px;
  }

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
  }

  .slider-prev i,
  .slider-next i {
    font-size: 14px;
  }

  .slider-dots {
    bottom: 20px;
    gap: 8px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .stat-item {
    padding: 20px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Sections */
  .why-us-section,
  .services-section,
  .testimonials-section,
  .gallery-section,
  .about-section,
  .cta-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  /* Cards */
  .why-us-card,
  .service-card,
  .testimonial-card {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .why-us-card h3,
  .service-name {
    font-size: 1rem;
  }

  .why-us-card p,
  .service-description,
  .testimonial-text {
    font-size: 0.85rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-item {
    border-radius: 10px;
  }

  .gallery-overlay h3 {
    font-size: 0.95rem;
  }

  .gallery-overlay p {
    font-size: 0.75rem;
  }

  /* About Section */
  .about-content-centered {
    gap: 28px;
  }

  .section-header.center h2 {
    font-size: 1.8rem;
  }

  .about-text-center {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .technology-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }


  /* CTA Section */
  .cta-content h2 {
    font-size: 1.6rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }

  /* Footer */
  .footer {
    padding: 50px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    margin-top: 32px;
    padding-top: 16px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

/* Mobile Responsive Enhancements for New Components */
.gallery-filters {
  padding: 0 16px;
  gap: 8px;
}

.filter-btn {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.lightbox-content {
  max-width: 95%;
  max-height: 95%;
  margin: 20px;
}

.lightbox-close {
  width: 35px;
  height: 35px;
  font-size: 16px;
  top: 15px;
  right: 15px;
}

.lightbox-prev,
.lightbox-next {
  width: 40px;
  height: 40px;
  font-size: 16px;
}

.lightbox-caption {
  padding: 20px;
}

.lightbox-title {
  font-size: 1.1rem;
}

.lightbox-description {
  font-size: 0.85rem;
}

/* Service Cards Mobile */
.service-book-btn {
  font-size: 0.85rem;
  padding: 12px 20px;
}

.service-content {
  padding: 20px 16px;
}

.service-name {
  font-size: 1rem;
}

/* Hero Slider Mobile Enhancements */
.hero-slider {
  min-height: 60vh;
}

.slide {
  min-height: 60vh;
}

/* Small Mobile (320px to 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* Navigation */
  .nav-container {
    padding: 0 12px;
  }

  .nav-logo {
    font-size: 16px;
    gap: 6px;
  }

  .nav-logo i {
    font-size: 20px;
  }

  .navbar {
    padding: 10px 0;
  }

  /* Hero Section */
  .hero {
    padding: 40px 0 0;
  }

  .hero-content {
    width: 90%;
    padding: 20px 15px;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-buttons {
    gap: 8px;
  }

  .btn {
    padding: 11px 20px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .hero-stats {
    gap: 16px;
    margin-top: 30px;
  }

  .stat-item {
    padding: 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Sections */
  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  /* Cards */
  .why-us-card,
  .service-card,
  .testimonial-card {
    padding: 20px 12px;
    border-radius: 10px;
  }

  .why-us-card h3,
  .service-name {
    font-size: 0.95rem;
  }

  .why-us-card p,
  .service-description,
  .testimonial-text {
    font-size: 0.8rem;
  }

  /* Gallery */
  .gallery-grid {
    gap: 12px;
  }

  .gallery-item {
    border-radius: 8px;
  }

  .gallery-overlay h3 {
    font-size: 0.9rem;
  }

  .gallery-overlay p {
    font-size: 0.75rem;
  }

  /* About Section */
  .about-content-centered {
    gap: 20px;
  }

  .section-header.center h2 {
    font-size: 1.5rem;
  }

  .about-text-center {
    font-size: 0.9rem;
  }

  .technology-showcase {
    gap: 16px;
  }


  /* CTA Section */
  .cta-content h2 {
    font-size: 1.4rem;
  }

  .cta-content p {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer {
    padding: 40px 0 16px;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-logo span {
    font-size: 16px;
  }

  .footer-section h4 {
    font-size: 0.95rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.8rem;
  }

  .contact-info p i {
    width: 20px;
  }

  .hours p {
    line-height: 1.4;
  }

  .footer-bottom {
    margin-top: 32px;
    padding-top: 16px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

/* ============ ANIMATIONS & TRANSITIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

::-webkit-scrollbar-track {
  background: var(--navy-light);
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}
