/* ============================================
   Om Sai Fabrication - Main Stylesheet
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --navy: #1B2A4A;
  --navy-light: #2a3f6b;
  --orange: #FF6B35;
  --orange-hover: #e85a25;
  --orange-light: rgba(255, 107, 53, 0.1);
  --steel-grey: #8C8C8C;
  --white: #FFFFFF;
  --charcoal: #2D2D2D;
  --light-bg: #F5F6FA;
  --border-color: #E0E0E0;
  --success: #28a745;
  --star-color: #FFB400;

  /* Typography */
  --font-primary: 'Inter', 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', 'Segoe UI', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 42px;
  --font-size-4xl: 56px;
  --line-height: 1.7;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  /* Borders & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-orange: 0 4px 20px rgba(255, 107, 53, 0.3);

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

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

p,
h1,
h2,
h3,
td {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--charcoal);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* ---------- Skip to Content (Accessibility) ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

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

h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  color: #555;
}

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

a:hover {
  color: var(--orange-hover);
}

ul,
ol {
  padding-left: var(--space-md);
}

img,
video,
iframe,
table {
  max-width: 100%;
}

img {
  height: auto;
  display: block;
}

/* ---------- Utility Classes ---------- */
.container,
.main-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 16px !important;
  box-sizing: border-box;
}

.section {
  padding: var(--space-xl) 0;
}

.section-alt {
  background-color: var(--light-bg);
}

.section-dark {
  background-color: var(--navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: #ccd4e0;
}

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

.text-orange {
  color: var(--orange);
}

.text-navy {
  color: var(--navy);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.section-header .section-label {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-xs);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: var(--font-size-lg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: var(--font-size-base);
  font-weight: 600;
  font-family: var(--font-primary);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  min-height: 48px;
  min-width: 48px;
  line-height: 1.2;
}

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

.btn-primary:hover {
  background: var(--orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

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

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

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

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

.btn-sm {
  padding: 10px 20px;
  font-size: var(--font-size-sm);
}

.btn-lg {
  padding: 18px 40px;
  font-size: var(--font-size-lg);
}

.btn i {
  font-size: 1.1em;
}

/* ---------- Header / Navigation ---------- */
/* ========================= */
/* NEW NAVBAR - START         */
/* ========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  /* FIXED: Higher than mobile-overlay (1040) */
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Safety net: ensure decorative overlays don't block clicks */
.hero::before,
.hero::after,
.hero-overlay,
[class*="overlay"]:not(.mobile-overlay) {
  pointer-events: none !important;
}

.header-top {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: var(--font-size-sm);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.header-top a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-top a:hover {
  color: var(--orange);
}

.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-main {
  padding: 12px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.logo-tagline {
  font-size: 11px;
  color: var(--steel-grey);
  letter-spacing: 0.5px;
}

/* Main nav wrapper */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Nav menu — desktop horizontal */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-menu>li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
  color: var(--orange);
  background: var(--orange-light);
}

/* Desktop CTA */
.nav-cta {
  margin-left: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Services Dropdown */
.nav-dropdown {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.nav-dropdown-toggle {
  cursor: pointer;
}

.dropdown-chevron {
  font-size: 10px;
  transition: transform 0.25s ease;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 1001;
  pointer-events: none;
}

/* Invisible hover bridge between trigger and dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 24px;
  background: transparent;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #FFF3ED;
  color: var(--orange);
}

.dropdown-menu li a i {
  width: 18px;
  text-align: center;
  color: var(--orange);
  font-size: 13px;
  flex-shrink: 0;
}

.dropdown-menu li:first-child a {
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 2px;
}

/* Desktop: show on hover/focus-within */
.nav-dropdown:hover>.dropdown-menu,
.nav-dropdown:focus-within>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown:hover>.nav-dropdown-toggle .dropdown-chevron,
.nav-dropdown:focus-within>.nav-dropdown-toggle .dropdown-chevron {
  transform: rotate(180deg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 3px 0;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  cursor: pointer;
}

.mobile-overlay.active {
  display: block;
}

/* Mobile CTA inside menu */
.mobile-nav-cta {
  display: none;
  padding: 16px;
}

.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ========================= */
/* NEW NAVBAR - END           */
/* ========================= */

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0f1b33 60%, #1a2540 100%);
  overflow: hidden;
  margin-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l9.9-9.9h-2.828zM27 0l-9.9 9.9 1.415 1.414L29.828 0H27z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
}

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

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.hero h1 {
  color: var(--white);
  font-size: var(--font-size-4xl);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.hero h1 span {
  color: var(--orange);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: #b0bbd0;
  margin-bottom: var(--space-lg);
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

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

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--orange);
  display: block;
}

.hero-stat-label {
  font-size: var(--font-size-sm);
  color: #8899b0;
}

/* ---------- Services Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
  align-items: stretch;
}

/* ---------- Service Card ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Image fills top of card — no padding above it */
.service-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f2f5;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

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

/* Card body — padded content area below image */
.service-card-body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 2;
}

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

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

/* Icon overlapping image/body boundary */
.service-card .service-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 2px solid var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xs);
  font-size: 20px;
  color: var(--orange);
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(255,107,53,0.15);
  flex-shrink: 0;
}

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

.service-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xs);
  color: var(--navy);
}

.service-card p {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
  color: var(--steel-grey);
  flex: 1;
}

.service-card .btn-sm {
  margin-top: auto;
}

/* ---------- Why Choose Us ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.trust-card {
  text-align: center;
  padding: var(--space-lg);
}

.trust-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 32px;
  color: var(--orange);
}

.trust-card h3 {
  font-size: var(--font-size-lg);
}

.trust-card p {
  font-size: var(--font-size-sm);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}

/* ---------- Areas We Serve ---------- */
.areas-grid,
.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  width: 100%;
}

.area-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: var(--font-size-sm);
  color: var(--charcoal);
  text-decoration: none;
  transition: var(--transition-fast);
}

.area-tag:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-1px);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 60px;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--star-color);
  margin-bottom: var(--space-sm);
  font-size: 16px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-sm);
  color: #555;
  font-size: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}

.testimonial-location {
  font-size: 13px;
  color: var(--steel-grey);
}

/* ---------- Contact / Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-base);
  font-family: var(--font-primary);
  transition: var(--transition-fast);
  background: var(--white);
  color: var(--charcoal);
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group .error-msg {
  display: none;
  color: #dc3545;
  font-size: 13px;
  margin-top: 4px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #dc3545;
}

.form-group.has-error .error-msg {
  display: block;
}

.contact-info-block {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

.contact-info-block h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.contact-info-item i {
  width: 44px;
  height: 44px;
  background: rgba(255, 107, 53, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--white);
}

.contact-info-item a:hover {
  color: var(--orange);
}

.contact-info-item strong {
  display: block;
  margin-bottom: 2px;
}

.contact-info-item span,
.contact-info-item p {
  color: #b0bbd0;
  font-size: 15px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: #ccc;
  padding: var(--space-xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-lg);
}

.footer-col p {
  color: #aaa;
  font-size: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #aaa;
  font-size: 15px;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: center;
}

.footer-contact-item i {
  color: var(--orange);
  width: 20px;
  text-align: center;
}

.footer-contact-item a {
  color: #aaa;
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: var(--space-sm);
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 18px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-sm) 0;
  text-align: center;
  font-size: var(--font-size-sm);
  color: #888;
}

.footer-map iframe {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 180px;
  border: 0;
  margin-top: var(--space-sm);
}

/* ---------- Floating CTA Buttons ---------- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.floating-whatsapp {
  background: #25D366;
}

.floating-whatsapp:hover {
  background: #20b858;
  color: var(--white);
}

.floating-call {
  background: var(--orange);
}

.floating-call:hover {
  background: var(--orange-hover);
  color: var(--white);
}


/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  padding: var(--space-sm) 0;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border-color);
  margin-top: 100px;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  margin: 0;
  font-size: var(--font-size-sm);
}

.breadcrumb-list li::after {
  content: '/';
  margin-left: 8px;
  color: var(--steel-grey);
}

.breadcrumb-list li:last-child::after {
  display: none;
}

.breadcrumb-list li a {
  color: var(--steel-grey);
}

.breadcrumb-list li:last-child {
  color: var(--navy);
  font-weight: 600;
}

/* ---------- Page Headers ---------- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #0f1b33 100%);
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.page-header h1 {
  color: var(--white);
  font-size: var(--font-size-3xl);
  position: relative;
  z-index: 2;
}

.page-header p {
  color: #b0bbd0;
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ---------- Service Detail Pages ---------- */
.service-detail {
  padding: var(--space-xl) 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.service-detail h2 {
  margin-top: var(--space-lg);
}

.service-detail ul {
  margin-bottom: var(--space-sm);
}

.service-detail ul li {
  margin-bottom: 8px;
  padding-left: 8px;
}

.service-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  border: 1px solid var(--border-color);
}

.sidebar-card h4 {
  margin-bottom: var(--space-sm);
  color: var(--navy);
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
}

.sidebar-card ul li {
  margin-bottom: 8px;
}

.sidebar-card ul li a {
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.sidebar-card ul li a:hover,
.sidebar-card ul li a.active {
  background: var(--orange-light);
  color: var(--orange);
}

/* ---------- FAQ Section ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition-fast);
  border: none;
  width: 100%;
  text-align: left;
  font-size: var(--font-size-base);
  font-family: var(--font-primary);
  gap: 12px;
}

.faq-question:hover {
  background: var(--light-bg);
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--light-bg);
}

.faq-answer-inner {
  padding: 0 20px 18px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

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

/* Gallery styles moved to css/gallery.css */

/* Lightbox styles moved to css/gallery.css */

/* ---------- Location Pages ---------- */
.location-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.location-service-card {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.location-service-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--orange);
}

.location-service-card i {
  font-size: 28px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 4px;
}

.location-service-card h3 {
  font-size: var(--font-size-base);
  margin-bottom: 4px;
}

.location-service-card p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

.nearby-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nearby-tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: var(--font-size-sm);
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition-fast);
}

.nearby-tag:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ---------- Locations Master Page ---------- */
.location-cluster {
  margin-bottom: var(--space-lg);
}

.location-cluster h3 {
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.location-cluster-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- About Page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-image-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-md);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  color: var(--white);
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder i {
  font-size: 80px;
  color: var(--orange);
  margin-bottom: var(--space-sm);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.mv-card {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.mv-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-card h3 i {
  color: var(--orange);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #e85520 100%);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
}

.cta-banner .btn {
  margin: 0 8px;
}

/* ---------- Map ---------- */
.map-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ---------- Working Hours ---------- */
.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li .day {
  font-weight: 600;
  color: var(--navy);
}

.hours-list li .time {
  color: var(--steel-grey);
}

.hours-list li .time.closed {
  color: #dc3545;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Form Success ---------- */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-lg);
}

.form-success i {
  font-size: 48px;
  color: var(--success);
  margin-bottom: var(--space-sm);
}

.form-success h3 {
  margin-bottom: var(--space-xs);
}

/* ---------- Quote CTA Box (replaces pricing) ---------- */
.quote-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #0f1b33 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  margin: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}

.quote-cta-box::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.quote-cta-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 28px;
  color: var(--orange);
}

.quote-cta-box h3 {
  color: var(--white);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.quote-cta-box p {
  color: #b0bbd0;
  font-size: var(--font-size-base);
  max-width: 500px;
  margin: 0 auto var(--space-md);
}

.quote-cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.quote-cta-buttons .btn {
  min-width: 200px;
}

.quote-cta-buttons .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.quote-cta-buttons .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* ---------- Hero Floating Particles ---------- */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 107, 53, 0.4);
  border-radius: 50%;
  animation: floatParticle 8s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 1.5s; animation-duration: 9s; width: 8px; height: 8px; }
.particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 3s; animation-duration: 6s; width: 4px; height: 4px; }
.particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 0.5s; animation-duration: 10s; }
.particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 2s; animation-duration: 8s; width: 10px; height: 10px; background: rgba(255, 107, 53, 0.2); }
.particle:nth-child(6) { left: 60%; top: 80%; animation-delay: 4s; animation-duration: 7s; width: 5px; height: 5px; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25% { transform: translateY(-40px) translateX(15px); opacity: 0.7; }
  50% { transform: translateY(-20px) translateX(-10px); opacity: 0.5; }
  75% { transform: translateY(-60px) translateX(20px); opacity: 0.8; }
}

/* ---------- Location Search ---------- */
.location-search-wrap {
  max-width: 500px;
  margin: 0 auto var(--space-lg);
  position: relative;
}

.location-search-wrap input {
  width: 100%;
  padding: 16px 20px 16px 48px;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  font-size: var(--font-size-base);
  font-family: var(--font-primary);
  transition: var(--transition-fast);
  background: var(--white);
  color: var(--charcoal);
  min-height: 52px;
}

.location-search-wrap input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.location-search-wrap i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--steel-grey);
  font-size: 16px;
}

.location-search-count {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--steel-grey);
  margin-bottom: var(--space-sm);
}

/* Collapsible clusters */
.cluster-toggle {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--orange);
  margin-bottom: var(--space-sm);
}

.cluster-toggle h3 {
  margin-bottom: 0;
  display: inline-block;
}

.cluster-toggle .cluster-count {
  background: var(--orange);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.cluster-toggle .cluster-chevron {
  color: var(--orange);
  transition: transform 0.3s ease;
  font-size: 14px;
  margin-left: 8px;
}

.location-cluster.collapsed .cluster-chevron {
  transform: rotate(-90deg);
}

.location-cluster.collapsed .location-cluster-grid {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.location-cluster .location-cluster-grid {
  max-height: 5000px;
  transition: max-height 0.4s ease;
}