/* =============================================
   JIR CONSTRUCTION LIMERICK — PREMIUM STYLES
   ============================================= */

:root {
  --red: #c8102e;
  --red-dark: #a30d25;
  --red-light: #e31937;
  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --mid: #3a3a3a;
  --grey: #6b7280;
  --light-grey: #f4f4f5;
  --white: #ffffff;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 4px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Oswald', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,16,46,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* =============================================
   SECTION COMMON
   ============================================= */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-header p {
  color: var(--grey);
  font-size: 1.05rem;
}
.section-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 10px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}
.topbar__inner i { color: var(--red); margin-right: 5px; }
.topbar__inner a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.topbar__inner a:hover { color: var(--white); }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 74px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo__jir {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo__text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logo__text small {
  display: block;
  color: var(--grey);
  font-weight: 500;
}
.logo--light .logo__text { color: var(--white); }
.logo--light .logo__text small { color: rgba(255,255,255,0.6); }

/* Nav */
.nav { margin-left: auto; }
.nav__list {
  display: flex;
  gap: 4px;
}
.nav__link {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav__link:hover,
.nav__link.active {
  color: var(--red);
  background: rgba(200,16,46,0.06);
}
.header__cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.7) 50%,
    rgba(10,10,10,0.4) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 24px;
}
.hero__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero__title span { color: var(--red); }

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero__trust i { color: var(--red); }

.hero__scroll-btn {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  animation: bounce 2s infinite;
  transition: var(--transition);
}
.hero__scroll-btn:hover { border-color: var(--red); color: var(--red); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* =============================================
   STATS
   ============================================= */
.stats {
  background: var(--dark);
  padding: 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--red);
  opacity: 0;
  transition: opacity var(--transition);
}
.stat:hover::after { opacity: 1; }

.stat__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat__plus {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
}
.stat p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 8px;
}

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--light-grey); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__icon {
  position: absolute;
  top: 16px; right: 16px;
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(200,16,46,0.4);
}
.service-card__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img { transform: scale(1.05); }
.service-card__body {
  padding: 24px;
}
.service-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.service-card__body p {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.88rem;
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 12px; }

/* Services — additional chips */
.services__more {
  margin-top: 56px;
  text-align: center;
}
.services__more-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 18px;
}
.services__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.services__chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}
.services__chips span i { color: var(--red); font-size: 0.75rem; }
.services__chips span:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(200,16,46,0.04);
}

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--white); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__images {
  position: relative;
}
.about__img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about__img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(200,16,46,0.4);
  min-width: 140px;
}
.about__img-badge i {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}
.about__img-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.about__img-badge span {
  font-size: 0.78rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about__content { }
.about__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about__content p {
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.about__list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--dark);
}
.about__list i { color: var(--red); font-size: 1rem; flex-shrink: 0; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, var(--red-light) 100%);
  padding: 60px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery { background: var(--light-grey); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,16,46,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox__inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  text-align: center;
}
.lightbox__inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox__caption {
  color: rgba(255,255,255,0.8);
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 500;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
  cursor: pointer;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--red); border-color: var(--red); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }

/* =============================================
   AREAS
   ============================================= */
.areas { background: var(--white); }
.areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-grey);
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}
.area-chip i { color: var(--red); }
.area-chip:hover {
  border-color: var(--red);
  background: rgba(200,16,46,0.05);
  transform: translateY(-2px);
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--dark); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__info .section-tag { }
.contact__info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.contact__info > p {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  transition: var(--transition);
}
.contact__detail:hover { color: var(--red); }
.contact__detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.contact__detail:hover .contact__detail-icon { background: var(--red); color: var(--white); }
.contact__detail strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}
.contact__detail span {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Contact Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select optgroup { font-weight: 700; color: var(--dark); }
.form-group select option { font-weight: 400; color: var(--dark); }
.form__note {
  text-align: center;
  color: var(--grey);
  font-size: 0.82rem;
  margin-top: 12px;
}
.form__success {
  display: none;
  text-align: center;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 16px;
  padding: 16px;
  background: #f0fdf4;
  border-radius: var(--radius-sm);
  border: 1px solid #bbf7d0;
}
.form__success i { margin-right: 6px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer__social a:hover { background: var(--red); color: var(--white); }

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--red); }

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.6);
}
.footer__contact i { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer__contact a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__contact a:hover { color: var(--red); }

.footer__bottom {
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer__bottom a {
  color: var(--red);
  font-weight: 600;
  transition: opacity var(--transition);
}
.footer__bottom a:hover { opacity: 0.8; }

/* =============================================
   FLOATING CALL BUTTON
   ============================================= */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 60px;
  height: 60px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 30px rgba(200,16,46,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  display: none;
}
.float-call:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(200,16,46,0.6);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about__inner { gap: 48px; }
  .contact__inner { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Topbar */
  .topbar__inner { justify-content: center; gap: 16px; }
  .topbar__inner span:first-child { display: none; }

  /* Header */
  .header__inner { position: relative; }
  .nav {
    position: fixed;
    inset: 74px 0 0 0;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 850;
    box-shadow: 4px 0 30px rgba(0,0,0,0.1);
    margin-left: 0;
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { font-size: 1.1rem; padding: 14px 18px; }

  .header__cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__content { padding: 60px 24px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 16px; }

  /* Stats */
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 64px; }
  .about__img-main img { height: 340px; }
  .about__img-badge { bottom: -20px; right: 0; }

  /* CTA Banner */
  .cta-banner__inner { flex-direction: column; text-align: center; }

  /* Gallery */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 20px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand p { max-width: 100%; }

  /* Float button */
  .float-call { display: flex; }

  /* Lightbox arrows */
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: 1fr; }
  .hero__trust span:nth-child(3),
  .hero__trust span:nth-child(4) { display: none; }
}
