/* -------------------------------------------------------------------
   LSK PRINTS - Lok Seva Kendra & Printing Press
   Modern, Clean, Fast & Mobile Responsive Stylesheet
   Color Palette: Dark Royal Blue (#0f2b5c), Vibrant Blue (#1d4ed8), Warm Amber (#f59e0b)
------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --primary-dark: #0a192f;
  --primary-navy: #0f2b5c;
  --primary-blue: #1e40af;
  --accent-blue: #2563eb;
  --accent-light-blue: #eff6ff;
  
  --accent-amber: #d97706;
  --accent-gold: #f59e0b;
  --accent-gold-light: #fef3c7;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;
  
  --border-light: #e2e8f0;
  --border-focus: #93c5fd;
  
  --shadow-sm: 0 2px 4px rgba(15, 43, 92, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 43, 92, 0.08);
  --shadow-lg: 0 10px 25px rgba(15, 43, 92, 0.12);
  --shadow-hover: 0 14px 30px rgba(15, 43, 92, 0.16);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', 'Noto Sans Devanagari', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Typography & Hindi Label Helpers */
.hi-text {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-weight: 500;
  color: var(--primary-navy);
}

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

.section-padding {
  padding: 5rem 0;
}

/* Section Header Component */
.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background-color: var(--accent-light-blue);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  outline: none;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #111827;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  background-color: #eab308;
  border-color: #eab308;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-navy {
  background-color: var(--primary-navy);
  color: var(--text-white);
  border-color: var(--primary-navy);
  box-shadow: 0 4px 14px rgba(15, 43, 92, 0.3);
}

.btn-navy:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 43, 92, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--primary-navy);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.6);
}

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

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

/* -------------------------------------------------------------------
   1. NAVBAR
------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(15, 43, 92, 0.06);
  transition: all var(--transition-normal);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 2px solid rgba(11, 42, 91, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(15, 43, 92, 0.12);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-icon img,
.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  padding: 2px;
  border: 2px solid var(--accent-gold);
}

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

.brand-main {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-amber);
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

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

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

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

/* -------------------------------------------------------------------
   2. HERO SECTION
------------------------------------------------------------------- */
.hero {
  position: relative;
  background-color: var(--primary-dark);
  background-image: 
    linear-gradient(90deg, #0a192f 0%, rgba(10, 25, 47, 0.96) 35%, rgba(15, 43, 92, 0.82) 60%, rgba(15, 43, 92, 0.45) 80%, rgba(10, 25, 47, 0.2) 100%),
    url('../assets/images/hero-bg.jpg');
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-white);
  padding: 4.5rem 0 5rem 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-text-area {
  max-width: 680px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.95rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.hero-brand-name {
  display: block;
  color: #f59e0b;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 1.65rem;
  line-height: 1.55;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle .hi-text {
  display: inline-block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

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

.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-feature-item i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* -------------------------------------------------------------------
   3. SERVICES SECTION
------------------------------------------------------------------- */
.services-section {
  background-color: var(--bg-page);
}

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

.service-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-navy), var(--accent-gold));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--accent-light-blue);
  color: var(--primary-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.15rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary-navy);
  color: var(--accent-gold);
  transform: scale(1.05);
}

.service-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.service-bullet-list {
  list-style: none;
  margin: 0.75rem 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex-grow: 1;
}

.service-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 600;
}

.service-bullet-list li i {
  color: #16a34a;
  font-size: 1rem;
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 0.85rem;
  border-top: 1px solid var(--bg-subtle);
}

.btn-quick-inquire {
  background: linear-gradient(135deg, #0f2b5c 0%, #1e40af 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15, 43, 92, 0.25);
  transition: all var(--transition-fast);
}

.btn-quick-inquire:hover {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.35);
}

.service-action-hint {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-action-hint {
  color: var(--accent-amber);
  transform: translateX(4px);
}

.services-action-bottom {
  text-align: center;
  margin-top: 3rem;
}

/* -------------------------------------------------------------------
   4. WHY CHOOSE US
------------------------------------------------------------------- */
.why-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background-color: var(--bg-page);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.why-card:hover {
  background-color: var(--bg-card);
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}

.why-icon {
  width: 52px;
  height: 52px;
  background-color: var(--accent-gold-light);
  color: var(--accent-amber);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

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

/* -------------------------------------------------------------------
   5. PRICE LIST SECTION
------------------------------------------------------------------- */
.price-section {
  background-color: var(--bg-page);
}

.price-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.price-tab-btn {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  background-color: var(--bg-card);
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.price-tab-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.price-tab-btn.active {
  background-color: var(--primary-navy);
  color: var(--text-white);
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.price-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  background: var(--bg-card);
  padding: 1.15rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.search-box {
  position: relative;
  flex-grow: 1;
  max-width: 420px;
}

.search-box i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  outline: none;
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

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

.price-rate-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-page);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.price-rate-status i {
  color: var(--accent-blue);
  font-size: 1.1rem;
}

.price-table-wrapper {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.price-table th {
  background-color: var(--primary-navy);
  color: var(--text-white);
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.98rem;
  vertical-align: middle;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.price-table tr:hover {
  background-color: var(--accent-light-blue);
}

.service-name-cell {
  display: flex;
  flex-direction: column;
}

.service-name-en {
  font-weight: 800;
  color: var(--primary-navy);
  font-size: 1.02rem;
}

.service-name-hi {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.service-desc-cell {
  color: var(--text-dark);
  font-size: 0.92rem;
  max-width: 320px;
}

.cat-pill {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background-color: var(--bg-page);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 0.4rem 1rem;
  background-color: #fef3c7;
  color: #92400e;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  border: 1.5px dashed #f59e0b;
}

.price-note-box {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background-color: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.price-note-box i {
  font-size: 1.35rem;
  color: var(--accent-amber);
  flex-shrink: 0;
}

.price-bottom-cta {
  margin-top: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-light-blue), #ffffff);
  border: 2px dashed rgba(37, 99, 235, 0.3);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.price-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-whatsapp-cta {
  background-color: #25d366;
  color: #ffffff;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-cta:hover {
  background-color: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* -------------------------------------------------------------------
   6. OUR WORK / GALLERY SECTION
------------------------------------------------------------------- */
.gallery-section {
  background-color: var(--bg-card);
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.gallery-tab-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  background-color: var(--bg-page);
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-tab-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.gallery-tab-btn.active {
  background-color: var(--primary-navy);
  color: var(--text-white);
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  background-color: var(--bg-page);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 43, 92, 0.95) 0%, rgba(15, 43, 92, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.gallery-title {
  color: var(--text-white);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}

.gallery-category {
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gallery-zoom-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(245, 158, 11, 0.9);
  color: var(--primary-navy);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
  width: fit-content;
  text-transform: uppercase;
}

.gallery-bottom-cta {
  margin-top: 3.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, var(--accent-light-blue), #ffffff);
  border: 2px dashed rgba(37, 99, 235, 0.3);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.gallery-cta-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-navy);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background-color: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 850px;
  width: 100%;
  max-height: 85vh;
  position: relative;
  background-color: #0b192c;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  padding: 1rem 1.5rem;
  background-color: #081220;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 20;
}

.lightbox-close:hover {
  background: rgba(239, 68, 68, 0.85);
  color: #fff;
  transform: scale(1.1);
}

.lightbox-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(10, 25, 47, 0.8);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 15;
}

.lightbox-prev-btn {
  left: 10px;
}

.lightbox-next-btn {
  right: 10px;
}

.lightbox-nav-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-navy);
  border-color: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
}

/* -------------------------------------------------------------------
   7. ABOUT SECTION
------------------------------------------------------------------- */
.about-section {
  background-color: var(--bg-page);
}

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

.about-image-stack {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-card);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  color: var(--text-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 3px solid var(--bg-card);
}

.exp-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.exp-text {
  font-size: 0.85rem;
  font-weight: 700;
}

.about-quote-box {
  background-color: var(--accent-light-blue);
  border-left: 4px solid var(--accent-blue);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-navy);
  line-height: 1.6;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 0.95rem;
}

.about-check-item i {
  color: #16a34a;
  font-size: 1.1rem;
}

/* -------------------------------------------------------------------
   8. FAQ / CUSTOMER HELP SECTION
------------------------------------------------------------------- */
.faq-section {
  background-color: var(--bg-page);
}

.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--accent-blue);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question-text {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.4;
}

.faq-toggle-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--accent-light-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background-color: var(--primary-navy);
  color: #ffffff;
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-item.active .faq-answer-panel {
  max-height: 320px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.35rem 1.5rem;
  font-size: 1.02rem;
  color: #334155;
  line-height: 1.7;
  border-top: 1px solid var(--bg-subtle);
  padding-top: 1rem;
}

.faq-help-card {
  max-width: 860px;
  margin: 3.5rem auto 0 auto;
  background: linear-gradient(135deg, var(--accent-light-blue), #ffffff);
  border: 2px dashed rgba(37, 99, 235, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.faq-help-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.faq-help-text {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.faq-help-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* -------------------------------------------------------------------
   9. CONTACT / BRANCHES SECTION
------------------------------------------------------------------- */
.contact-section {
  background-color: var(--bg-card);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.branch-card {
  background-color: var(--bg-page);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.branch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-navy), var(--accent-gold));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.branch-card:hover::before {
  opacity: 1;
}

.branch-card-header {
  margin-bottom: 1.5rem;
}

.branch-badge {
  display: inline-block;
  background-color: var(--accent-light-blue);
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.branch-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.3;
}

.branch-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.branch-detail-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.branch-detail-icon {
  width: 44px;
  height: 44px;
  background-color: var(--bg-card);
  color: var(--accent-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.branch-detail-info {
  display: flex;
  flex-direction: column;
}

.branch-detail-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.branch-phone-link {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
}

.branch-phone-link:hover {
  color: var(--accent-amber);
}

.branch-detail-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.branch-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

/* -------------------------------------------------------------------
   CUSTOMER MULTI-STEP ORDER FRONTEND FLOW
------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background-color: rgba(10, 25, 47, 0.82);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.order-modal-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 740px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 45px rgba(10, 25, 47, 0.25);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-light);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPop {
  from { transform: scale(0.96) translateY(12px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.order-modal-header {
  background: linear-gradient(135deg, var(--primary-navy), #173b75);
  color: var(--text-white);
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(245, 158, 11, 0.4);
}

.order-modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.order-modal-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0.15rem 0 0 0;
}

.order-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.order-modal-close:hover {
  background: rgba(239, 68, 68, 0.9);
  border-color: transparent;
  transform: scale(1.05);
}

/* Stepper Progress Bar */
.order-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 2rem;
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.stepper-track {
  position: absolute;
  top: 32px;
  left: 3.5rem;
  right: 3.5rem;
  height: 3px;
  background-color: var(--border-light);
  z-index: 1;
}

.stepper-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
  transition: width 0.35s ease;
}

.stepper-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.stepper-step.active .step-num {
  background-color: var(--primary-navy);
  border-color: var(--primary-navy);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 43, 92, 0.15);
}

.stepper-step.completed .step-num {
  background-color: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

.step-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 0.35rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.step-label-hi {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stepper-step.active .step-label {
  color: var(--primary-navy);
}

/* Order Auth Gate */
.order-auth-gate {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  gap: 0.85rem;
}

.auth-gate-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.auth-gate-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f2b5c;
  margin: 0;
}

.auth-gate-desc {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 480px;
  line-height: 1.6;
  margin: 0;
}

.auth-gate-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Modal Body & Step Panels */
.order-modal-body {
  padding: 1.5rem 1.75rem;
  overflow-y: auto;
  flex-grow: 1;
}

.order-step-panel {
  display: none;
  animation: stepFadeIn 0.3s ease forwards;
}

.order-step-panel.active {
  display: block;
}

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

.step-instruction {
  margin-bottom: 1.25rem;
}

.step-heading {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.2rem;
}

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

/* Step 1: Services Grid */
.order-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.order-service-card {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1rem;
  background-color: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.order-service-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.order-service-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.order-service-card.active {
  border-color: var(--primary-navy);
  background-color: var(--accent-light-blue);
  box-shadow: 0 4px 12px rgba(15, 43, 92, 0.08);
}

.order-service-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.order-service-card.active .order-service-icon {
  background-color: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
}

.order-service-info h4 {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.2rem;
  display: flex;
  flex-direction: column;
}

.card-hi {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-amber);
}

.order-service-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.order-check-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: #ffffff;
  font-size: 0.8rem;
  display: none;
  align-items: center;
  justify-content: center;
}

.order-service-card.active .order-check-badge {
  display: flex;
}

/* Step 2: Upload Dropzone */
.order-dropzone {
  border: 2px dashed #93c5fd;
  background-color: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  margin-bottom: 1.5rem;
}

.order-dropzone:hover, .order-dropzone.dragover {
  border-color: var(--accent-blue);
  background-color: var(--accent-light-blue);
}

.order-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.dropzone-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--accent-blue);
  font-size: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.dropzone-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.dropzone-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.dropzone-browse-btn {
  pointer-events: none;
}

/* Uploaded Files List */
.order-files-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.order-files-heading {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-clear-all {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.order-files-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.no-files-placeholder {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
}

.file-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.9rem;
  background-color: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.file-item-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow: hidden;
}

.file-item-icon {
  font-size: 1.2rem;
  color: var(--accent-blue);
}

.file-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

.file-item-size {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.file-item-remove {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 1.15rem;
  transition: color var(--transition-fast);
}

.file-item-remove:hover {
  color: #ef4444;
}

/* Step 3: Work & Customer Details Form */
.order-form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.order-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.order-form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-btn {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  background-color: #ffffff;
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.chip-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.chip-btn.active {
  background-color: var(--primary-navy);
  border-color: var(--primary-navy);
  color: #ffffff;
}

.quantity-control-wrap {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 140px;
  background-color: #ffffff;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background-color: var(--bg-page);
  border: none;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.qty-btn:hover {
  background-color: var(--border-light);
}

.qty-input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  outline: none;
}

.order-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast);
}

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

.order-form-divider {
  height: 1px;
  background-color: var(--border-light);
  margin: 0.5rem 0;
}

/* Step 4: Summary Card */
.order-summary-card {
  background-color: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.summary-header {
  background: linear-gradient(135deg, var(--bg-page), #f1f5f9);
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.summary-header-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.summary-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0;
}

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

.summary-details-list {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.92rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border-light);
}

.summary-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-row-label {
  color: var(--text-muted);
  font-weight: 600;
}

.summary-row-val {
  font-weight: 700;
  color: var(--primary-navy);
  text-align: right;
  max-width: 320px;
}

.summary-total-bar {
  background-color: #fffbeb;
  border-top: 1.5px solid #fde68a;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.total-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: #78350f;
}

.total-note {
  font-size: 0.78rem;
  color: #92400e;
  margin-top: 0.2rem;
}

.total-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: #92400e;
  letter-spacing: 0.02em;
}

.order-final-action {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.order-place-btn {
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-gold), #d97706);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.order-place-btn:hover {
  background: linear-gradient(135deg, #f59e0b, #b45309);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.45);
}

.order-demo-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Step 5: Demo Success Screen */
.order-success-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-success-icon {
  font-size: 4rem;
  color: #16a34a;
  margin-bottom: 1rem;
  animation: successBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successBounce {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.order-success-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.order-success-desc {
  font-size: 1.02rem;
  color: var(--text-dark);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.order-success-ref-box {
  background-color: var(--bg-page);
  border: 1.5px dashed var(--accent-blue);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ref-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.ref-code {
  font-size: 1.25rem;
  color: var(--accent-blue);
  letter-spacing: 0.05em;
}

.order-success-info {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* -------------------------------------------------------------------
   NAVBAR USER ACCOUNT BADGE & DROPDOWN
------------------------------------------------------------------- */
.user-account-badge {
  position: relative;
}

.user-badge-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-light-blue);
  border: 1.5px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.85rem 0.35rem 0.45rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--primary-navy);
}

.user-badge-btn:hover {
  border-color: var(--accent-blue);
  background-color: #dbeafe;
}

.user-avatar-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.user-badge-name {
  font-size: 0.88rem;
  font-weight: 700;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 230px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem 0;
  display: none;
  flex-direction: column;
  z-index: 1050;
  animation: modalPop 0.2s ease forwards;
}

.user-dropdown-menu.active {
  display: flex;
}

.dropdown-header {
  padding: 0.75rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dropdown-header strong {
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.dropdown-header span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.dropdown-divider {
  height: 1px;
  background-color: var(--border-light);
  margin: 0.35rem 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: var(--bg-page);
  color: var(--accent-blue);
}

.dropdown-item i {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-right: 0.5rem;
}

.dropdown-item-danger {
  color: #ef4444;
}

.dropdown-item-danger:hover {
  background-color: #fef2f2;
  color: #dc2626;
}

.dropdown-item-danger i {
  color: #ef4444;
}

.badge-tag {
  font-size: 0.72rem;
  padding: 0.15rem 0.45rem;
  background-color: var(--accent-gold-light);
  color: #92400e;
  border-radius: var(--radius-full);
  font-weight: 700;
}

/* -------------------------------------------------------------------
   CUSTOMER AUTHENTICATION MODAL STYLING
------------------------------------------------------------------- */
.auth-modal-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 45px rgba(10, 25, 47, 0.25);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-light);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.auth-modal-header {
  background: linear-gradient(135deg, var(--primary-navy), #173b75);
  color: var(--text-white);
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(245, 158, 11, 0.4);
}

.auth-modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.auth-modal-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0.15rem 0 0 0;
}

.auth-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.auth-modal-close:hover {
  background: rgba(239, 68, 68, 0.9);
}

.auth-tabs {
  display: flex;
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-light);
}

.auth-tab-btn {
  flex: 1;
  padding: 0.9rem 1rem;
  background: none;
  border: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
  text-align: center;
}

.auth-tab-btn:hover {
  color: var(--primary-navy);
}

.auth-tab-btn.active {
  color: var(--primary-navy);
  border-bottom-color: var(--accent-blue);
  background-color: #ffffff;
}

.auth-modal-body {
  padding: 1.75rem;
}

.auth-panel {
  display: none;
}

.auth-panel.active {
  display: block;
  animation: stepFadeIn 0.25s ease forwards;
}

.auth-alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-alert-error {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.auth-alert-success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.auth-form-group {
  margin-bottom: 1.2rem;
}

.auth-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}

.auth-input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-icon-wrap i:first-child {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  font-size: 1.15rem;
  pointer-events: none;
}

.auth-input {
  width: 100%;
  padding: 0.8rem 2.8rem 0.8rem 2.8rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast);
  letter-spacing: 0.02em;
}

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

.btn-toggle-pin {
  position: absolute;
  right: 0.8rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
}

.btn-toggle-pin:hover {
  color: var(--primary-navy);
}

.auth-submit-btn {
  width: 100%;
  padding: 0.85rem;
  font-size: 1.05rem;
  font-weight: 800;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.auth-links-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.auth-link-btn {
  background: none;
  border: none;
  color: var(--accent-blue);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast);
}

.auth-link-btn:hover {
  color: var(--primary-navy);
  text-decoration: underline;
}

/* -------------------------------------------------------------------
   CUSTOMER PROFILE MODAL STYLING
------------------------------------------------------------------- */
.profile-modal-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 45px rgba(10, 25, 47, 0.25);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-light);
  animation: modalPop 0.3s ease forwards;
}

.profile-modal-header {
  background: linear-gradient(135deg, var(--primary-navy), #173b75);
  color: var(--text-white);
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(245, 158, 11, 0.4);
}

.profile-modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.profile-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-modal-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-user-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: var(--bg-page);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.profile-avatar-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.profile-user-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.15rem;
}

.profile-user-phone {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.35rem;
}

.profile-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #16a34a;
  background-color: #f0fdf4;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid #bbf7d0;
}

.profile-section-block {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.profile-section-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.profile-empty-orders {
  text-align: center;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-empty-orders i {
  font-size: 2.5rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.profile-empty-orders h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.profile-empty-orders p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.profile-actions-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-block {
  width: 100%;
}

.btn-danger-outline {
  border: 1.5px solid #fecaca;
  color: #ef4444;
  background-color: #ffffff;
  padding: 0.7rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-danger-outline:hover {
  background-color: #fef2f2;
  border-color: #ef4444;
}

/* -------------------------------------------------------------------
   ORDER AUTH GATE (UNAUTHENTICATED VISITOR PROMPT)
------------------------------------------------------------------- */
.order-auth-gate {
  padding: 3.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: stepFadeIn 0.3s ease forwards;
}

.auth-gate-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent-light-blue);
  color: var(--accent-blue);
  font-size: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 2px solid rgba(37, 99, 235, 0.2);
}

.auth-gate-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.auth-gate-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.auth-gate-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 360px;
}

.auth-gate-actions .btn {
  flex: 1;
  min-width: 140px;
}

/* -------------------------------------------------------------------
   REAL ORDER SUCCESS DETAILS BOX & STATUS BADGES
------------------------------------------------------------------- */
.order-success-details-box {
  background-color: var(--bg-page);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
}

.success-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border-light);
}

.success-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-k {
  color: var(--text-muted);
  font-weight: 600;
}

.detail-v {
  color: var(--primary-navy);
  font-weight: 700;
}

.ref-code-highlight {
  font-size: 1.15rem;
  color: var(--accent-blue);
  letter-spacing: 0.05em;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-new {
  background-color: #dbeafe;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.status-accepted {
  background-color: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.status-processing {
  background-color: #e0e7ff;
  color: #3730a3;
  border: 1px solid #c7d2fe;
}

.status-ready {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.status-completed {
  background-color: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.status-cancelled {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* -------------------------------------------------------------------
   CUSTOMER MY ORDERS LIST STYLING
------------------------------------------------------------------- */
.customer-orders-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.customer-order-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.customer-order-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.order-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-card-id {
  font-weight: 800;
  color: var(--accent-blue);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.order-card-service {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.order-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.35rem;
}

.order-card-specs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.order-card-spec-tag {
  background-color: var(--bg-page);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-weight: 600;
  font-size: 0.78rem;
}

/* -------------------------------------------------------------------
   RESPONSIVE DESIGN FOR ORDER MODAL
------------------------------------------------------------------- */
@media (max-width: 640px) {
  .order-modal-card {
    max-height: 95vh;
  }

  .order-stepper {
    padding: 0.85rem 1rem;
  }

  .stepper-track {
    left: 2rem;
    right: 2rem;
  }

  .step-label {
    font-size: 0.72rem;
  }

  .order-modal-body {
    padding: 1.25rem 1rem;
  }

  .order-service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .order-service-card {
    padding: 0.85rem 0.75rem;
  }

  .order-service-info h4 {
    font-size: 0.88rem;
  }

  .order-service-info p {
    display: none;
  }

  .order-modal-footer {
    padding: 1rem;
  }
}

/* -------------------------------------------------------------------
   9. FOOTER
------------------------------------------------------------------- */
.footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 2rem 0;
  border-top: 4px solid var(--accent-gold);
}

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

.footer-brand h2 {
  color: var(--text-white);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.footer-brand h4 {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer-title {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--accent-gold);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

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

.footer-branch-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-branch-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-phone-link {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: 0.02em;
}

.footer-phone-link:hover {
  color: var(--accent-gold) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

/* -------------------------------------------------------------------
   RESPONSIVE DESIGN (MOBILE & TABLET)
------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-preview {
    display: none;
  }

  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

@media (max-width: 768px) {
  .hero {
    background-image: 
      linear-gradient(180deg, rgba(10, 25, 47, 0.95) 0%, rgba(15, 43, 92, 0.92) 100%),
      url('../assets/images/hero-bg.jpg');
    background-position: center center;
    padding: 3.5rem 0 4.5rem 0;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

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

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

  .hero-brand-name {
    font-size: 1.75rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .branches-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .branch-card {
    padding: 1.75rem 1.25rem;
  }

  .branch-card-actions {
    grid-template-columns: 1fr;
  }

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

  .gallery-tabs {
    gap: 0.45rem;
    margin-bottom: 2rem;
  }

  .gallery-tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .lightbox-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }

  .lightbox-prev-btn {
    left: 8px;
  }

  .lightbox-next-btn {
    right: 8px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .service-card {
    padding: 1.25rem 0.9rem;
    border-radius: var(--radius-md);
  }

  .service-icon-box {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .service-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .service-bullet-list {
    margin: 0.4rem 0 0.85rem 0;
    gap: 0.35rem;
  }

  .service-bullet-list li {
    font-size: 0.8rem;
    gap: 0.3rem;
  }

  .service-bullet-list li i {
    font-size: 0.9rem;
  }

  .price-tabs {
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }

  .price-tab-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }

  .price-table th, .price-table td {
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
  }

  .price-cta-heading {
    font-size: 1.15rem;
  }

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

  .gallery-bottom-cta {
    padding: 1.75rem 1.25rem;
    margin-top: 2rem;
  }

  .gallery-cta-text {
    font-size: 1.15rem;
  }
}

@media (max-width: 420px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
