/* =====================================================================
   ROYAL INVISIBLE GRILL SERVICES — style.css
   ---------------------------------------------------------------------
   EDIT COLOURS HERE. All colours are driven by these CSS variables,
   so you can re-theme the whole site by changing a few values below.
   ===================================================================== */
:root {
  /* --- Brand palette (change these) --- */
  --primary: #1b3c8c;
  /* royal blue */
  --primary-dark: #132a63;
  --primary-soft: #eaf0fb;
  --accent: #e0a82e;
  /* gold */
  --accent-dark: #c8901a;

  /* --- Neutrals --- */
  --ink: #101828;
  /* headings */
  --body: #4b5563;
  /* paragraph text */
  --muted: #8a93a3;
  --white: #ffffff;
  --light: #f5f7fb;
  /* soft section background */
  --light-2: #eef2f9;
  --border: #e5e9f0;
  --dark-bg: #0f1b34;
  /* dark sections */

  /* --- System --- */
  --shadow-sm: 0 6px 18px rgba(16, 24, 40, .06);
  --shadow: 0 18px 40px rgba(16, 24, 40, .10);
  --shadow-lg: 0 30px 60px rgba(16, 24, 40, .16);
  --radius: 16px;
  --radius-lg: 22px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --maxw: 1180px;
}

/* =========================== BASE =========================== */
* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: clip
}

/* smooth anchor scrolling */
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: clip;
  /* clip (not hidden) keeps sticky nav working */
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  margin: 0
}

p {
  margin: 0
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .25s ease
}

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

.container {
  max-width: var(--maxw)
}

/* section rhythm */
.section-pad {
  padding: 96px 0
}

.section-head {
  max-width: 680px;
  margin: 0 auto 54px
}

.txt-accent {
  color: var(--accent)
}

/* eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent-dark);
  position: relative;
  padding-bottom: 10px;
  margin: 0 0 16px;
}

.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56%;
  height: 2px;
  background: var(--accent)
}

.eyebrow--center {
  display: block
}

.eyebrow--center::after {
  left: 50%;
  transform: translateX(-50%)
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px
}

.section-lead {
  color: var(--body);
  font-size: 1.03rem
}

.lead-text {
  font-size: 1.03rem;
  margin-bottom: 22px
}

/* =========================== BUTTONS =========================== */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 26px;
  transition: all .28s ease
}

.btn-lg {
  padding: 14px 32px
}

.btn i {
  vertical-align: -2px
}

.btn-accent {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #26200c
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #26200c;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(224, 168, 46, .4)
}

.btn-primary {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(27, 60, 140, .35)
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, .7);
  color: #fff
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px)
}

.btn-light {
  background: #fff;
  border: 1px solid #fff;
  color: var(--primary)
}

.btn-light:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px)
}

/* =========================== NAVBAR =========================== */
.site-nav {
  padding: 18px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease
}

.site-nav.scrolled {
  padding: 10px 0;
  background: #fff;
  box-shadow: var(--shadow-sm)
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  color: #26200c;
  font-size: 1.15rem
}

.brand-text strong {
  color: var(--accent)
}

.site-nav.scrolled .navbar-brand,
.site-nav.scrolled .nav-link {
  color: var(--ink)
}

.site-nav.scrolled .brand-text strong {
  color: var(--accent-dark)
}

.nav-link {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .96rem;
  margin: 0 4px;
  position: relative
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1)
}

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

.site-nav.scrolled .nav-link:hover,
.site-nav.scrolled .nav-link.active {
  color: var(--accent-dark)
}

.navbar-toggler {
  border: none;
  color: #fff;
  font-size: 1.6rem;
  padding: 0
}

.site-nav.scrolled .navbar-toggler {
  color: var(--ink)
}

.navbar-toggler:focus {
  box-shadow: none
}

@media (max-width:991px) {
  .navbar-collapse {
    background: #fff;
    margin-top: 14px;
    padding: 16px;
    border-radius: 14px;
    box-shadow: var(--shadow)
  }

  .nav-link,
  .site-nav .nav-link {
    color: var(--ink) !important
  }

  .nav-link::after {
    display: none
  }
}

/* =========================== HERO =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #12203f;
  opacity: 0;
  transition: opacity 1.2s ease, transform 8s ease;
  transform: scale(1.05)
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1)
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.92) 0%, rgba(13, 10, 44, 0.459) 45%, rgba(0, 0, 0, 0.021) 100%)
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 7px 16px;
  border-radius: 40px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 22px
}

.hero-eyebrow i {
  color: var(--accent)
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.5px
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 640px;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 30px
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 0;
  margin: 0
}

.hero-badges li {
  font-weight: 500;
  font-size: .92rem
}

.hero-badges i {
  color: var(--accent);
  margin-right: 6px
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .7);
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0
}

.hero-dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  width: 30px;
  border-radius: 8px
}

/* floating decorative icons */
.floaty {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--accent);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(2px);
  z-index: 2;
  animation: floatY 5s ease-in-out infinite
}

.floaty--1 {
  top: 22%;
  right: 9%;
  width: 64px;
  height: 64px;
  font-size: 1.7rem
}

.floaty--2 {
  bottom: 20%;
  right: 22%;
  width: 52px;
  height: 52px;
  font-size: 1.35rem;
  animation-delay: 1.5s
}

.floaty--3 {
  top: -18px;
  left: -18px;
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow)
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

/* =========================== MARQUEE =========================== */
.marquee {
  background: var(--primary);
  overflow: hidden;
  padding: 16px 0
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform
}

.marquee-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: #fff;
  padding-right: 1.4rem;
  flex: 0 0 auto;
  letter-spacing: .02em
}

.marquee-item i {
  color: var(--accent);
  font-size: .7rem;
  vertical-align: middle;
  padding: 0 .3rem
}

/* =========================== ABOUT =========================== */
.about {
  background: var(--white)
}

.about-media {
  position: relative;
  padding: 20px 0 50px 44px;
  max-width: 520px
}

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--light-2)
}

.about-img--back {
  width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
}

.about-img--front {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 6px solid #fff
}

.about-badge {
  position: absolute;
  top: 36px;
  right: 6px;
  background: var(--accent);
  color: #26200c;
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 16px 30px rgba(224, 168, 46, .4)
}

.about-badge__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1
}

.about-badge__num span {
  font-size: 1.1rem
}

.about-badge__label {
  font-size: .72rem;
  font-weight: 600
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 34px;
  font-weight: 500;
  color: var(--ink)
}

.check-list i {
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--primary);
  font-size: 1.1rem
}

/* =========================== STATS =========================== */
.stats {
  background: var(--dark-bg);
  padding: 60px 0;
  color: #fff;
  position: relative
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1
}

.stat__label {
  display: block;
  margin-top: 8px;
  font-size: .92rem;
  color: rgba(255, 255, 255, .78);
  font-weight: 500
}

/* =========================== SERVICES (image top -> name -> content) =========================== */
.services {
  background: var(--light)
}

.svc-card {
  height: 100%;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg)
}

.svc-card__media {
  position: relative;
  aspect-ratio: 14/10;
  overflow: hidden;
  background: var(--light-2)
}

.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.svc-card:hover .svc-card__media img {
  transform: scale(1.08)
}

/* floating accent icon overlapping image + body */
.svc-card__icon {
  position: absolute;
  left: 18px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #26200c;
  font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease
}

.svc-card:hover .svc-card__icon {
  transform: rotate(-8deg) scale(1.06)
}

.svc-card__body {
  padding: 36px 24px 26px
}

.svc-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px
}

.svc-card__text {
  font-size: .94rem;
  margin-bottom: 14px
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-dark)
}

.svc-card__link:hover {
  color: var(--primary);
  gap: 11px
}

/* =========================== WHY (BLINK WAVE) =========================== */
.why {
  background: var(--white)
}

.wcard {
  height: 100%;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: transform .35s ease
}

.wcard:hover {
  transform: translateY(-8px)
}

.wcard__icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.7rem;
  margin-bottom: 18px;
  transition: background .4s ease, color .4s ease
}

.wcard__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px
}

.wcard__text {
  font-size: .94rem
}

/* left -> right blink wave: each card lights up in sequence, then loops.
   staggered animation-delay creates the moving wave from card 1 to card 4 */
.blink-wave [class^="col-"] .wcard {
  animation: blinkWave 3.2s ease-in-out infinite
}

.blink-wave [class^="col-"]:nth-child(1) .wcard {
  animation-delay: 0s
}

.blink-wave [class^="col-"]:nth-child(2) .wcard {
  animation-delay: .4s
}

.blink-wave [class^="col-"]:nth-child(3) .wcard {
  animation-delay: .8s
}

.blink-wave [class^="col-"]:nth-child(4) .wcard {
  animation-delay: 1.2s
}

@keyframes blinkWave {

  0%,
  45%,
  100% {
    border-color: var(--border);
    box-shadow: none
  }

  15%,
  30% {
    border-color: var(--accent);
    box-shadow: 0 14px 30px rgba(224, 168, 46, .4)
  }
}

/* icon tint follows the same wave timing */
.blink-wave [class^="col-"] .wcard__icon {
  animation: iconWave 3.2s ease-in-out infinite
}

.blink-wave [class^="col-"]:nth-child(1) .wcard__icon {
  animation-delay: 0s
}

.blink-wave [class^="col-"]:nth-child(2) .wcard__icon {
  animation-delay: .4s
}

.blink-wave [class^="col-"]:nth-child(3) .wcard__icon {
  animation-delay: .8s
}

.blink-wave [class^="col-"]:nth-child(4) .wcard__icon {
  animation-delay: 1.2s
}

@keyframes iconWave {

  0%,
  45%,
  100% {
    background: var(--primary-soft);
    color: var(--primary)
  }

  15%,
  30% {
    background: var(--accent);
    color: #26200c
  }
}

/* =========================== PROCESS TIMELINE =========================== */
.process {
  background: var(--light);
  position: relative
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative
}

.timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 10px, transparent 10px 20px);
  z-index: 0
}

.tstep {
  position: relative;
  text-align: center;
  padding: 0 8px;
  z-index: 1
}

.tstep__num {
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, background .35s ease, color .35s ease
}

.tstep:hover .tstep__num {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-6px)
}

.tstep__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px
}

.tstep__text {
  font-size: .92rem
}

/* =========================== GALLERY (4 in a row + lightbox) =========================== */
.gallery {
  background: var(--white)
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

/* desktop: 4 images, one row */
.gitem {
  position: relative;
  border: 0;
  padding: 0;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: var(--light-2)
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.gitem:hover img {
  transform: scale(1.08)
}

.gitem__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 27, 52, .5);
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity .35s ease
}

.gitem:hover .gitem__overlay {
  opacity: 1
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(9, 14, 28, .93);
  padding: 30px
}

.lightbox.open {
  display: flex
}

.lightbox__img {
  max-width: 90%;
  max-height: 82vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  animation: lbIn .3s ease
}

@keyframes lbIn {
  from {
    opacity: 0;
    transform: scale(.96)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, color .25s ease
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background .25s ease, color .25s ease
}

.lightbox__prev {
  left: 20px
}

.lightbox__next {
  right: 20px
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--accent);
  color: #26200c
}

.lightbox__cap {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem
}

/* =========================================================
   VIDEO GALLERY
   ========================================================= */

.video-gallery{
    background:#fff;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
}

.video-item{
    overflow:hidden;
    border-radius:18px;
    background:#000;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.35s;
}

.video-item:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.video-item video{
    width:100%;
    aspect-ratio:9/8;
    display:block;
    background:#000;
}

/* Fullscreen me original video ratio maintain rahe */
.video-item video:fullscreen,
.video-item video:-webkit-full-screen{
    width:100%;
    height:100%;
    object-fit:contain;
    background:#000;
}

/* Tablet */

@media(max-width:991px){

.video-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:576px){

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

}

/* =========================== TESTIMONIALS =========================== */
.testimonials {
  background: var(--primary-soft)
}

.tslider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 44px 64px;
  box-shadow: var(--shadow);
  text-align: center;
  min-height: 290px
}

.tslide {
  display: none;
  animation: fadeIn .6s ease
}

.tslide.is-active {
  display: block
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.tslide__quote {
  font-size: 2.4rem;
  color: var(--accent);
  opacity: .5
}

.tslide__text {
  font-size: 1.12rem;
  color: var(--ink);
  margin: 8px 0 18px;
  font-weight: 500
}

.tslide__stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 14px
}

.tslide__name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink)
}

.tslide__name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .86rem;
  color: var(--muted)
}

.tslider-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px
}

.tdot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all .3s ease;
  padding: 0
}

.tdot.is-active {
  background: var(--accent);
  width: 26px;
  border-radius: 6px
}

/* =========================== CTA STRIP =========================== */
.cta-strip {
  position: relative;
  background: var(--primary);
  color: #fff;
  padding: 56px 0;
  overflow: hidden
}

.cta-strip__accent {
  position: absolute;
  top: 0;
  right: -6%;
  width: 26%;
  height: 100%;
  background: var(--primary-dark);
  transform: skewX(-18deg);
  opacity: .6
}

.cta-strip__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  position: relative
}

.cta-strip__sub {
  position: relative;
  color: rgba(255, 255, 255, .85);
  margin-top: 6px
}

/* blinking border on the CTA button (colour + shadow blink) */
.cta-blink {
  position: relative;
  animation: ctaBlink 1.8s ease-in-out infinite
}

@keyframes ctaBlink {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(224, 168, 46, .0);
    border-color: #fff
  }

  50% {
    box-shadow: 0 0 0 6px rgba(224, 168, 46, .35);
    border-color: var(--accent)
  }
}

/* =========================== CONTACT =========================== */
.contact {
  background: var(--light)
}

.contact-info {
  background: var(--dark-bg);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  height: 100%
}

.contact-info__title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px
}

.contact-info__intro {
  color: rgba(255, 255, 255, .78);
  margin-bottom: 26px
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px
}

.contact-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.ci-icon {
  flex: 0 0 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: #26200c;
  font-size: 1.15rem
}

.ci-label {
  display: block;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 2px
}

.contact-list a {
  color: #fff
}

.contact-list a:hover {
  color: var(--accent)
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 120px;
  border-radius: 14px;
  border: 2px dashed rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .6);
  font-size: .9rem
}

.map-placeholder i {
  color: var(--accent);
  font-size: 1.3rem
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  height: 100%
}

.form-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 6px
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .95rem
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 60, 140, .12)
}

.form-note {
  margin-top: 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
  min-height: 1.2em
}

/* =========================== FOOTER =========================== */
.site-footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, .72);
  padding: 64px 0 24px
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 16px
}

.footer-about {
  font-size: .94rem;
  max-width: 340px;
  margin-bottom: 20px
}

.social {
  display: flex;
  gap: 10px
}

.social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1.05rem;
  transition: all .3s ease
}

.social a:hover {
  background: var(--accent);
  color: #26200c;
  transform: translateY(-4px)
}

.footer-head {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 18px
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-links li {
  margin-bottom: 10px
}

.footer-links a {
  font-size: .94rem
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .92rem
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  font-size: .88rem
}

/* =========================== FLOATING BUTTONS =========================== */
.fab {
  position: fixed;
  bottom: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  z-index: 60;
  box-shadow: var(--shadow)
}

.fab--wa {
  left: 22px;
  background: #25d366
}

.fab--call {
  right: 22px;
  background: var(--accent);
  color: #26200c
}

.fab--wa {
  animation: pulseWa 2s infinite
}

.fab--call {
  animation: pulseCall 2s infinite
}

@keyframes pulseWa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

@keyframes pulseCall {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 168, 46, .5)
  }

  70% {
    box-shadow: 0 0 0 16px rgba(224, 168, 46, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(224, 168, 46, 0)
  }
}

.fab:hover {
  transform: scale(1.1)
}

.scroll-top {
  position: fixed;
  bottom: 94px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 1.2rem;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  box-shadow: var(--shadow)
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: none
}

.scroll-top:hover {
  background: var(--primary-dark)
}

/* =========================== SCROLL REVEAL =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

/* =========================== RESPONSIVE =========================== */
@media (max-width:991px) {
  .section-pad {
    padding: 70px 0
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px
  }

  .timeline::before {
    display: none
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  /* tablet: 2 per row */
}

@media (max-width:575px) {
  .section-pad {
    padding: 56px 0
  }

  .hero-inner {
    padding: 110px 0 80px
  }

  .hero-cta .btn {
    width: 100%
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  /* mobile: 2 images per row */
  .about-media {
    padding-left: 0px;
    margin: 0 auto
  }

  .tslider {
    padding: 40px 22px 60px
  }

  .floaty--1,
  .floaty--2 {
    display: none
  }

  .fab {
    width: 50px;
    height: 50px;
    font-size: 1.3rem
  }

  .lightbox__nav {
    width: 44px;
    height: 44px
  }
}