/* ============================================
   Edison Hair Salon - Stylesheet
   Clean, professional design with warm accents
   ============================================ */

/* CSS Variables */
:root {
  --color-navy: #2c3e50;
  --color-navy-dark: #1a252f;
  --color-gold: #c9a961;
  --color-gold-light: #e8d5a3;
  --color-cream: #faf9f7;
  --color-white: #ffffff;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-500: #7f8c8d;
  --color-gray-700: #495057;
  --color-text: #2c3e50;
  --color-text-light: #5a6c7d;
  
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-navy);
}

.nav-logo:hover .logo-icon {
  background: var(--color-navy);
}

.nav-logo:hover .logo-icon svg {
  stroke: var(--color-white);
}

.logo-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--color-navy);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
  position: relative;
  padding: 8px 0;
}

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

.nav-link:hover {
  color: var(--color-navy);
}

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

.nav-cta {
  background: var(--color-navy);
  color: var(--color-white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm);
}

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

.nav-cta:hover {
  background: var(--color-gold);
  color: var(--color-navy) !important;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  transition: transform var(--transition-fast);
}

@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
}

@media (min-width: 769px) {
  .dropdown-menu {
    transition: opacity var(--transition-medium), transform var(--transition-medium), visibility var(--transition-medium);
  }
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-light);
  transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
  background: var(--color-cream);
  color: var(--color-navy);
  padding-left: 24px;
}

.dropdown-divider {
  height: 1px;
  background: var(--color-gray-200);
  margin: 6px 0;
}

.dropdown-menu li:last-child a {
  font-weight: 600;
  color: var(--color-gold);
}

.dropdown-menu li:last-child a:hover {
  color: var(--color-navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: all var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-navy-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 8px;
  padding: 0;
}

.hero-image-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
  filter: brightness(0.6) saturate(1.1);
}

.hero-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 62, 80, 0.15) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* Subtle Ken Burns zoom on each panel */
.hero-image-panel.panel-left img {
  animation: kenBurns1 20s ease-in-out infinite alternate;
}

.hero-image-panel.panel-center img {
  animation: kenBurns2 22s ease-in-out infinite alternate;
  animation-delay: -4s;
}

.hero-image-panel.panel-right img {
  animation: kenBurns3 24s ease-in-out infinite alternate;
  animation-delay: -8s;
}

@keyframes kenBurns1 {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, 2%); }
}

@keyframes kenBurns2 {
  0% { transform: scale(1.04) translate(0, -1%); }
  100% { transform: scale(1) translate(1%, 1%); }
}

@keyframes kenBurns3 {
  0% { transform: scale(1) translate(1%, 0); }
  100% { transform: scale(1.08) translate(-1%, -2%); }
}

/* Panel dividers */
.hero-image-panel + .hero-image-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -4px;
  width: 8px;
  height: 100%;
  background: rgba(201, 169, 97, 0.25);
  z-index: 2;
  backdrop-filter: blur(2px);
}

/* The dark overlay on top of all images for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, 
      rgba(26, 37, 47, 0.55) 0%, 
      rgba(26, 37, 47, 0.35) 30%,
      rgba(26, 37, 47, 0.45) 60%,
      rgba(26, 37, 47, 0.75) 100%
    ),
    radial-gradient(ellipse at center, rgba(26, 37, 47, 0.1) 0%, rgba(26, 37, 47, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Decorative gold accent line along bottom */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(201, 169, 97, 0.5);
  border-radius: 30px;
  background: rgba(201, 169, 97, 0.08);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.title-line {
  display: block;
}

.title-line:last-child {
  color: var(--color-gold-light);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-medium);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.35);
}

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

.btn-secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

/* Hero-specific button overrides */
.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.hero .btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-navy-dark);
  border-color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-gray-300);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.hours-icon {
  color: #27ae60;
  font-size: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   Section Styles
   ============================================ */
section {
  padding: 100px 0;
}

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   Services Section
   ============================================ */
.services {
  background: var(--color-white);
}

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

.service-card {
  background: var(--color-gray-100);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-medium);
  border: 1px solid transparent;
}

.service-card:hover {
  background: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  border: 2px solid var(--color-gray-200);
  transition: all var(--transition-medium);
}

.service-card:hover .service-icon {
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-navy);
  transition: stroke var(--transition-medium);
}

.service-card:hover .service-icon svg {
  stroke: var(--color-white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.service-price {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-gold);
}

.services-note {
  text-align: center;
  padding: 24px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
}

.services-note p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 4px 0;
}

.services-note strong {
  color: var(--color-navy);
}

/* ============================================
   Features Section
   ============================================ */
.features {
  background: var(--color-navy);
  padding: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.feature-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ============================================
   About Section
   ============================================ */
.about {
  background: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-frame {
  aspect-ratio: 4/5;
  background: var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-gold-light);
}

.image-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.image-placeholder span {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.5;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.badge-year {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-navy);
  opacity: 0.7;
}

.badge-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1;
}

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

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
}

.check-icon {
  color: var(--color-gold);
  font-weight: 700;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--color-gray-100);
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--color-gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 600;
  color: var(--color-navy);
}

.author-source {
  font-size: 12px;
  color: var(--color-gray-500);
}

.testimonials-cta {
  text-align: center;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
  background: var(--color-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

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

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

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

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
}

.gallery-placeholder span {
  color: var(--color-gold-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.6;
  transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-placeholder {
  background: linear-gradient(135deg, var(--color-gold) 0%, #b8943f 100%);
}

.gallery-item:hover .gallery-placeholder span {
  color: var(--color-navy);
  opacity: 1;
}

/* ============================================
   Page Header (Sub-pages)
   ============================================ */
.page-header {
  padding: 160px 0 60px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  text-align: center;
}

.page-header .section-tag {
  color: var(--color-gold);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: 16px;
  color: var(--color-gray-300);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   Gallery Full Page
   ============================================ */
.gallery-page {
  padding: 80px 0 40px;
  background: var(--color-cream);
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: 280px;
}

.gallery-full-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

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

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

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

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

/* Gallery CTA Section */
.gallery-cta-section {
  padding: 80px 0;
  background: var(--color-white);
}

.cta-box {
  text-align: center;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-box p {
  color: var(--color-gray-300);
  margin-bottom: 30px;
  font-size: 16px;
}

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

.cta-box .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.cta-box .btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-navy-dark);
  border-color: var(--color-white);
}

/* ============================================
   Services Page
   ============================================ */
.services-page {
  padding: 80px 0;
  background: var(--color-white);
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

.service-card-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.service-card-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition-medium);
}

.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Service Detail Page
   ============================================ */
.service-detail {
  padding: 80px 0;
  background: var(--color-white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-detail-grid:not(:has(.service-detail-image)) {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.service-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-gray-200);
}

.price-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--color-gold);
}

.service-detail-content p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-detail-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 12px;
  margin-top: 32px;
}

.service-includes {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.service-includes li {
  position: relative;
  padding-left: 24px;
  padding-bottom: 8px;
  font-size: 15px;
  color: var(--color-text-light);
}

.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 600;
}

.service-detail-note {
  background: var(--color-cream);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin: 32px 0;
}

.service-detail-note p {
  margin: 0;
  font-size: 15px;
}

.service-detail-note a {
  color: var(--color-gold);
}

.service-detail-note a:hover {
  text-decoration: underline;
}

.service-detail-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-nav {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--color-gray-200);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-tag,
.contact-info .section-title {
  text-align: left;
}

.contact-info > p {
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
}

.contact-text span,
.contact-text a {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.5;
}

.contact-text a:hover {
  color: var(--color-gold);
}

.contact-map {
  height: 100%;
  min-height: 450px;
}

.map-container {
  width: 100%;
  height: 100%;
  background: var(--color-gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.map-container iframe {
  position: absolute;
  inset: 0;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--color-gray-100);
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-gold);
}

.map-placeholder span {
  font-size: 14px;
  color: var(--color-text-light);
}

.map-placeholder a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
  text-decoration: underline;
}

.map-placeholder a:hover {
  color: var(--color-gold);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 80px 0 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  border-color: var(--color-gold);
}

.footer-logo .logo-icon svg {
  stroke: var(--color-gold);
}

.footer-logo .logo-text {
  color: var(--color-white);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-services h4,
.footer-hours h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-services a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--color-white);
}


.footer-hours p {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-contact a {
  font-size: 14px;
  color: var(--color-gold);
  font-weight: 500;
}

.footer-contact a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-credit {
  font-style: italic;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  /* Show only center + right panels on tablet */
  .hero-image-panel.panel-left {
    display: none;
  }
  
  .hero-image-panel.panel-center,
  .hero-image-panel.panel-right {
    flex: 1;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .about-grid {
    gap: 50px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  
  .gallery-item.large {
    grid-column: span 2;
  }

  .gallery-full-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .gallery-full-item.wide {
    grid-column: span 2;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 0;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-medium), opacity var(--transition-medium);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu > li {
    border-bottom: 1px solid var(--color-gray-200);
  }

  .nav-menu > li:last-child {
    border-bottom: none;
  }
  
  .nav-link {
    display: block;
    padding: 16px 24px;
    width: 100%;
    text-align: center;
    font-size: 15px;
    border-bottom: none;
  }

  .nav-link::after {
    display: none;
  }

  /* Mobile dropdown */
  .nav-dropdown > .nav-link {
    display: flex;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    box-shadow: none;
    background: var(--color-gray-100);
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium) !important;
    margin: 0;
    min-width: 0;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 800px;
    padding: 8px 0;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu li a {
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
  }

  .dropdown-menu li a:hover {
    padding-left: 16px;
  }
  
  .nav-cta {
    margin: 8px 24px 16px;
    width: auto;
    text-align: center;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .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(5px, -5px);
  }
  
  .hero-content {
    padding: 100px 24px 60px;
  }
  
  /* On mobile, hide side panels and show only center */
  .hero-image-panel.panel-left,
  .hero-image-panel.panel-right {
    display: none;
  }
  
  .hero-image-panel.panel-center {
    flex: 1;
  }
  
  .hero-image-panel + .hero-image-panel::before {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .service-detail-image {
    order: -1;
    position: static;
    max-height: 360px;
  }

  .service-detail-image img {
    max-height: 360px;
    object-fit: cover;
  }

  .service-detail-cta {
    flex-direction: column;
  }

  .price-amount {
    font-size: 36px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .feature-number {
    font-size: 36px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }
  
  .about-content p {
    text-align: center;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-grid .gallery-item {
    aspect-ratio: 1;
  }
  
  .gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }

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

  .gallery-full-grid .gallery-full-item {
    aspect-ratio: 1;
  }

  .gallery-full-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .gallery-full-item.wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }

  .cta-box {
    padding: 40px 24px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info .section-tag,
  .contact-info .section-title {
    text-align: center;
  }
  
  .contact-info > p {
    text-align: center;
  }
  
  .contact-info .btn {
    width: 100%;
  }
  
  .contact-map {
    min-height: 300px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-grid .gallery-item {
    aspect-ratio: 1;
  }
  
  .gallery-item.large {
    grid-column: span 1;
    aspect-ratio: 1;
  }

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

  .gallery-full-grid .gallery-full-item {
    aspect-ratio: 1;
  }

  .gallery-full-item.tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }

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

  .cta-buttons {
    flex-direction: column;
  }
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.3s ease;
  cursor: default;
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 36px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
  z-index: 1;
}

.lightbox-close:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}
