/* ============================================
   Fimoria - Main Stylesheet
   Commercial Kitchen Equipment Service
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
  --navy: #0f2240;
  --navy-deep: #091828;
  --navy-mid: #1a3459;
  --steel: #2e4a6a;
  --accent: #2d7dd2;
  --accent-light: #4a9ae8;
  --accent-pale: #e8f2fc;
  --grey-dark: #3a3f4a;
  --grey-mid: #6b7280;
  --grey-light: #9ca3af;
  --grey-pale: #f1f5f9;
  --white: #ffffff;
  --off-white: #f8fafc;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(15, 34, 64, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 34, 64, 0.12);
  --shadow-lg: 0 12px 40px rgba(15, 34, 64, 0.16);
  --radius: 6px;
  --radius-lg: 12px;
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'Fraunces', serif;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--grey-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--accent-light);
}

ul { list-style: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 500;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
  color: var(--grey-dark);
}

.lead {
  font-size: 1.125rem;
  color: var(--grey-mid);
  line-height: 1.75;
}

.text-accent { color: var(--accent); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--grey-mid); }

/* ============ LAYOUT ============ */
.container-xl {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 0.3rem 0.85rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--grey-mid);
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.925rem;
  border: 2px solid var(--accent);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.925rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============ HEADER / NAV ============ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1rem 0;
}

#site-header.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-text span {
  color: var(--accent-light);
}

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ============ HERO ============ */
#hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, var(--navy-deep) 0%, var(--steel) 100%);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../../images/article3.webp?w=1800&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(45,125,210,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,125,210,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45,125,210,0.2);
  border: 1px solid rgba(45,125,210,0.4);
  color: var(--accent-light);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
}

.hero-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-badge-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hbf-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hbf-label {
  font-size: 0.75rem;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.hbf-value {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}

/* ============ SERVICE SELECTOR ============ */
#service-selector {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.selector-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.selector-tabs {
  display: flex;
  background: var(--grey-pale);
  border-bottom: 1px solid var(--border);
}

.selector-tab {
  flex: 1;
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--grey-mid);
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}

.selector-tab.active,
.selector-tab:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: var(--white);
}

.selector-body {
  padding: 2.5rem;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.equipment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  background: var(--white);
}

.equipment-card:hover,
.equipment-card.selected {
  border-color: var(--accent);
  background: var(--accent-pale);
}

.equipment-card i {
  font-size: 1.6rem;
  color: var(--grey-mid);
  transition: color var(--transition);
}

.equipment-card.selected i,
.equipment-card:hover i {
  color: var(--accent);
}

.equipment-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-dark);
}

.selector-result {
  display: none;
  background: var(--accent-pale);
  border: 1px solid rgba(45,125,210,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.selector-result.visible {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.selector-result h4 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-tag {
  background: var(--white);
  border: 1px solid rgba(45,125,210,0.3);
  color: var(--accent);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============ HOW WE WORK ============ */
#how-we-work {
  background: var(--white);
}

.timeline {
  position: relative;
  padding: 1rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-spacer {
  grid-column: 1;
  grid-row: 1;
}

.timeline-content {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  margin: 0;
}

.timeline-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline-dot-inner {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-spacer {
  /* spacer column */
}

/* ============ TEAM SECTION ============ */
#team {
  background: var(--grey-pale);
}

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.team-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-info {
  padding: 1.4rem;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--grey-mid);
  margin: 0;
}

/* ============ TESTIMONIALS ============ */
#testimonials {
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}

#testimonials .section-label {
  background: rgba(45,125,210,0.2);
  color: var(--accent-light);
}

#testimonials h2 {
  color: var(--white);
}

#testimonials .section-intro {
  color: rgba(255,255,255,0.6);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  color: #f59e0b;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--steel);
}

.testimonial-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-company {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ============ EQUIPMENT GALLERY ============ */
#equipment-gallery {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,24,40,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-caption {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ============ MAINTENANCE SECTION ============ */
#maintenance-awareness {
  background: var(--white);
}

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

.maintenance-image {
  position: relative;
}

.maintenance-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.maintenance-badge {
  position: absolute;
  top: 1.5rem;
  right: -2rem;
  background: var(--accent);
  color: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 110px;
}

.maintenance-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  display: block;
}

.maintenance-badge .lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.maintenance-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.maintenance-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.mp-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

.mp-content h4 {
  font-size: 0.975rem;
  margin-bottom: 0.25rem;
}

.mp-content p {
  font-size: 0.875rem;
  color: var(--grey-mid);
  margin: 0;
}

/* ============ FAQ ============ */
#faq {
  background: var(--grey-pale);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 0.75rem;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.75;
}

.faq-answer.open {
  display: block;
}

/* ============ CONTACT CTA STRIP ============ */
#contact-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

#contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============ COUNTERS ============ */
.counters-strip {
  background: var(--navy);
  padding: 50px 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.counter-item {
  padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.counter-item:last-child {
  border-right: none;
}

.counter-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-num .counter-suffix {
  color: var(--accent-light);
}

.counter-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ FOOTER ============ */
#site-footer {
  background: var(--navy-deep);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item i {
  color: var(--accent-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-hour-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.footer-hour-item .day {
  color: rgba(255,255,255,0.4);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* ============ PAGE HEADER ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--steel) 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  font-size: 1.05rem;
  margin: 0;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255,255,255,0.3);
}

.breadcrumb-current {
  color: rgba(255,255,255,0.75);
}

/* ============ SERVICE CARDS ============ */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

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

.service-block.reverse {
  direction: rtl;
}

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

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

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

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

.service-label {
  display: inline-block;
  background: var(--accent-pale);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.service-info h2 {
  margin-bottom: 1rem;
}

.service-info p {
  font-size: 0.95rem;
  color: var(--grey-mid);
}

.service-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.service-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.service-step-num {
  width: 26px;
  height: 26px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.service-step-text {
  font-size: 0.9rem;
  color: var(--grey-dark);
}

.compliance-note {
  background: var(--grey-pale);
  border-left: 3px solid var(--accent);
  padding: 0.85rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.825rem;
  color: var(--grey-mid);
  margin-top: 1.5rem;
}

.compliance-note strong {
  color: var(--navy);
}

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.775rem;
  color: var(--grey-light);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card h3 a {
  color: var(--navy);
}

.blog-card h3 a:hover {
  color: var(--accent);
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--grey-mid);
  margin-bottom: 1.25rem;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============ ARTICLE PAGE ============ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

.article-content {
  max-width: 720px;
}

.article-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.article-content h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.2rem;
}

.article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey-dark);
}

.article-content img {
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.article-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.article-content ul li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--grey-dark);
}

.article-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-widget {
  background: var(--grey-pale);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}

.sidebar-links a {
  display: block;
  font-size: 0.875rem;
  color: var(--grey-dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

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

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cd-icon {
  width: 46px;
  height: 46px;
  background: var(--accent-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.cd-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-light);
  margin-bottom: 0.3rem;
}

.cd-value {
  font-size: 0.95rem;
  color: var(--grey-dark);
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--grey-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

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

.captcha-box {
  background: var(--grey-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.captcha-question {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  flex-shrink: 0;
}

.captcha-input {
  flex: 1;
  padding: 0.5rem 0.75rem !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  font-size: 0.9rem !important;
}

.form-error {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 0.35rem;
  display: none;
}

.form-error.visible { display: block; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  margin-top: 4rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.hour-row .day {
  color: var(--grey-mid);
}

.hour-row .time {
  font-weight: 600;
  color: var(--navy);
}

/* ============ THANK YOU PAGE ============ */
.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #16a34a;
  margin: 0 auto 1.5rem;
}

/* ============ LEGAL PAGES ============ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.9rem;
  color: var(--grey-mid);
  margin-bottom: 0.4rem;
}

.legal-effective {
  background: var(--accent-pale);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 600;
}

/* ============ ABOUT PAGE ============ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

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

.about-timeline {
  position: relative;
  padding: 2rem 0;
}

.at-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.at-year {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  padding-top: 0.1rem;
  min-width: 48px;
}

.at-content {
  border-left: 2px solid var(--border);
  padding-left: 1.5rem;
  padding-bottom: 2rem;
}

.at-content h4 {
  margin-bottom: 0.4rem;
}

.at-content p {
  font-size: 0.875rem;
  color: var(--grey-mid);
  margin: 0;
}

/* ============ COOKIE BANNER ============ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  padding: 1.25rem 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid rgba(255,255,255,0.1);
}

#cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.875rem;
  flex: 1;
}

.cookie-text a {
  color: var(--accent-light);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-cookie-accept {
  background: var(--accent);
  color: var(--white);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-cookie-accept:hover {
  background: var(--accent-light);
}

.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-cookie-decline:hover {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deep);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
}

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

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.d-flex { display: flex; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .maintenance-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 30px; }
  .timeline-item { grid-template-columns: 60px 1fr; }
  .timeline-dot { justify-content: flex-start; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
  .timeline-item:nth-child(even) .timeline-spacer { display: none; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 120px 0 60px; }
  .hero-visual { display: none; }
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; }
  .maintenance-badge { right: 1rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .team-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
}




.logo img{
  max-width: 200px;
  object-fit: contain;
}

