/* ==========================================================================
   Lucky Lifter — stylesheet
   Palette:  #0e8c86 (teal), #0a5f5b (deep teal), #f2b134 (safety yellow),
             #14201f (ink), #faf9f6 (paper), #ffffff
   Type:     'Cinzel' (display/headings) + 'Work Sans' (body/UI)
   ========================================================================== */

:root{
  --teal:        #0e8c86;
  --teal-dark:   #0a5f5b;
  --teal-deep:   #06403d;
  --yellow:      #f2b134;
  --yellow-dark: #d99a1f;
  --ink:         #14201f;
  --ink-soft:    #45534f;
  --paper:       #faf9f6;
  --paper-tint:  #eef2f1;
  --white:       #ffffff;
  --line:        #dbe3e1;

  --font-display: 'Cinzel', serif;
  --font-body: 'Work Sans', sans-serif;

  --container: 1180px;
  --radius: 4px;
  --shadow: 0 14px 34px rgba(6, 40, 38, 0.14);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--teal-deep);
  line-height: 1.25;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1{ font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h2{ font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3{ font-size: 1.25rem; }

p{ margin: 0 0 1em; color: var(--ink-soft); }

a{ color: var(--teal); text-decoration: none; }
a:hover{ color: var(--teal-dark); }

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

ul{ margin: 0; padding: 0; list-style: none; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section{ padding: 84px 0; }

.eyebrow-rule{
  width: 56px;
  height: 3px;
  background: var(--yellow);
  margin: 14px 0 22px;
}

.center{ text-align: center; }
.center .eyebrow-rule{ margin-left: auto; margin-right: auto; }

.lede{
  max-width: 640px;
  font-size: 1.05rem;
}
.center .lede{ margin-left: auto; margin-right: auto; }

/* Buttons
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover{ transform: translateY(-2px); }

.btn-primary{
  background: var(--yellow);
  color: var(--ink);
}
.btn-primary:hover{ background: var(--yellow-dark); color: var(--ink); }

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

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

/* Top utility bar
   ========================================================================== */
.topbar{
  background: var(--teal-deep);
  color: #d7e6e4;
  font-size: 0.85rem;
}
.topbar .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-contact{ display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-contact a{ color: #d7e6e4; }
.topbar-contact a:hover{ color: var(--yellow); }
.topbar-contact i{ margin-right: 6px; color: var(--yellow); }

.topbar-social{ display: flex; gap: 14px; }
.topbar-social a{
  color: #d7e6e4;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(215,230,228,0.35);
  border-radius: 50%;
  font-size: 0.78rem;
  transition: all 0.18s ease;
}
.topbar-social a:hover{ background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

/* Header / nav
   ========================================================================== */
.site-header{
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand{ display: flex; align-items: center; gap: 12px; }
.brand img{ height: 52px; width: auto; }
.brand-text{ line-height: 1.2; }
.brand-text .name{
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--teal-deep);
  letter-spacing: 0.02em;
}
.brand-text .tag{
  font-size: 0.72rem;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span{
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.main-nav ul{ display: flex; gap: 30px; }
.main-nav a{
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active{
  color: var(--teal-dark);
  border-bottom-color: var(--yellow);
}

/* Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,42,40,0.88) 0%, rgba(6,42,40,0.55) 55%, rgba(6,42,40,0.35) 100%);
  z-index: -1;
}
.hero .container{ padding-top: 40px; padding-bottom: 40px; }
.hero-inner{ max-width: 700px; opacity: 0; animation: rise 0.9s ease forwards 0.15s; }
.hero-kicker{
  color: var(--yellow);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero h1{ color: var(--white); margin-bottom: 20px; }
.hero p.hero-sub{
  color: #e7efee;
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero{
  min-height: 42vh;
}
.page-hero .hero-inner{ max-width: 620px; }

@keyframes rise{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .hero-inner{ animation: none; opacity: 1; }
}

/* Services grid (icon style)
   ========================================================================== */
.services-strip{ background: var(--white); }
.service-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 46px;
}
.service-card{ text-align: center; }
.service-card .thumb{
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 18px;
  border: 1px solid var(--line);
}
.service-card .thumb img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .thumb img{ transform: scale(1.06); }
.service-card h3{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.service-card p{ font-size: 0.92rem; margin-bottom: 0; }

/* What we do — cards with caption overlay
   ========================================================================== */
.whatwedo{ background: var(--paper-tint); }
.whatwedo-head{ max-width: 640px; margin-bottom: 46px; }

.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card-grid.card-grid-4 .work-card:last-child{ grid-column: span 1; }

.work-card{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.work-card img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.work-card:hover img{ transform: scale(1.08); }
.work-card .cap{
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(6,40,38,0.92), rgba(6,40,38,0));
  color: var(--white);
  padding: 34px 18px 16px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

/* Two-column info band
   ========================================================================== */
.info-band{ background: var(--white); }
.info-band-inner{
  background: var(--paper-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.info-col .icon-badge{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.info-col p{ margin-bottom: 14px; }
.info-col .more-link{ font-weight: 700; font-size: 0.9rem; }
.info-band .stat-line{
  text-align: center;
  margin-top: 44px;
  color: var(--ink-soft);
  font-style: italic;
}

/* CTA banner
   ========================================================================== */
.cta-banner{
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  isolation: isolate;
}
.cta-banner::before{
  content: "";
  position: absolute; inset: 0;
  background: rgba(6, 40, 38, 0.72);
  z-index: -1;
}
.cta-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-card h2{ margin-bottom: 10px; }
.cta-card p{ margin-bottom: 0; max-width: 480px; }

/* Footer
   ========================================================================== */
.site-footer{ background: var(--teal-deep); color: #cfe2df; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 68px 0 40px;
}
.footer-brand .brand{ margin-bottom: 16px; }
.footer-brand .brand-text .name{ color: var(--white); }
.footer-brand p{ color: #a9c6c2; font-size: 0.92rem; }
.footer-col h4{
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col li{ margin-bottom: 11px; font-size: 0.92rem; }
.footer-col a{ color: #cfe2df; }
.footer-col a:hover{ color: var(--yellow); }
.footer-col p{ color: #cfe2df; font-size: 0.92rem; margin-bottom: 8px; }

.footer-bottom{
  border-top: 1px solid rgba(207,226,223,0.18);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #a9c6c2;
}
.footer-bottom a{ color: #a9c6c2; }
.footer-bottom a:hover{ color: var(--yellow); }
.footer-bottom .sep{ margin: 0 8px; }

/* About page
   ========================================================================== */
.about-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-split img{ border-radius: var(--radius); box-shadow: var(--shadow); }
.about-copy blockquote{
  margin: 22px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--yellow);
  background: var(--paper-tint);
  font-style: italic;
  color: var(--ink);
}
.keyword-grid{
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.keyword-grid li{
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
}
.keyword-grid i{ color: var(--teal); }

/* Services page
   ========================================================================== */
.services-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-row{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-row .thumb{ aspect-ratio: 1; overflow: hidden; }
.service-row .thumb img{ width: 100%; height: 100%; object-fit: cover; }
.service-row .body{ padding: 22px 22px 22px 0; }
.service-row h3{ margin-bottom: 8px; }
.service-row p{ font-size: 0.94rem; margin-bottom: 0; }

/* Work / gallery page
   ========================================================================== */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item .cap{
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(6,40,38,0.92), rgba(6,40,38,0));
  color: var(--white);
  padding: 30px 16px 14px;
  font-weight: 700;
  font-size: 0.95rem;
}

.stats-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 60px;
}
.stats-row .num{
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--teal);
}
.stats-row .label{ font-size: 0.88rem; color: var(--ink-soft); }

/* Contact page
   ========================================================================== */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-info .item{
  display: flex; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .item:first-child{ padding-top: 0; }
.contact-info .icon{
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.contact-info h4{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.contact-info p{ margin-bottom: 0; font-size: 0.94rem; }

.contact-form{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group{ margin-bottom: 18px; }
.form-group label{ display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 6px; }
.form-group input,
.form-group textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
}
.form-group input:focus,
.form-group textarea:focus{
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}
.form-note{ font-size: 0.82rem; color: var(--ink-soft); margin-top: 10px; }

.map-frame{
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-frame iframe{ width: 100%; height: 380px; border: 0; display: block; }

/* Focus visibility (accessibility)
   ========================================================================== */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* Responsive
   ========================================================================== */
@media (max-width: 980px){
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
  .card-grid{ grid-template-columns: repeat(2, 1fr); }
  .info-band-inner{ grid-template-columns: 1fr; padding: 36px; }
  .about-split{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .services-list{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .stats-row{ grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 720px){
  .nav-toggle{ display: block; }
  .main-nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .main-nav.open{ display: block; }
  .main-nav ul{ flex-direction: column; gap: 0; padding: 10px 24px 20px; }
  .main-nav a{ display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .topbar-contact{ font-size: 0.78rem; gap: 14px; }
  .service-grid{ grid-template-columns: 1fr 1fr; gap: 20px; }
  .card-grid{ grid-template-columns: 1fr; }
  .cta-card{ flex-direction: column; text-align: center; }
  .keyword-grid{ grid-template-columns: 1fr; }
  .service-row{ grid-template-columns: 1fr; }
  .service-row .body{ padding: 0 18px 18px; }
  .service-row .thumb{ aspect-ratio: 16/9; }
  .form-row{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .stats-row{ grid-template-columns: 1fr 1fr; }
  section{ padding: 56px 0; }
}

/* =========================
   SIMPLE GALLERY
========================= */

.ll-gallery {
    padding: 80px 0;
    background: #ffffff;
}

.ll-gallery-container {
    width: 82%;
    max-width: 1150px;
    margin: auto;
}

.ll-gallery-title {
    text-align: center;
    margin-bottom: 40px;
}

.ll-gallery-title span {
    color: #e6a900;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.ll-gallery-title h2 {
    margin: 10px 0;
    color: #064d4a;
    font-family: Georgia, serif;
    font-size: 40px;
    font-weight: 500;
}

.ll-gallery-title h2 b {
    color: #078c87;
    font-weight: 500;
}

.ll-gallery-title p {
    margin: 0;
    color: #777;
    font-size: 13px;
}


/* Gallery */

.ll-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.ll-gallery-img {
    height: 220px;
    overflow: hidden;
    background: #eee;
}

.ll-gallery-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

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


/* Tablet */

@media (max-width: 900px) {

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

}


/* Mobile */

@media (max-width: 550px) {

    .ll-gallery {
        padding: 60px 0;
    }

    .ll-gallery-container {
        width: 90%;
    }

    .ll-gallery-title h2 {
        font-size: 30px;
    }

    .ll-gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ll-gallery-img {
        height: 230px;
    }

}


/* =================================
   WHATSAPP & CALL FLOATING BUTTONS
================================= */

.ll-floating-contact {
    position: fixed;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 9999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    pointer-events: none;
}

.ll-floating-contact a {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff !important;
    text-decoration: none;

    font-size: 25px;

    box-shadow: 0 6px 20px rgba(0,0,0,.25);

    transition: all .3s ease;

    pointer-events: auto;
}

/* WhatsApp */

.ll-whatsapp-btn {
    background: #25D366;
}

.ll-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-5px);
}


/* Call */

.ll-call-btn {
    background: #078c87;
}

.ll-call-btn:hover {
    background: #064d4a;
    transform: translateY(-5px);
}


/* Mobile */

@media (max-width: 600px) {

    .ll-floating-contact {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .ll-floating-contact a {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

}