@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Open+Sans:wght@400;600&display=swap");

* {
    font-family: "Kantumruy Pro", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box;
}


:root {
    --primary: #0d1b2a; /* Navy Blue */
    --accent: #d4af37; /* Soft Gold */
    --light: #ffffff;
    --gray: #f7f7f7;
    --dark: #222222;
    --darker-accent: #cca935;
    --tp: #00b67a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gray);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

/* NAV */

nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background-color: var(--light);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 3rem;
}

.logo h3 {
    margin-left: 1rem;
    color: #111;
    text-decoration: none;
    font-size: 1.2rem;
    cursor: default;
    font-weight: 500;
    line-height: 1rem;
}

.logo h3 span {
    font-size: 0.9rem;
    color: #7e671c;
    font-weight: 400;
}

.active {
    border-bottom: 1px solid var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 0.25rem 1rem;
    margin: 1rem;
    color: #111;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all ease-in-out 100ms;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links .nav-cta-button {
    padding: 1rem 1.5rem;
    margin-left: 1.2rem;
    border-radius: 1rem;
}

.nav-links .nav-cta-button:hover {
    color: #7e671c;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 34px;
}

.hamburger .bar {
    flex-basis: 100%;
    height: 4px;
    background-color: #111;
    margin: 3px;
    border-radius: 5rem;
}

/* DISPLAY HAMBURGER MENU */
@media (max-width: 1200px) {
    nav {
        flex-wrap: wrap;
    }

    .hamburger {
        display: flex;
        flex-wrap: wrap;
    }

    .logo {
        height: 80px;
    }

    .nav-links {
        display: none;
        flex-basis: 100%;
        flex-wrap: wrap;
    }

    .nav-links li {
        flex-basis: 100%;
    }

    .nav-links a {
        text-align: center;
        font-size: 1.2rem;
        padding: 1.5rem 1rem;
    }

    .nav-links .nav-cta-button {
        padding: 1rem 1.5rem;
        margin-left: 0;
        border: none;
        border-radius: 0;
        border-bottom: 20px;
    }

    .motto {
        display: none;
    }
}

/* DISAPPEAR HAMBURGER MENU */
@media (min-width: 1200px) {
    nav {
        flex-wrap: flex;
    }

    .hamburger {
        display: none;
    }

    .logo {
        height: 80px;
    }

    .nav-links {
        display: flex;
        align-items: center;
        list-style: none;
    }

    .nav-links a {
        display: block;
        padding: 0.25rem 1rem;
        margin: 1rem;
        color: #111;
        text-decoration: none;
        font-size: 1.1rem;
        text-transform: uppercase;
        transition: all ease-in-out 100ms;
    }

    .nav-links li {
        flex-basis: 100%;
    }

    .nav-links a:hover {
        color: var(--accent);
    }

    .nav-links .nav-cta-button {
        padding: 1rem 1.5rem;
        margin-left: 1.2rem;
        border: 2px solid #39ffde;
        border-radius: 1rem;
    }

    .nav-links .nav-cta-button:hover {
        background-color: #39ffde;
    }
}

/* Dropdown menu */
.dropdown {
  position: relative;
}

/* Dropdown link alignment */
.dropdown > a {
  display: flex;
  align-items: center;
  justify-content: center;   /* centers Services text + arrow */
  gap: 0.25rem;
}

/* Arrow rotation */
.dropdown > a i {
  transition: transform 0.3s ease;
}

/* Rotate arrow when open (all viewports) */
.dropdown.open > a i {
  transform: rotate(180deg);
}


.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--light);
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 0 0 .5rem .5rem;
  z-index: 1000;
  flex-direction: column;
}

.dropdown-menu li {
  width: 100%;
  list-style-type: none;
}

.dropdown-menu a {
  padding: 0.75rem 1rem;
  margin: 0;
  font-size: 0.95rem;
  text-transform: none;
  color: var(--dark);
  text-decoration: none;
  list-style-type: none;
}

.dropdown-menu a:hover {
  color: var(--primary);
  font-weight: 500;
}

/* Show on hover only on desktop */
@media (min-width: 1200px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  .dropdown:hover > a i {
    transform: rotate(180deg);
  }
}

.dropdown.open .dropdown-menu {
  display: flex;
}



/* Mobile dropdown menu */
@media (max-width: 1200px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
  }

  .dropdown > a {
    justify-content: center; /* keep Services centered */
    width: 100%;
  }

  .dropdown-menu a {
    display: block;
    text-align: center;
    padding: 1rem;
  }
}

/* Hero */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75),
        /* darker at the top */ rgba(0, 0, 0, 0.6)
            /* still dark at the bottom */
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #f5f5f5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: left;
}

/* Hero container split */
.about-hero .hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 5rem; /* wider spacing between text & image */
  padding: 4rem 2rem; /* more breathing room */
}

.about-hero .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-hero .hero-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}



/* Hero image */
.about-hero .hero-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero .hero-graphic img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  object-fit: cover;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .about-hero .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-hero .hero-graphic {
    display: none; /* remove image on mobile */
  }
}

/* Our Story */
.our-story {
  padding: 4rem 1rem;
  background: #fff;
}

.story-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.story-image {
  flex: 1;
}

.story-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.story-content {
  flex: 1;
}

.story-content h2 {
  margin-bottom: 1rem;
}

.story-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 992px) {
  .story-inner {
    flex-direction: column;
    text-align: center;
  }

  .story-image img {
    max-width: 100%;
  }
}

/* Core Values */
.core-values {
  padding: 4rem 1rem;
  background: #f9f9f9;
  text-align: center;
}

.core-values h2 {
  margin-bottom: 1rem;
}

.values-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  color: #444;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.value-card i {
  font-size: 2rem;
  color: #cfa03f; /* gold accent to match your theme */
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.timeline {
  padding: 4rem 1rem;
  background: #fff;
  position: relative;
}

.timeline h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.timeline-line {
  position: absolute;
  top: 3rem; /* start below the h2 */
  left: 50%;
  width: 4px;
  height: calc(100% - 3rem); /* end below title */
  background: #cfa03f;
  transform: translateX(-50%);
  z-index: 0;
}



.timeline-items {
  position: relative;
  z-index: 1;
}

.timeline-item {
  width: 50%;
  padding: 1rem 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #cfa03f;
  border-radius: 50%;
  z-index: 2;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.left::before {
  right: -10px;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item.right::before {
  left: -10px;
}

.timeline-content {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  display: inline-block;
  max-width: 90%;
}

.timeline-content .year {
  font-weight: bold;
  color: #8a6723;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Mobile fix */
@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
    top: 3rem; /* line starts below title */
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    padding-left: 3rem;
    text-align: left;
    left: 0;
  }

  .timeline-item::before {
    left: 10px; /* dot locked to line */
    right: auto;
  }
}



.cta-banner {
  background: #f9f9f9;
  color: var(--primary);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.cta-banner p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-main {
  background: #fff;
  color: #cfa03f;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.get-in-touch-btn {
    background: var(--accent);
    border: 2px solid var(--accent);
    color: var(--dark);
    padding: .75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
}

.cta-banner .btn-main:hover {
  background: #c79d55;
  color: #fff;
}

.hero-buttons a {
    text-decoration: none;
}

.testimonial-spotlight {
  padding: 4rem 1rem;
  background: #fff;
  text-align: center;
}

.testimonial-spotlight h2 {
  margin-bottom: 2rem;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  text-align: center;
}

.testimonial-card blockquote {
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  padding: .25rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.testimonial-card .btn-secondary {
  background: #cfa03f;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.testimonial-card .btn-secondary:hover {
  background: #a87c2f;
}


/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    margin: 0; /* no side clipping on small screens */
  }

}



.testimonial-stars {
    color: white;
    font-size: 2rem;
    background-color: var(--tp);
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    border-radius: 5rem;
   
}

.btn-main {
    background: var(--accent);
    border: 2px solid var(--accent);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
    
}

.btn-main:hover {
    background: var(--darker-accent);
    border-color: var(--darker-accent);
    color: var(--light);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--light);
    color: var(--light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-tp {
    background: #07865c;
    text-decoration: none;
    padding: 1rem;
    border-radius: 5rem;
    color: white;
    font-weight: 500;
} 

.quote-btn {
    background-color: #694e1e;
    padding: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: .5rem;
}

.quote-btn:hover {
    background-color: #947238;
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
}

/* Responsive hero */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
}

/* HERO LAYOUT */

.hero {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8rem 8% 4rem; /* top padding for fixed header */
    z-index: 2;

    min-height: 100dvh; /* full viewport height on all devices */
    height: auto;

    background: url("/img/webp/setup-marquee.webp") no-repeat center center/cover;
    color: var(--light);
    overflow: hidden;
    gap: 4rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.6)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1 1 45%;
    max-width: 600px;
    padding: 0 1rem;
}

.hero-graphic {
    position: relative;
    flex: 1 1 55%;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

/* QUICK FACTS */
.quick-facts {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    z-index: 3;
    position: relative;
}

.quick-facts div {
    background: rgba(0, 0, 0, 0.65);
    padding: 0.8rem 1.2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.quick-facts div:hover {
    transform: translateY(-3px);
}

/* Desktop: anchor quick facts below slideshow */
@media (min-width: 992px) {
    .quick-facts {
        position: absolute;
        bottom: 2rem;
        right: 8%;
        justify-content: flex-end;
    }
}

/* RESPONSIVE LAYOUT */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        min-height: 100dvh; /* full screen height */
        padding: 7rem 1rem 3rem;
    }

    .hero-content {
        flex: 1 1 100%;
        max-width: 100%;
        margin-top: 10%;
    }

    .hero-graphic {
        flex: 1 1 auto;
        width: 100%;
        justify-content: center;
    }

    .slideshow {
        max-width: 100%;
        height: 40vh; /* smaller but still visible */
        min-height: 250px;
    }

    .quick-facts {
        margin-top: 1rem;
        justify-content: center;
    }
    .quick-facts div {
        flex: 1 1 auto;
        max-width: 280px;
        text-align: center;
    }
}



/* Quick Facts (fluid design) */
/* QUICK FACTS */
.quick-facts {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    z-index: 3;
    position: relative;
}

.quick-facts div {
    background: rgba(0, 0, 0, 0.65);
    padding: 0.8rem 1.2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.quick-facts div:hover {
    transform: translateY(-3px);
}

/* Desktop: inside slideshow, bottom-right */
@media (min-width: 992px) {
    .quick-facts {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        justify-content: flex-end;
        margin-top: 0; /* reset */
    }
}

/* Mobile: stack neatly below hero text */
@media (max-width: 992px) {
    .quick-facts {
        position: static; /* not absolute */
        margin-top: 1.5rem;
        justify-content: center;
    }
    .quick-facts div {
        flex: 0 1 auto; /* keep compact */
        max-width: 280px;
        text-align: center;
    }
}

section {
    padding: 3rem 10%;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary);
}

section h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
    color: var(--primary);
}

/* Reviews Banner*/
.reviews-banner {
    position: relative;
    background: var(--gray);
    overflow: hidden;
    white-space: nowrap;
    padding: .5rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.reviews-track {
    display: inline-block;
    padding-left: 100%;
    animation: scrollReviews 120s linear infinite; /* slower for readability */
}

.review {
    display: inline-block;
    margin: 0 2rem;
    font-size: 1rem;
    color: var(--dark);
}

@keyframes scrollReviews {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.reviews-banner:hover .reviews-track {
    animation-play-state: paused;
}

/* Trustpilot button */
.reviews-banner .trustpilot-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: var(--dark);
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.reviews-banner:hover .trustpilot-btn {
    opacity: 1;
    pointer-events: auto;
}

.stars {
    color: white;
    background-color: #1f9c3e;
    margin-right: 0.5rem;
    font-size: 1.5rem;
    border-radius: 0.25rem;
    padding: 0.1rem 0.3rem 0.1rem 0.3rem;
    letter-spacing: 0.15rem;
}

@keyframes scrollReviews {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.offertag {
    text-align: center;
    padding: 1rem 1rem 1rem 1rem;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 2rem;
    margin-top: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--light);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--light);
    cursor: pointer;
    text-decoration: none;
}

.card.focus {
    text-decoration: none;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--accent);
}

.card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.card p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.6;
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .card {
        padding: 1.5rem;
    }
    .card h3 {
        font-size: 1.2rem;
    }
    .card i {
        font-size: 2rem;
    }
}

.servicesinfo {
    text-align: center;
    font-size: 1rem;
}

.ctahyperlink {
    background-color: #ffdc6a;
    text-decoration: none;
    color: black;
    font-weight: 500;
    padding: 0.25rem;
    border-radius: 0.25rem;
}


/* FAQ */

.faq {
    padding: 4rem 10%;
    background: var(--gray);
    border-radius: 8px;
    margin-top: 4rem;
}

.faq h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 0 1rem 1rem 1rem;
    color: var(--dark);
}

.faq-question .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active .arrow {
    transform: rotate(45deg);
}

/* Mobile Quote CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: .75rem .75rem;
    border-radius: 1rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    background: var(--darker-accent);
    color: var(--light);
}

/* Only show on mobile/tablet */
@media (min-width: 992px) {
    .sticky-cta {
        display: none;
    }
}

/* Gallery Carousel */
.gallery {
  padding: 4rem 1rem;
  background: #fff;
  text-align: center;
}
.gallery h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--primary);
}
.gallery-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}
.gallery-track::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}
.gallery figure {
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  background: #fafafa;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallery figure:hover {
  transform: translateY(-4px);
}
.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.gallery figcaption {
  padding: 0.75rem;
  font-size: 0.9rem;
  color: var(--dark);
  background: #fff;
}

/* Carousel buttons */
.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(13, 27, 42, 0.7); /* navy semi-transparent */
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s;
}
.carousel-btn:hover {
  background: var(--accent);
  color: var(--dark);
}
.carousel-btn.left {
  left: 10px;
}
.carousel-btn.right {
  right: 10px;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}
#lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
#lightbox .lightbox-caption {
  color: #fff;
  font-size: 1.1rem;
}
#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

