/* ============================================
   ENGRAVING DXB - Modern Blue Theme Styles
   ============================================ */

:root {
  --primary-blue: #0047AB;
  --primary-blue-dark: #003A8F;
  --primary-blue-light: #0056C7;
  --secondary-blue: #002D6B;
  --accent-blue: #0066E0;
  --dust-yellow: #FFD700;
  --gradient-start: #003A8F;
  --gradient-end: #0047AB;
  --gradient-light: linear-gradient(135deg, #0056C7 0%, #0047AB 50%, #003A8F 100%);
  --gradient-dark: linear-gradient(135deg, #003A8F 0%, #0047AB 50%, #0056C7 100%);
  --gradient-hero: linear-gradient(135deg, #002D6B 0%, #0047AB 50%, #0066E0 100%);
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0, 71, 171, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 71, 171, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 71, 171, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 71, 171, 0.2);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}

/* Background pattern for glass morphism effect */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 50%, #cbd5e1 100%);
  z-index: -1;
  opacity: 0.5;
}

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

/* ============================================
   Navigation
   ============================================ */

.navbar {
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gradient-dark);
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 16px 32px;
  box-shadow: none;
  max-width: 1200px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

/* Scrolled state - Glass morphism */
.navbar.scrolled {
  padding: 20px;
  background: transparent;
}

.navbar.scrolled .nav-wrapper {
  background: rgba(0, 71, 171, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 16px 32px;
  box-shadow: 0 8px 32px rgba(0, 71, 171, 0.3);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo-section:hover {
  opacity: 0.9;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: white;
  padding: 4px;
  transition: all 0.3s ease;
}

.logo-text {
  color: white;
  transition: color 0.3s ease;
}

.logo-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  color: white;
  transition: color 0.3s ease;
}

.logo-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  transition: color 0.3s ease;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 71, 171, 0.2);
}

.nav-quote-btn {
  display: inline-block;
  padding: 12px 24px;
  background: white;
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.nav-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 71, 171, 0.2);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--gradient-hero);
  color: white;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.95;
  z-index: 0;
}

.hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(96, 165, 250, 0.3) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: white;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
}

.hero-description b {
  color: var(--dust-yellow);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-engraving-img {
  width: 100%;
  height: 100%;
  max-width: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 71, 171, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: white;
  color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

.btn-white {
  background: white;
  color: var(--primary-blue);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary-blue);
}

/* ============================================
   Section Headers
   ============================================ */

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

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-light);
  color: white;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-description {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   Services Preview
   ============================================ */

.services-preview {
  padding: 100px 0;
  background: var(--bg-white);
  overflow: hidden;
}

.section-header-wrapper {
  margin-bottom: 60px;
}

.services-scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-blue) transparent;
}

.services-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.services-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.services-scroll-container::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 4px;
}

.services-scroll-wrapper {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 0 20px;
  animation: scroll-right-to-left 60s linear infinite;
}

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

.services-scroll-container:hover .services-scroll-wrapper {
  animation-play-state: paused;
}

/* Disable animation on mobile for better performance and user control */
@media (max-width: 768px) {
  .services-scroll-wrapper {
    animation: none;
  }

  .services-scroll-container {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .service-card {
    scroll-snap-align: start;
  }
}

.service-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  width: 380px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

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

.service-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
  flex-grow: 1;
}

.service-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-link:hover {
  color: var(--primary-blue-dark);
}

/* ============================================
   Why Choose Us
   ============================================ */

.why-choose {
  padding: 100px 0;
  background: var(--gradient-light);
  color: white;
}

.why-choose .section-title,
.why-choose .section-badge {
  color: white;
}

.why-choose .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: white;
}

.feature-box p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* ============================================
   Gallery Preview
   ============================================ */

.gallery-preview {
  padding: 100px 0;
  background: var(--bg-white);
  overflow: hidden;
}

.gallery-scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-blue) transparent;
}

.gallery-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-scroll-container::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 4px;
}

.gallery-scroll-wrapper {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 0 20px;
  animation: gallery-scroll-right-to-left 40s linear infinite;
}

@keyframes gallery-scroll-right-to-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gallery-scroll-container:hover .gallery-scroll-wrapper {
  animation-play-state: paused;
}

/* Disable animation on mobile for better performance and user control */
@media (max-width: 768px) {
  .gallery-scroll-wrapper {
    animation: none;
  }

  .gallery-scroll-container {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .gallery-item {
    scroll-snap-align: start;
  }
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 380px;
  height: 280px;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 64, 175, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay h4 {
  color: white;
  font-size: 20px;
  margin-bottom: 4px;
}

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

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
  padding: 80px 0;
  background: var(--gradient-dark);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

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

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: white;
  padding: 4px;
  margin-bottom: 16px;
  display: block;
}

.footer-logo h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: white;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

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

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: white;
  text-decoration: underline;
}

/* ============================================
   WhatsApp Float
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
  background: var(--gradient-dark);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}

.page-header p {
  font-size: 20px;
  opacity: 0.9;
}

/* ============================================
   Services Detail Page
   ============================================ */

.services-detail {
  padding: 80px 0;
  background: var(--bg-white);
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

/* Alternating background colors - white and light blue */
.service-card-white {
  background: white;
}

.service-card-blue {
  background: rgba(0, 71, 171, 0.1);
}

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

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

.service-detail-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.service-detail-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.service-intro {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.service-features h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 24px 0 16px;
  color: var(--text-dark);
}

.service-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.service-detail-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.service-subsection {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.service-subsection:first-of-type {
  margin-top: 24px;
  padding-top: 24px;
}

.service-subsection h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-blue);
}

.service-subsection p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

.service-subsections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.service-subsection-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-subsection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-subsection-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.service-subsection-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-blue);
}

.service-subsection-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.btn-subsection {
  width: 100%;
  text-align: center;
  margin-top: auto;
  display: inline-block;
}

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

.plates-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plates-grid li {
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 16px;
}

.plates-grid li::before {
  content: '🏷️';
  position: absolute;
  left: 0;
  font-size: 14px;
}

/* ============================================
   Gallery Page
   ============================================ */

.gallery-filters {
  padding: 40px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 10px 20px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-light);
  color: white;
  border-color: var(--primary-blue);
}

.gallery-main {
  padding: 60px 0;
  background: var(--bg-white);
}

.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.gallery-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: 300;
  transition: transform 0.3s ease;
}

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

.modal-nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
}

.modal-prev,
.modal-next {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  font-size: 48px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Contact Page
   ============================================ */

.contact-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.contact-form-card,
.contact-info-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-form-card h2,
.contact-info-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.form-intro {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
}

.form-message {
  padding: 16px;
  border-radius: 10px;
  margin-top: 16px;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  display: block;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  display: block;
}

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

.contact-method {
  display: flex;
  gap: 20px;
}

.method-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.method-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.method-content p {
  color: var(--text-muted);
  margin: 4px 0;
}

.method-content a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.method-content a:hover {
  text-decoration: underline;
}

.whatsapp-link {
  color: #25D366 !important;
}

.method-note {
  font-size: 14px;
  opacity: 0.8;
}

.social-links {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.social-links h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 10px;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gradient-light);
  transform: translateY(-2px);
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.faq-section h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   About Page
   ============================================ */

.about-intro {
  padding: 80px 0;
  background: var(--bg-white);
}

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

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.about-text p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.our-story {
  padding: 80px 0;
  background: var(--bg-light);
}

.story-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.story-item {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.story-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.story-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.story-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

.why-us-about {
  padding: 80px 0;
  background: var(--bg-white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.advantage-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.advantage-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.advantage-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.advantage-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.services-overview {
  padding: 80px 0;
  background: var(--bg-light);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-overview-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-blue);
}

.service-overview-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.service-overview-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

.stats-section {
  padding: 80px 0;
  background: var(--gradient-dark);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-box {
  text-align: center;
}

.stat-box .stat-number {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 8px;
  color: white;
}

.stat-box .stat-label {
  font-size: 18px;
  opacity: 0.9;
}

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

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-engraving-img {
    max-width: 100%;
  }

  .section-title {
    font-size: 32px;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .service-subsections {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }

  .service-subsection-card {
    padding: 24px;
  }

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

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

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

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

  .services-preview {
    padding: 60px 0;
  }

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

  .service-card {
    width: 320px;
  }

  .services-scroll-wrapper {
    gap: 20px;
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0;
  }

  .nav-wrapper {
    padding: 12px 20px;
  }

  .logo-section {
    gap: 8px;
  }

  .logo-img {
    width: 48px;
    height: 48px;
  }

  .logo-title {
    font-size: 20px;
  }

  .logo-subtitle {
    font-size: 11px;
  }

  .nav-right {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }

  .nav-quote-btn {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: calc(100% - 40px);
    margin: 0 20px;
    background: var(--gradient-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    flex-direction: column;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 71, 171, 0.3);
  }

  .nav-menu.active {
    left: 0;
    padding-bottom: 80px;
  }

  .navbar.scrolled .nav-menu {
    top: 80px;
    background: rgba(0, 71, 171, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 71, 171, 0.3);
  }

  .nav-menu.active::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
  }

  .nav-right:has(.nav-menu.active) .nav-quote-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 300px;
    text-align: center;
    z-index: 1001;
    display: block;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 24px;
    flex-direction: column;
  }

  .stat-number {
    font-size: 28px;
  }

  .services-preview {
    padding: 60px 0;
  }

  .section-header-wrapper {
    margin-bottom: 30px;
  }

  .services-scroll-container {
    padding: 10px 0 30px;
  }

  .services-scroll-wrapper {
    gap: 16px;
    padding: 0 16px;
    animation: scroll-right-to-left 40s linear infinite;
  }

  .service-card {
    width: 280px;
  }

  .service-content {
    padding: 24px;
  }

  .service-image {
    height: 180px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 14px;
  }

  .why-choose {
    padding: 60px 0;
  }

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

  .feature-box {
    padding: 24px;
  }

  .gallery-preview {
    padding: 60px 0;
  }

  .gallery-scroll-wrapper {
    gap: 20px;
    padding: 0 16px;
  }

  .gallery-item {
    width: 320px;
    height: 240px;
  }

  .page-header {
    padding: 60px 0;
  }

  .page-header h1 {
    font-size: 36px;
  }

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

  .filter-buttons {
    justify-content: flex-start;
    gap: 8px;
  }

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

  .cta-section {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer {
    padding: 40px 0 20px;
  }

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

  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
}

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

  .navbar {
    padding: 0;
  }

  .nav-wrapper {
    padding: 10px 16px;
  }

  .logo-img {
    width: 44px;
    height: 44px;
  }

  .logo-title {
    font-size: 18px;
  }

  .logo-subtitle {
    font-size: 10px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 15px;
  }

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

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }

  .services-preview {
    padding: 40px 0;
  }

  .section-header-wrapper {
    margin-bottom: 24px;
  }

  .services-scroll-wrapper {
    gap: 12px;
    padding: 0 12px;
    animation: scroll-right-to-left 35s linear infinite;
  }

  .service-card {
    width: 260px;
  }

  .service-content {
    padding: 20px;
  }

  .service-image {
    height: 160px;
  }

  .service-icon {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 13px;
  }

  .why-choose {
    padding: 40px 0;
  }

  .features-grid {
    gap: 16px;
  }

  .feature-box {
    padding: 20px;
  }

  .feature-icon {
    font-size: 40px;
  }

  .feature-box h3 {
    font-size: 20px;
  }

  .gallery-preview {
    padding: 40px 0;
  }

  .gallery-scroll-wrapper {
    gap: 16px;
    padding: 0 12px;
    animation: none;
  }

  .gallery-scroll-container {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .gallery-item {
    width: 280px;
    height: 210px;
    scroll-snap-align: start;
  }

  .page-header {
    padding: 40px 0;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .page-header p {
    font-size: 16px;
  }

  .service-detail-card {
    padding: 20px;
    margin-bottom: 40px;
  }

  .service-detail-content h2 {
    font-size: 28px;
  }

  .service-subsections {
    gap: 16px;
    margin-bottom: 40px;
  }

  .service-subsection-card {
    padding: 20px;
  }

  .service-subsection-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .service-subsection-card h3 {
    font-size: 20px;
  }

  .service-subsection-card p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .btn-subsection {
    padding: 12px 24px;
    font-size: 14px;
  }

  .service-intro {
    font-size: 16px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 24px;
  }

  .contact-form-card h2,
  .contact-info-card h2 {
    font-size: 24px;
  }

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

  .faq-item {
    padding: 24px;
  }

  .cta-section {
    padding: 40px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .footer {
    padding: 30px 0 16px;
  }

  .footer-grid {
    gap: 24px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

