/*
Theme Name: SurveyHire
Theme URI: https://surveyhire.co.uk
Author: SurveyHire
Author URI: https://surveyhire.co.uk
Description: Professional surveying and geomatics equipment hire theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: surveyhire
Tags: business, equipment-hire, surveying
*/

/* =====================================================
   CSS CUSTOM PROPERTIES
===================================================== */
:root {
  --color-primary: #f47920;
  --color-primary-dark: #d96510;
  --color-dark: #1a1a1a;
  --color-dark-2: #2d2d2d;
  --color-dark-3: #333333;
  --color-gray: #666666;
  --color-gray-light: #999999;
  --color-border: #e5e5e5;
  --color-bg-light: #f8f8f8;
  --color-bg-dark: #1c1c1c;
  --color-white: #ffffff;
  --color-text: #333333;

  --font-heading: 'Barlow', 'Arial Black', sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;

  --container-max: 1200px;
  --container-pad: 0 20px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --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);

  --transition: 0.25s ease;
}

/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

/* =====================================================
   UTILITY CLASSES
===================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

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

.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 680px;
}

/* =====================================================
   TOP BAR
===================================================== */
.top-bar {
  background: var(--color-dark);
  color: #ccc;
  font-size: 0.8rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: var(--color-primary); }
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item svg { width: 13px; height: 13px; fill: var(--color-primary); flex-shrink: 0; }

/* =====================================================
   HEADER / NAVIGATION
===================================================== */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 20px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-dark);
  flex-shrink: 0;
}
.site-logo span { color: var(--color-primary); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-dark-3);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--color-primary); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition);
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.85) 0%, rgba(30,30,30,0.6) 60%, rgba(244,121,32,0.15) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; padding: 80px 20px; }
.hero-content { max-width: 600px; }

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-primary);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero h1 .accent { color: var(--color-primary); }

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 0.95rem;
  color: #c0c0c0;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #aaa;
  font-size: 0.82rem;
  margin-top: 28px;
}
.hero-trust svg { width: 14px; fill: var(--color-primary); }

/* =====================================================
   STATS BAR
===================================================== */
.stats-bar {
  background: var(--color-dark);
  padding: 20px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 20px; height: 20px; fill: white; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: #999;
  margin-top: 2px;
}

/* =====================================================
   ABOUT SECTION
===================================================== */
.about-section { padding: 80px 0; background: var(--color-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .section-desc { margin-bottom: 24px; }
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-primary);
  color: white;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
}
.about-badge .rating {
  font-size: 1.2rem;
  font-weight: 900;
  display: block;
}
.stars { color: #ffd700; font-size: 0.75rem; margin-top: 2px; }

/* =====================================================
   PRODUCTS / HIRE SECTION
===================================================== */
.products-section { padding: 80px 0; background: var(--color-bg-light); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card-body { padding: 20px; }
.product-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}
.product-card-body p {
  font-size: 0.85rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}
.explore-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 5px;
}
.explore-link:hover { gap: 8px; }

/* =====================================================
   INDUSTRY SOLUTIONS
===================================================== */
.industry-section { padding: 80px 0; background: var(--color-white); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  cursor: pointer;
}
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.industry-card:hover img { transform: scale(1.08); }
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background var(--transition);
}
.industry-card:hover .industry-overlay {
  background: linear-gradient(to top, rgba(244,121,32,0.85) 0%, rgba(244,121,32,0.2) 70%);
}
.industry-name {
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

/* =====================================================
   HIRING PROCESS
===================================================== */
.process-section { padding: 80px 0; background: var(--color-bg-light); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--color-primary) 0, var(--color-primary) 10px, transparent 10px, transparent 20px);
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.step-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p { font-size: 0.83rem; color: var(--color-gray); line-height: 1.6; }

/* =====================================================
   WHY CHOOSE US
===================================================== */
.why-section { padding: 80px 0; background: var(--color-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.why-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(244,121,32,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feature-icon svg { width: 20px; height: 20px; fill: var(--color-primary); }
.why-feature h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.why-feature p { font-size: 0.8rem; color: var(--color-gray); line-height: 1.5; }

.why-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials-section { padding: 80px 0; background: var(--color-bg-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-quote {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.88rem; }
.author-company { font-size: 0.78rem; color: var(--color-gray-light); }
.star-rating { color: #ffc107; font-size: 0.8rem; margin-bottom: 4px; }

/* =====================================================
   PROJECTS / CASE STUDIES
===================================================== */
.projects-section { padding: 80px 0; background: var(--color-white); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.project-card:hover { box-shadow: var(--shadow-md); }
.project-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.project-card-body { padding: 22px; background: var(--color-white); }
.project-card-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.project-card-body p { font-size: 0.83rem; color: var(--color-gray); line-height: 1.6; }
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
}
.projects-cta-wrap { text-align: center; margin-top: 36px; }

/* =====================================================
   CTA BANNER
===================================================== */
.cta-banner {
  background: var(--color-dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(244,121,32,0.08));
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  color: var(--color-white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
}
.cta-banner p { color: #999; font-size: 0.9rem; margin-top: 8px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* =====================================================
   FAQ
===================================================== */
.faq-section { padding: 80px 0; background: var(--color-bg-light); }
.faq-section .section-header { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
  cursor: pointer;
  gap: 12px;
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--color-dark); }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.88rem;
  color: var(--color-gray);
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 200px; padding: 0 22px 18px; }

/* =====================================================
   FINAL CTA
===================================================== */
.final-cta {
  padding: 80px 0;
  background: var(--color-white);
  text-align: center;
}
.final-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.final-cta p { color: var(--color-gray); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: #111;
  color: #aaa;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-logo { font-size: 1.4rem; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: #888; }
.footer-col h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: #888;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--color-primary); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.footer-contact-item svg { width: 14px; fill: var(--color-primary); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #666;
}
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: var(--color-primary); }
.footer-bottom-links { display: flex; gap: 16px; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 16px; box-shadow: var(--shadow-md); }
  .main-nav.open { display: flex; }
  .mobile-menu-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .header-actions .btn:last-child { display: inline-flex; }

  .hero { min-height: 420px; }
  .hero .container { padding: 60px 20px; }

  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }

  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-image img { height: 260px; }
  .why-image { order: -1; }

  .products-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid, .projects-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }

  .cta-banner .container { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HIRE BRAND PAGES  (single-hire_brand.php)
========================================================================== */

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.hb-hero {
  background: linear-gradient(135deg, #fdf6f0 0%, #fef9f5 60%, #fff8f2 100%);
  padding: 60px 0 50px;
  border-bottom: 1px solid #f0e8e0;
}

.hb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: flex-start;
}

/* Badge tag */
.hb-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.hb-badge-tag svg {
  width: 14px;
  height: 14px;
  fill: var(--color-primary);
}

/* Title */
.hb-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 16px;
}
.hb-brand-accent {
  color: var(--color-primary);
}

/* Description */
.hb-description {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}

/* Hero buttons */
.hb-hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-ghost {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-border);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Bullet tick list */
.hb-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-top: 4px;
}
.hb-bullets li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--color-dark-3);
  font-weight: 500;
}
.hb-bullets li svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
  flex-shrink: 0;
}

/* Aside: logo + stats */
.hb-hero-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hb-brand-logo-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 28px;
  min-height: 160px;
  box-shadow: var(--shadow-sm);
}
.hb-brand-logo {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}
.hb-brand-logo-placeholder {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
  text-align: center;
}

.hb-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--color-white);
  overflow: hidden;
}
.hb-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  border-right: 1px solid var(--color-border);
  text-align: center;
}
.hb-stat:last-child { border-right: none; }
.hb-stat-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.hb-stat-label {
  font-size: 0.72rem;
  color: var(--color-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* --------------------------------------------------
   PRICE TABLE SECTION
-------------------------------------------------- */
.hb-table-section {
  padding: 70px 0;
  background: var(--color-white);
}

.hb-table-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

/* Search */
.hb-search-wrap {
  position: relative;
  flex-shrink: 0;
}
.hb-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: #aaa;
  pointer-events: none;
}
.hb-search-input {
  padding: 10px 14px 10px 38px;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-size: 0.85rem;
  width: 260px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--color-white);
  font-family: var(--font-body);
}
.hb-search-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(244,121,32,0.12);
}

/* Tabs */
.hb-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hb-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gray);
  cursor: pointer;
  transition: all var(--transition);
}
.hb-tab svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.hb-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.hb-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Table */
.hb-table-wrap {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hb-price-table {
  width: 100%;
  border-collapse: collapse;
}

.hb-price-table thead tr {
  background: #fafafa;
  border-bottom: 2px solid var(--color-border);
}

.hb-price-table th {
  padding: 13px 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gray);
  white-space: nowrap;
}

.hb-price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.hb-price-table tbody tr:last-child td { border-bottom: none; }

.hb-price-table tbody tr {
  transition: background var(--transition);
}
.hb-price-table tbody tr:hover {
  background: #fffaf6;
}

/* Hidden rows (filter/search) */
.hb-price-table tbody tr.hb-hidden {
  display: none;
}

/* Column sizing */
.col-equipment { width: 32%; }
.col-category  { width: 16%; }
.col-price     { width: 10%; text-align: right; }
.col-quote     { width: 10%; text-align: center; }

/* Row content */
.hb-row-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2px;
}
.hb-row-spec {
  display: block;
  font-size: 0.77rem;
  color: var(--color-gray-light);
  line-height: 1.4;
}

/* Category badge */
.hb-cat-badge {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--color-gray);
  background: #f5f5f5;
  padding: 3px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

/* Prices */
.hb-weekly-price {
  color: var(--color-primary);
  font-weight: 700;
}
.hb-price-na {
  color: #ccc;
}

/* Enquire button */
.hb-enquire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-dark);
  transition: all var(--transition);
  white-space: nowrap;
}
.hb-enquire-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* No results state */
.hb-no-results {
  padding: 50px 20px;
  text-align: center;
  color: var(--color-gray-light);
  border-top: 1px solid var(--color-border);
}
.hb-no-results svg {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  display: block;
  stroke: var(--color-border);
}
.hb-no-results p {
  font-size: 0.9rem;
}

/* Table note */
.hb-table-note {
  font-size: 0.78rem;
  color: var(--color-gray-light);
  margin-top: 10px;
  padding-left: 2px;
}

/* Empty state */
.hb-empty-table {
  padding: 40px;
  text-align: center;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  color: var(--color-gray);
  font-size: 0.9rem;
}

/* --------------------------------------------------
   BOTTOM CTA
-------------------------------------------------- */
.hb-cta-section {
  padding: 70px 0;
  background: var(--color-bg-light);
}

.hb-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.hb-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 12px;
  margin-top: 8px;
}

.hb-cta-desc {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 24px;
}

.hb-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hb-cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.hb-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
}
.hb-contact-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary);
}
.hb-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hb-contact-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}
.hb-contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray-light);
  margin-bottom: 2px;
}
.hb-contact-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-dark);
}

/* --------------------------------------------------
   HEADER: Dropdown Nav for Hire menu
-------------------------------------------------- */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  margin-left: 5px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  vertical-align: middle;
  margin-top: -2px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 6px 0;
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark-3);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover {
  background: #fff8f3;
  color: var(--color-primary);
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 900px) {
  .hb-hero-grid { grid-template-columns: 1fr; }
  .hb-hero-aside { max-width: 400px; }
  .hb-bullets { grid-template-columns: 1fr; }
  .hb-cta-grid { grid-template-columns: 1fr; gap: 30px; }
  .hb-cta-contacts { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 680px) {
  .hb-table-header { flex-direction: column; align-items: flex-start; }
  .hb-search-input { width: 100%; }
  .hb-search-wrap { width: 100%; }
  .col-monthly, .col-category { display: none; }
  .hb-stats-row { grid-template-columns: repeat(3, 1fr); }
  .hb-hero-buttons { flex-direction: column; align-items: flex-start; }
  .hb-hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   INDUSTRIES PAGE  (page-industries.php)
========================================================================== */

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.ind-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-dark);
  background-image: var(--ind-hero-bg, url('images/industries-hero.jpg'));
  background-size: cover;
  background-position: center;
}
.ind-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.55) 55%, rgba(244,121,32,0.12) 100%);
  z-index: 1;
}
.ind-hero-inner { position: relative; z-index: 2; padding: 70px 20px; }
.ind-hero-content { max-width: 580px; }

.ind-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.ind-badge svg { width: 14px; height: 14px; fill: var(--color-primary); }

.ind-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.ind-accent { color: var(--color-primary); }

.ind-hero-desc {
  font-size: 0.97rem;
  color: #ccc;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 500px;
}
.ind-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --------------------------------------------------
   INDUSTRY SELECTOR (icon tab cards)
-------------------------------------------------- */
.ind-selector-section {
  background: var(--color-white);
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
  z-index: 10;
}
.ind-selector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.ind-selector-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 12px 18px;
  border: none;
  border-right: 1px solid var(--color-border);
  border-bottom: 3px solid transparent;
  background: var(--color-white);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  min-height: 90px;
}
.ind-selector-card:last-child { border-right: none; }
.ind-selector-card:hover {
  background: #fff8f3;
  border-bottom-color: var(--color-primary);
}
.ind-selector-card.active {
  background: #fff8f3;
  border-bottom-color: var(--color-primary);
}
.ind-selector-icon {
  width: 28px;
  height: 28px;
  color: var(--color-gray);
  transition: color var(--transition);
}
.ind-selector-icon svg {
  width: 100%;
  height: 100%;
}
.ind-selector-card.active .ind-selector-icon,
.ind-selector-card:hover .ind-selector-icon {
  color: var(--color-primary);
}
.ind-selector-name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  transition: color var(--transition);
}
.ind-selector-card.active .ind-selector-name,
.ind-selector-card:hover .ind-selector-name { color: var(--color-primary); }
.ind-selector-sub {
  font-size: 0.7rem;
  color: var(--color-gray-light);
  line-height: 1.3;
}

/* --------------------------------------------------
   INDUSTRY CONTENT PANELS
-------------------------------------------------- */
.ind-panels-section {
  padding: 70px 0;
  background: var(--color-white);
}
.ind-panel {
  display: none;
}
.ind-panel.active {
  display: block;
  animation: indFadeIn 0.3s ease;
}
@keyframes indFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ind-panel-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: flex-start;
}
.ind-panel-text .section-tag { margin-bottom: 8px; }
.ind-panel-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.ind-panel-content {
  font-size: 0.93rem;
  color: var(--color-gray);
  line-height: 1.8;
}
.ind-panel-content p { margin-bottom: 14px; }
.ind-panel-content p:last-child { margin-bottom: 0; }

.ind-panel-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 22px 0 26px;
}
.ind-panel-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-dark-3);
  font-weight: 500;
}
.ind-panel-bullets li svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
  flex-shrink: 0;
  margin-top: 1px;
}
.ind-panel-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ind-panel-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ind-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------
   BRANDS SECTION
-------------------------------------------------- */
.ind-brands-section {
  padding: 70px 0;
  background: var(--color-bg-light);
}

.ind-brand-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ind-brand-tab {
  padding: 8px 20px;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gray);
  cursor: pointer;
  transition: all var(--transition);
}
.ind-brand-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.ind-brand-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.ind-brand-panel {
  display: none;
  animation: indFadeIn 0.3s ease;
}
.ind-brand-panel.active { display: block; }

.ind-brand-panel-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.ind-brand-img-wrap {
  position: relative;
  background: #f5f5f5;
}
.ind-brand-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.ind-brand-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.65);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.ind-brand-info {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ind-brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 10px;
}
.ind-brand-desc {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ind-brand-products-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray-light);
  margin-bottom: 12px;
}
.ind-brand-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 24px;
}
.ind-brand-products li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--color-dark-3);
  font-weight: 500;
}
.ind-brand-products li svg {
  width: 15px;
  height: 15px;
  fill: var(--color-primary);
  flex-shrink: 0;
}
.ind-brand-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --------------------------------------------------
   BOTTOM CTA
-------------------------------------------------- */
.ind-cta-section {
  padding: 70px 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}
.ind-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}
.ind-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.ind-cta-desc {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}
.ind-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ind-cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 1100px) {
  .ind-selector-grid { grid-template-columns: repeat(3, 1fr); }
  .ind-selector-card { border-bottom: 1px solid var(--color-border); }
  .ind-selector-card:nth-child(3) { border-right: none; }
}
@media (max-width: 900px) {
  .ind-panel-grid { grid-template-columns: 1fr; }
  .ind-img { height: 280px; }
  .ind-brand-panel-grid { grid-template-columns: 1fr; }
  .ind-brand-img { min-height: 220px; height: 220px; }
  .ind-cta-grid { grid-template-columns: 1fr; gap: 28px; }
  .ind-cta-contacts { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .ind-selector-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-selector-card:nth-child(2n) { border-right: none; }
  .ind-panel-bullets { grid-template-columns: 1fr; }
  .ind-brand-products { grid-template-columns: 1fr; }
  .ind-brand-info { padding: 24px 20px; }
  .ind-hero-actions .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   GLOBAL SHARED STYLES — new pages
========================================================================== */

.section-pad { padding: 70px 0; }
.bg-light    { background: var(--color-bg-light); }
.bg-dark     { background: var(--color-bg-dark); color: #ccc; }

/* Shared page hero */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero--dark { background: var(--color-dark); }
.page-hero--short { min-height: 220px; }
.page-hero__bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,rgba(10,10,10,.82) 0%,rgba(10,10,10,.55) 60%,rgba(244,121,32,.1) 100%);
  z-index: 1;
}
.page-hero__inner { position: relative; z-index: 2; padding: 60px 20px; max-width: var(--container-max); margin: 0 auto; }
.page-hero__badge {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.8px;
  color: var(--color-primary); margin-bottom: 12px; display: block;
}
.page-hero__title { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 14px; }
.page-hero__desc  { font-size: .95rem; color: #ccc; max-width: 520px; line-height: 1.7; margin-bottom: 24px; }
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.au-accent { color: var(--color-primary); }

/* Btn variants */
.btn-white { background: #fff; color: var(--color-dark); border: 2px solid #fff; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ==========================================================================
   GLOBAL MICRO-INTERACTIONS & ANIMATIONS
========================================================================== */

/* sh-btn: primary/outline buttons get lift + glow on hover */
.sh-btn {
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease !important;
}
.sh-btn:hover { transform: translateY(-2px); }
.btn-primary.sh-btn:hover { box-shadow: 0 6px 20px rgba(244,121,32,.35); }
.btn-outline-dark.sh-btn:hover { box-shadow: 0 4px 14px rgba(244,121,32,.18); }
.btn-white.sh-btn:hover  { box-shadow: 0 6px 20px rgba(255,255,255,.25); }

/* sh-card: cards get lift + subtle orange border glow */
.sh-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
  cursor: default;
}
.sh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(244,121,32,.13), 0 2px 8px rgba(0,0,0,.06) !important;
  border-color: rgba(244,121,32,.3) !important;
}
a.sh-card:hover { cursor: pointer; }

/* Existing cards pick up sh-card automatically */
.product-card, .testimonial-card, .why-feature,
.hb-contact-card, .ct-quick-card, .faq-qc-card,
.ind-brand-panel-grid, .au-principle-card,
.au-service-card, .svc-card, .au-team-card,
.proj-sector-chip, .ct-prefer-talk {
  transition: transform .25s ease, box-shadow .25s ease !important;
}
.product-card:hover, .testimonial-card:hover, .hb-contact-card:hover,
.ct-quick-card:hover, .faq-qc-card:hover, .au-principle-card:hover,
.au-service-card:hover, .svc-card:hover, .au-team-card:hover,
.proj-sector-chip:hover, .ct-prefer-talk:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(244,121,32,.13) !important;
}

/* Industry selector cards */
.ind-selector-card { transition: background .2s, border-color .2s, transform .2s !important; }
.ind-selector-card:hover { transform: translateY(-2px); }

/* Hire table enquire button */
.hb-enquire-btn {
  transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s !important;
}
.hb-enquire-btn:hover { transform: scale(1.03); box-shadow: 0 3px 10px rgba(244,121,32,.2); }

/* FAQ accordion item */
.faq-item { transition: box-shadow .2s !important; }
.faq-item:hover { box-shadow: 0 2px 12px rgba(244,121,32,.08) !important; }

/* Stats numbers — count-up handled in JS, glow on load */
.au-stat__value, .stat-number { transition: color .3s; }

/* Scroll-reveal base (activated by JS IntersectionObserver) */
.sh-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}
.sh-reveal.sh-visible { opacity: 1; transform: translateY(0); }

/* Stagger children reveal */
.au-principles__grid .sh-card:nth-child(1) { transition-delay: .05s; }
.au-principles__grid .sh-card:nth-child(2) { transition-delay: .12s; }
.au-principles__grid .sh-card:nth-child(3) { transition-delay: .19s; }
.au-principles__grid .sh-card:nth-child(4) { transition-delay: .26s; }
.svc-cards__grid .sh-card:nth-child(1) { transition-delay: .05s; }
.svc-cards__grid .sh-card:nth-child(2) { transition-delay: .12s; }
.svc-cards__grid .sh-card:nth-child(3) { transition-delay: .19s; }
.svc-cards__grid .sh-card:nth-child(4) { transition-delay: .26s; }

/* ==========================================================================
   ABOUT PAGE
========================================================================== */
.au-stats-bar { background: var(--color-white); border-bottom: 1px solid var(--color-border); }
.au-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.au-stat { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px 16px; border-right: 1px solid var(--color-border); text-align: center; }
.au-stat:last-child { border-right: none; }
.au-stat__value { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--color-primary); line-height: 1; }
.au-stat__label { font-size: .75rem; color: var(--color-gray-light); text-transform: uppercase; letter-spacing: .5px; margin-top: 5px; }

.au-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.au-story__title { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; margin-top: 10px; margin-bottom: 16px; }
.au-story__left { font-size: .92rem; color: var(--color-gray); line-height: 1.8; }
.au-story__right { font-size: .9rem; color: var(--color-gray); line-height: 1.8; }
.au-story__right p { margin-bottom: 14px; }

.au-principles__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 36px; }
.au-principle-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 28px 22px; }
.au-principle-card__icon { width: 44px; height: 44px; background: var(--color-primary); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.au-principle-card__icon svg { width: 22px; height: 22px; fill: #fff; }
.au-principle-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.au-principle-card p  { font-size: .82rem; color: var(--color-gray); line-height: 1.6; }

.au-services__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.au-services__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.au-service-card { background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 24px 20px; }
.au-service-card__icon { width: 40px; height: 40px; background: rgba(244,121,32,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.au-service-card__icon svg { width: 20px; height: 20px; fill: var(--color-primary); }
.au-service-card h3 { font-size: .92rem; font-weight: 700; margin-bottom: 7px; }
.au-service-card p  { font-size: .8rem; color: var(--color-gray); line-height: 1.5; }

/* Timeline */
.au-timeline__wrap { display: grid; grid-template-columns: 200px 1fr; gap: 40px; margin-top: 36px; }
.au-timeline__years { display: flex; flex-direction: column; gap: 0; border-right: 2px solid var(--color-border); padding-right: 0; }
.au-timeline__year-btn { background: none; border: none; text-align: left; padding: 14px 20px 14px 0; cursor: pointer; border-right: 3px solid transparent; margin-right: -2px; transition: all var(--transition); }
.au-timeline__year-btn:hover { color: var(--color-primary); }
.au-timeline__year-btn.active { border-right-color: var(--color-primary); }
.au-timeline__year-label { display: block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-gray-light); }
.au-timeline__year-value { display: block; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--color-dark); margin-top: 2px; }
.au-timeline__year-btn.active .au-timeline__year-value { color: var(--color-primary); }
.au-timeline__panels { position: relative; padding-left: 30px; }
.au-timeline__panel { display: none; animation: indFadeIn .3s ease; }
.au-timeline__panel.active { display: block; }
.au-timeline__year-big { font-family: var(--font-heading); font-size: 4rem; font-weight: 900; color: rgba(244,121,32,.08); line-height: 1; display: block; margin-bottom: -10px; }
.au-timeline__panel h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.au-timeline__panel p  { font-size: .9rem; color: var(--color-gray); line-height: 1.75; max-width: 520px; }

/* Brands */
.au-brands__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.au-brand-chip { background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 30px; padding: 10px 22px; font-size: .85rem; font-weight: 600; color: var(--color-dark); }

/* Why choose */
.au-why__grid { display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: start; }
.au-why__bullets { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.au-why__bullets li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--color-dark-3); }
.au-why__bullets li svg { width: 18px; height: 18px; fill: var(--color-primary); flex-shrink: 0; }
.au-team-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 30px 28px; }
.au-team-card__icon { width: 48px; height: 48px; background: rgba(244,121,32,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.au-team-card__icon svg { width: 22px; fill: var(--color-primary); }
.au-team-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.au-team-card p  { font-size: .85rem; color: var(--color-gray); line-height: 1.7; margin-bottom: 20px; }
.au-team-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* CTA banner */
.au-cta-banner { background: var(--color-primary); padding: 60px 0; text-align: center; }
.au-cta-banner__inner h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 900; color: #fff; margin-bottom: 10px; }
.au-cta-banner__inner p  { color: rgba(255,255,255,.85); font-size: .92rem; margin-bottom: 28px; }
.au-cta-banner__actions  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   SERVICES PAGE
========================================================================== */
.svc-hero { background: var(--color-bg-light); padding: 80px 0 60px; }
.svc-hero__inner { text-align: center; }
.svc-hero__title { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; margin: 10px 0 12px; }
.svc-hero__desc  { font-size: 1rem; color: var(--color-gray); }

.svc-cards__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.svc-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 30px 24px; }
.svc-card__icon { width: 52px; height: 52px; background: var(--color-primary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: transform .2s, box-shadow .2s; }
.svc-card:hover .svc-card__icon { transform: scale(1.08) rotate(-3deg); box-shadow: 0 4px 14px rgba(244,121,32,.3); }
.svc-card__icon svg { width: 24px; height: 24px; fill: #fff; }
.svc-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.svc-card p  { font-size: .85rem; color: var(--color-gray); line-height: 1.6; }

/* ==========================================================================
   PROJECTS PAGE
========================================================================== */
.proj-testi__grid { display: flex; flex-direction: column; gap: 40px; margin-top: 40px; }
.proj-testi__item { display: grid; grid-template-columns: 340px 1fr; gap: 0; border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; background: var(--color-white); box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s; }
.proj-testi__item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.proj-testi__item--right { direction: rtl; }
.proj-testi__item--right > * { direction: ltr; }
.proj-testi__img { position: relative; min-height: 260px; }
.proj-testi__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proj-testi__tag { position: absolute; top: 14px; left: 14px; background: var(--color-primary); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.proj-testi__body { padding: 30px 32px; display: flex; flex-direction: column; justify-content: center; }
.proj-testi__quote-icon { font-size: 2.5rem; line-height: 1; color: var(--color-primary); opacity: .25; display: block; margin-bottom: -8px; }
.proj-testi__body blockquote { font-size: .9rem; color: var(--color-gray); line-height: 1.75; font-style: italic; margin: 0 0 18px; border: none; padding: 0; }
.proj-testi__author { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.proj-testi__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--color-primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; color: #fff; font-size: .95rem; flex-shrink: 0; }
.proj-testi__author strong { display: block; font-size: .88rem; font-weight: 700; }
.proj-testi__author span   { font-size: .78rem; color: var(--color-gray-light); }
.proj-testi__equip { margin-top: 10px; }
.proj-testi__equip-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-gray-light); display: block; margin-bottom: 6px; }
.proj-testi__equip-tag { display: inline-block; background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 12px; padding: 3px 10px; font-size: .72rem; color: var(--color-gray); margin: 2px 3px 2px 0; }

.proj-sectors__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 32px; }
.proj-sector-chip { display: flex; align-items: center; gap: 12px; background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 16px 18px; cursor: default; }
.proj-sector-chip__icon { width: 36px; height: 36px; background: rgba(244,121,32,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.proj-sector-chip__icon svg { width: 18px; height: 18px; fill: var(--color-primary); }
.proj-sector-chip span { font-size: .85rem; font-weight: 600; color: var(--color-dark); }

.proj-partner__grid { display: grid; grid-template-columns: 1fr 300px; gap: 50px; align-items: start; }
.proj-partner__contact { display: flex; flex-direction: column; gap: 14px; }
.proj-partner__contact h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-gray-light); margin-bottom: 4px; }

/* ==========================================================================
   FAQ PAGE
========================================================================== */
.faq-main__wrap { max-width: 800px; }
.faq-search-wrap { position: relative; margin-bottom: 20px; }
.faq-search-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; fill: #aaa; pointer-events: none; }
.faq-search-wrap input { width: 100%; padding: 12px 16px 12px 42px; border: 1px solid var(--color-border); border-radius: 30px; font-size: .9rem; outline: none; transition: border-color .2s, box-shadow .2s; font-family: var(--font-body); }
.faq-search-wrap input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(244,121,32,.1); }

.faq-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.faq-cat-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border: 2px solid var(--color-border); background: var(--color-white); border-radius: 30px; font-family: var(--font-heading); font-size: .78rem; font-weight: 600; color: var(--color-gray); cursor: pointer; transition: all .2s; }
.faq-cat-btn svg { width: 12px; height: 12px; fill: currentColor; }
.faq-cat-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.faq-cat-btn.active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.faq-list-wrap { border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 32px; }
.faq-item { border-bottom: 1px solid #f0f0f0; }
.faq-item:last-child { border-bottom: none; }
.faq-item.faq-hidden { display: none; }
.faq-item__header { padding: 0; }
.faq-item__cat { display: block; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-primary); padding: 14px 20px 0; }
.faq-item__question { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; padding: 8px 20px 14px; text-align: left; font-family: var(--font-heading); font-size: .95rem; font-weight: 600; color: var(--color-dark); cursor: pointer; gap: 12px; }
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__icon { width: 22px; height: 22px; background: var(--color-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; line-height: 1; flex-shrink: 0; transition: transform .25s, background .25s; }
.faq-item.faq-open .faq-item__icon { transform: rotate(45deg); background: var(--color-dark); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; font-size: .87rem; color: var(--color-gray); line-height: 1.75; padding: 0 20px; }
.faq-item.faq-open .faq-item__answer { max-height: 400px; padding: 0 20px 18px; }

.faq-quick-contact { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.faq-qc-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 22px 16px; text-align: center; text-decoration: none; }
.faq-qc-card__icon { width: 40px; height: 40px; background: rgba(244,121,32,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.faq-qc-card__icon svg { width: 18px; height: 18px; fill: var(--color-primary); }
.faq-qc-card__label { font-size: .78rem; font-weight: 700; color: var(--color-dark); }
.faq-qc-card__value { font-size: .82rem; color: var(--color-gray); }

.faq-ask { background: var(--color-dark-2); }
.faq-ask__grid { display: grid; grid-template-columns: 1fr 460px; gap: 50px; align-items: start; }
.faq-ask__title { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; color: #fff; margin: 10px 0 12px; }
.faq-ask__desc  { font-size: .9rem; color: #aaa; line-height: 1.75; margin-bottom: 20px; }
.faq-ask__info  { display: flex; flex-direction: column; gap: 10px; }
.faq-ask__info li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: #bbb; }
.faq-ask__info li svg { width: 16px; fill: var(--color-primary); flex-shrink: 0; }
.faq-ask__info li a { color: #bbb; } .faq-ask__info li a:hover { color: var(--color-primary); }
.faq-ask__form { background: var(--color-white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); }
.faq-ask__form h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.faq-ask__form > p { font-size: .82rem; color: var(--color-gray); margin-bottom: 20px; }

/* ==========================================================================
   CONTACT PAGE
========================================================================== */
.ct-quick { padding: 40px 0; border-bottom: 1px solid var(--color-border); }
.ct-quick__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.ct-quick-card { display: flex; flex-direction: column; gap: 4px; background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 20px 18px; text-decoration: none; }
.ct-quick-card__icon { width: 36px; height: 36px; background: rgba(244,121,32,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.ct-quick-card__icon svg { width: 18px; fill: var(--color-primary); }
.ct-quick-card__label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-gray-light); }
.ct-quick-card__value { font-size: .88rem; font-weight: 600; color: var(--color-dark); line-height: 1.4; }

.ct-main__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.ct-address-box { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 22px; margin-bottom: 20px; }
.ct-address-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.ct-address-row:last-of-type { margin-bottom: 0; }
.ct-address-row svg { width: 18px; fill: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.ct-address-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-gray-light); display: block; margin-bottom: 4px; }
.ct-address-row address { font-style: normal; font-size: .87rem; color: var(--color-dark); line-height: 1.6; }
.ct-w3w { color: var(--color-primary); font-size: .87rem; font-weight: 600; }
.ct-address-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--color-border); }
.ct-prefer-talk { display: flex; align-items: flex-start; gap: 14px; background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 18px 20px; }
.ct-prefer-talk__icon { width: 40px; height: 40px; background: rgba(244,121,32,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-prefer-talk__icon svg { width: 18px; fill: var(--color-primary); }
.ct-prefer-talk strong { font-size: .88rem; font-weight: 700; display: block; margin-bottom: 4px; }
.ct-prefer-talk p { font-size: .82rem; color: var(--color-gray); line-height: 1.5; margin: 0; }
.ct-form-box { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.ct-form-box h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.ct-map { position: relative; }
.ct-map__open-btn { position: absolute; top: 14px; left: 14px; z-index: 2; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 7px 14px; font-size: .8rem; font-weight: 600; color: var(--color-dark); text-decoration: none; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s; }
.ct-map__open-btn:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.ct-map__placeholder { padding: 60px 20px; text-align: center; background: var(--color-bg-light); border-top: 1px solid var(--color-border); }

/* ==========================================================================
   CONTACT FORM (shared across FAQ + Contact)
========================================================================== */
.sh-form__fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.sh-form__row { display: flex; gap: 12px; }
.sh-form__row--2 > * { flex: 1; }
.sh-form__group { display: flex; flex-direction: column; gap: 5px; }
.sh-form__group label { font-size: .78rem; font-weight: 600; color: var(--color-dark-3); }
.sh-form__group label span { color: var(--color-primary); }
.sh-form__group input,
.sh-form__group select,
.sh-form__group textarea {
  padding: 10px 12px; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  font-size: .9rem; font-family: var(--font-body); outline: none; width: 100%;
  transition: border-color .2s, box-shadow .2s;
  background: var(--color-white);
}
.sh-form__group input:focus,
.sh-form__group select:focus,
.sh-form__group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(244,121,32,.1);
}
.sh-form__group textarea { resize: vertical; min-height: 120px; }
.sh-form__submit { width: 100%; justify-content: center; margin-top: 4px; }
.sh-form__legal { font-size: .75rem; color: var(--color-gray-light); margin-top: 8px; text-align: center; }
.sh-form__status { min-height: 20px; margin-top: 8px; font-size: .85rem; font-weight: 600; text-align: center; }
.sh-form__status.success { color: #2e7d32; }
.sh-form__status.error   { color: #c62828; }
.sh-form__submit[disabled] { opacity: .65; cursor: wait; }

/* ==========================================================================
   RESPONSIVE — all new pages
========================================================================== */
@media (max-width: 1024px) {
  .au-principles__grid,
  .au-services__grid,
  .svc-cards__grid { grid-template-columns: repeat(2,1fr); }
  .au-stats-grid { grid-template-columns: repeat(2,1fr); }
  .ct-quick__grid { grid-template-columns: repeat(2,1fr); }
  .proj-sectors__grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .au-story__grid, .au-why__grid, .ct-main__grid,
  .faq-ask__grid, .proj-partner__grid { grid-template-columns: 1fr; }
  .au-timeline__wrap { grid-template-columns: 1fr; }
  .au-timeline__years { flex-direction: row; border-right: none; border-bottom: 2px solid var(--color-border); overflow-x: auto; }
  .au-timeline__year-btn { border-right: none; border-bottom: 3px solid transparent; margin-right: 0; margin-bottom: -2px; padding: 10px 16px; }
  .au-timeline__year-btn.active { border-bottom-color: var(--color-primary); }
  .au-timeline__panels { padding-left: 0; padding-top: 24px; }
  .faq-ask__form { order: -1; }
  .proj-testi__item { grid-template-columns: 1fr; }
  .proj-testi__img { min-height: 220px; }
}
@media (max-width: 640px) {
  .au-principles__grid, .svc-cards__grid,
  .au-services__grid, .ct-quick__grid,
  .proj-sectors__grid, .faq-quick-contact { grid-template-columns: 1fr; }
  .sh-form__row--2 { flex-direction: column; }
  .au-stats-grid { grid-template-columns: repeat(2,1fr); }
}
