/* ==========================================================================
   DMS Print & Events - Design System & Custom CSS
   ========================================================================== */

:root, [data-theme="light"] {
  /* Ultra Clean White Studio Theme (Default) */
  --primary-navy: #0F172A;
  --primary-blue: #1E3A8A;
  --accent-blue: #2563EB;
  --accent-cyan: #0284C7;
  --accent-gold: #D97706;
  --accent-yellow: #CA8A04;
  --accent-emerald: #059669;
  --accent-magenta: #DB2777;
  --whatsapp-green: #16A34A;
  
  /* Neutral White Palette */
  --bg-dark: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-header: rgba(255, 255, 255, 0.96);
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #1E293B;
  --text-dim: #64748B;
  --border-color: #E2E8F0;
  --border-dark: #CBD5E1;

  /* Typography & Effects */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 4px 20px rgba(37, 99, 235, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="cmyk"] {
  /* CMYK Neon Dark Theme */
  --primary-navy: #0B0F19;
  --primary-blue: #0284C7;
  --accent-blue: #38BDF8;
  --accent-cyan: #00F0FF;
  --accent-gold: #F59E0B;
  --accent-yellow: #FFD600;
  --accent-emerald: #10B981;
  --accent-magenta: #FF007A;
  --whatsapp-green: #25D366;
  
  --bg-dark: #070B14;
  --bg-card: #0F172A;
  --bg-light: #0C1322;
  --bg-white: #131C31;
  --bg-header: rgba(15, 23, 42, 0.92);
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-light: #F1F5F9;
  --text-dim: #64748B;
  --border-color: #1E293B;
  --border-dark: #0F172A;
  --shadow-glow: 0 0 30px rgba(0, 240, 255, 0.25);
}

[data-theme="luxe"] {
  /* Luxury Emerald & Royal Gold Theme */
  --primary-navy: #060D0B;
  --primary-blue: #059669;
  --accent-blue: #10B981;
  --accent-cyan: #34D399;
  --accent-gold: #F59E0B;
  --accent-yellow: #FBBF24;
  --accent-emerald: #10B981;
  --accent-magenta: #F43F5E;
  
  --bg-dark: #050A08;
  --bg-card: #0E1B17;
  --bg-light: #091411;
  --bg-white: #12241F;
  --bg-header: rgba(14, 27, 23, 0.92);
  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --text-light: #F8FAFC;
  --text-dim: #64748B;
  --border-color: #1B332B;
  --border-dark: #0A1612;
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.25);
}

[data-theme="navy"] {
  /* Modern Corporate Navy Theme */
  --primary-navy: #0F172A;
  --primary-blue: #1E3A8A;
  --accent-blue: #2563EB;
  --accent-cyan: #06B6D4;
  --accent-gold: #F59E0B;
  --accent-yellow: #FFD700;
  --accent-emerald: #10B981;
  --accent-magenta: #EC4899;
  
  --bg-dark: #0A0F1D;
  --bg-card: #151D33;
  --bg-light: #0F172A;
  --bg-white: #1A243F;
  --bg-header: rgba(21, 29, 51, 0.92);
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-light: #F1F5F9;
  --text-dim: #64748B;
  --border-color: #1E293B;
  --border-dark: #0F172A;
  --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.25);
}

[data-theme="light"] {
  /* Ultra Clean Light Theme */
  --primary-navy: #0F172A;
  --primary-blue: #1E3A8A;
  --accent-blue: #2563EB;
  --accent-cyan: #0284C7;
  --accent-gold: #D97706;
  --accent-yellow: #EAB308;
  --accent-emerald: #059669;
  --accent-magenta: #DB2777;
  
  --bg-dark: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-light: #F1F5F9;
  --bg-white: #FFFFFF;
  --bg-header: rgba(255, 255, 255, 0.94);
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #0F172A;
  --text-dim: #64748B;
  --border-color: #E2E8F0;
  --border-dark: #CBD5E1;
  --shadow-glow: 0 4px 20px rgba(37, 99, 235, 0.15);
}

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.text-gradient {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--accent-gold);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.12);
  color: #D97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #1D4ED8, #3B82F6);
}

.btn-gold {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(37, 99, 235, 0.04);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Announcement Bar */
.top-bar {
  background: var(--primary-navy);
  color: var(--text-light);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-dark);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
}

.top-bar-item svg {
  color: var(--accent-gold);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.brand-logo-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-logo-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Theme Switcher Widget */
.theme-switcher-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.theme-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.theme-switcher-btn:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-sm);
}

.theme-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
}

.theme-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 200px;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition-fast);
}

.theme-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-option-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: var(--transition-fast);
}

.theme-option-item:hover, .theme-option-item.active {
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-blue);
}

.theme-color-preview {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.preview-cmyk { background: linear-gradient(135deg, #00F0FF, #FF007A); }
.preview-luxe { background: linear-gradient(135deg, #10B981, #F59E0B); }
.preview-navy { background: linear-gradient(135deg, #1E3A8A, #06B6D4); }
.preview-light { background: linear-gradient(135deg, #2563EB, #64748B); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-blue);
  transition: var(--transition-fast);
  border-radius: var(--radius-full);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-light) 100%);
  color: var(--text-main);
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.rating-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFF;
}

.rating-stars {
  color: var(--accent-gold);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--accent-yellow);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
}

.hero-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Hero Media Card */
.hero-media-wrapper {
  position: relative;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--bg-card);
}

.hero-main-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
  padding: 1.5rem;
  color: white;
}

.floating-offer-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
  transform: rotate(3deg);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

/* Hot Offers Bar */
.offers-section {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

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

.offer-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent-blue);
}

.offer-card.gold-offer::before {
  background: var(--accent-gold);
}

.offer-card.green-offer::before {
  background: var(--accent-emerald);
}

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

.offer-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.gold-offer .offer-icon {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-gold);
}

.green-offer .offer-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-emerald);
}

.offer-details h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.offer-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0.35rem 0;
}

.offer-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.offer-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  color: var(--accent-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.35rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
}

.services-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary-blue);
  color: var(--bg-white);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.service-img-wrapper {
  position: relative;
  height: 200px;
  background: var(--bg-dark);
  overflow: hidden;
}

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

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: var(--accent-yellow);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.3rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  font-size: 0.78rem;
  background: var(--bg-light);
  color: var(--text-muted);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-weight: 600;
}

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

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

.service-starting-price strong {
  font-size: 1.15rem;
  color: var(--primary-navy);
  font-family: var(--font-heading);
}

/* Instant Quote Estimator Section */
.quote-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  color: var(--text-main);
  padding: 5.5rem 0;
  position: relative;
}

.quote-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.quote-form-group {
  margin-bottom: 1.5rem;
}

.quote-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.quote-select, .quote-input {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.quote-select:focus, .quote-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.quote-select option {
  background: var(--bg-card);
  color: var(--text-main);
}

.quote-summary-box {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-summary-title {
  font-size: 1.3rem;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.quote-summary-details {
  list-style: none;
  margin-bottom: 1.5rem;
}

.quote-summary-details li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
  color: var(--text-dim);
}

.quote-summary-details li span.val {
  font-weight: 700;
  color: var(--bg-white);
}

.quote-total-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-yellow);
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

/* Special Banner / Promotional Posters Gallery */
.gallery-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.promo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  cursor: pointer;
  group: hover;
}

.promo-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
  opacity: 0.95;
}

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

.promo-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

/* Why Choose Us Section */
.why-us-section {
  padding: 5.5rem 0;
  background: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-5px);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(37, 99, 235, 0.15));
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.why-title {
  font-size: 1.2rem;
  color: var(--primary-navy);
  margin-bottom: 0.6rem;
}

.why-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Reviews Section */
.reviews-section {
  padding: 5.5rem 0;
  background: var(--bg-light);
}

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

.review-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h5 {
  font-size: 1rem;
  color: var(--primary-navy);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 0.95rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 5.5rem 0;
  background: var(--bg-white);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--bg-white);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-navy);
  cursor: pointer;
  text-align: left;
}

.faq-question svg {
  transition: transform 0.3s ease;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--bg-light);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* Contact & Map Section */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  color: var(--text-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.15);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail-text h5 {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-detail-text a:hover {
  color: var(--accent-blue);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-input option {
  background: var(--bg-card);
  color: var(--text-main);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-muted);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h5 {
  color: var(--text-main);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating Action Bar (Mobile Sticky) */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-wa {
  background-color: var(--whatsapp-green);
}

.floating-call {
  background-color: var(--accent-blue);
}

/* Lightbox Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  max-width: 900px;
  max-height: 90vh;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.modal-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  
  .hero-description {
    margin: 0 auto 2rem;
  }
  
  .hero-actions {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

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

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

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

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .site-header {
    height: 70px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.open {
    transform: translateY(0);
  }

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

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

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