:root {
  --black: #080a0c;
  --black-soft: #101316;
  --panel: #15191d;
  --panel-2: #1b2025;
  --white: #f7f7f5;
  --muted: #a8adb2;
  --line: rgba(255,255,255,.11);
  --red: #ed2529;
  --red-dark: #b71318;
  --shadow: 0 24px 60px rgba(0,0,0,.34);
  --radius: 18px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
body.menu-open .site-header { background: rgba(8,10,12,.98); border-color: var(--line); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font: 700 .78rem/1 Inter, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 40px; height: 2px; background: var(--red); }
h1, h2, h3, .brand { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; line-height: .95; margin: 0; }
h1 { font-size: clamp(4rem, 7.2vw, 7.4rem); letter-spacing: -.035em; max-width: 790px; }
h2 { font-size: clamp(2.7rem, 5vw, 5.6rem); letter-spacing: -.025em; }
h3 { font-size: 1.7rem; }
p { margin: 0; color: var(--muted); }
.red { color: var(--red); }
.section { padding: 110px 0; }
.section-head { display: grid; grid-template-columns: 1fr .75fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.section-head p { max-width: 560px; justify-self: end; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(8,10,12,.92);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}
.nav { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 12px; font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 46px; aspect-ratio: 1; border: 4px solid #fff; border-bottom-color: var(--red); border-radius: 50%; position: relative; }
.brand-mark::after { content: ""; position: absolute; width: 20px; height: 3px; background: var(--red); left: 20px; top: 21px; transform: rotate(-32deg); transform-origin: left center; }
.brand span { display:block; }
.brand .red-line { color: var(--red); margin-top: -5px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; position: relative; }
.nav-links a:not(.nav-cta)::after { content: ""; position:absolute; left:0; bottom:-9px; width:100%; height:2px; background:var(--red); transform:scaleX(0); transform-origin:left; transition:.25s; }
.nav-links a:hover::after { transform:scaleX(1); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .8rem;
  cursor: pointer;
  transition: .25s ease;
}
.nav-cta:hover, .btn:hover { background: #ff3438; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(237,37,41,.25); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.45); }
.btn-outline:hover { background: #fff; color: #080a0c; border-color: #fff; box-shadow: none; }
.menu-toggle { display:none; width:48px; height:48px; border:1px solid var(--line); background:transparent; border-radius:50%; padding:0; color:#fff; cursor:pointer; }
.menu-toggle span { display:block; width:20px; height:2px; background:currentColor; margin:0 auto; transition:transform .25s ease, opacity .2s ease; }
.menu-toggle span + span { margin-top:5px; }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  background: #090b0d;
}
.hero::before {
  content: "";
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg, rgba(5,7,9,.98) 0%, rgba(5,7,9,.90) 35%, rgba(5,7,9,.38) 64%, rgba(5,7,9,.42) 100%),
    linear-gradient(0deg, rgba(5,7,9,.78), transparent 45%),
    url('header.webp') center/cover no-repeat;
}
.hero::after { content:""; position:absolute; inset:auto 0 0; height:1px; background:var(--line); }
.hero-inner {
  padding-top: 120px;
  width: min(calc(100% - 96px), 1280px);
  margin-inline: auto;
}
.hero-copy { max-width: 790px; }
.hero .eyebrow { margin-bottom: 28px; color:#fff; }
.hero-text { max-width: 620px; margin-top: 26px; font-size: 1.06rem; color:#c8cbce; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:38px; }
.hero-meta { position:absolute; right:max(20px, calc((100vw - var(--container))/2)); bottom:48px; display:flex; gap:34px; }
.hero-meta div { padding-left:18px; border-left:2px solid var(--red); }
.hero-meta strong { display:block; font:700 1.05rem/1.1 "Barlow Condensed"; text-transform:uppercase; }
.hero-meta span { color:var(--muted); font-size:.76rem; }

.service-strip { background:#f4f4f1; color:#111; padding:72px 0; }
.service-strip .eyebrow { display:flex; justify-content:center; }
.service-strip h2 { text-align:center; font-size:clamp(2.7rem,4vw,4.5rem); margin:18px 0 44px; }
.services-grid { display:grid; grid-template-columns:repeat(6,1fr); }
.service-card { min-height:250px; padding:24px 22px; border-right:1px solid rgba(0,0,0,.11); text-align:center; }
.service-card:last-child { border-right:0; }
.service-icon { width:62px; height:62px; margin:0 auto 22px; display:grid; place-items:center; color:var(--red); }
.service-icon svg { width:48px; height:48px; stroke:currentColor; fill:none; stroke-width:1.8; }
.service-card h3 { font-size:1.34rem; margin-bottom:12px; }
.service-card p { color:#666; font-size:.83rem; line-height:1.55; }

.about { background:linear-gradient(135deg,#0e1114,#171b20); }
.about-grid { display:grid; grid-template-columns:1.05fr 1fr; gap:72px; align-items:center; }
.about-image { position:relative; min-height:560px; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); }
.about-image img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.about-image::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(0,0,0,.45),transparent 45%); }
.about-badge { position:absolute; z-index:2; left:24px; bottom:24px; background:var(--red); padding:20px 24px; border-radius:8px; }
.about-badge strong { display:block; font:800 2.2rem/1 "Barlow Condensed"; }
.about-badge span { font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; }
.about-copy .eyebrow { margin-bottom:24px; }
.about-copy h2 { margin-bottom:26px; }
.about-copy > p + p { margin-top:18px; }
.trust-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:36px; }
.trust-item { padding-top:22px; border-top:1px solid var(--line); }
.trust-item strong { display:block; font:700 1.2rem/1 "Barlow Condensed"; text-transform:uppercase; margin-bottom:9px; }
.trust-item span { color:var(--muted); font-size:.78rem; }

.capabilities { position:relative; overflow:hidden; background:#0a0c0e; padding:0; }
.capabilities-bg { position:absolute; inset:0; opacity:.13; background:url('https://www.samuiunlocked.com/asset/uploads/businesslistings/1279/gallery/gallery-1783188036-1721.webp') center/cover; filter:grayscale(1); }
.capabilities-grid { position:relative; display:grid; grid-template-columns:repeat(4,1fr); }
.capability { min-height:270px; padding:65px 34px 45px; text-align:center; border-right:1px solid var(--line); display:flex; flex-direction:column; align-items:center; justify-content:center; }
.capability:last-child { border-right:0; }
.capability svg { width:44px; height:44px; color:var(--red); stroke:currentColor; fill:none; stroke-width:1.6; margin-bottom:22px; }
.capability h3 { margin-bottom:10px; }
.capability p { font-size:.84rem; max-width:220px; }


.contact { background:linear-gradient(135deg,#111519,#080a0c); }
.contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:start; }
.contact h2 { margin:20px 0 28px; }
.contact-intro { max-width:520px; }
.contact-cards { display:grid; gap:12px; margin-top:36px; }
.contact-card { display:flex; gap:17px; align-items:flex-start; padding:18px 0; border-bottom:1px solid var(--line); }
.contact-card svg { width:22px; height:22px; stroke:var(--red); fill:none; stroke-width:1.8; flex:0 0 auto; margin-top:2px; }
.contact-card strong { display:block; font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:3px; }
.contact-card span, .contact-card a { color:var(--muted); font-size:.93rem; }
.contact-card a:hover { color:#fff; }
.hours-panel { background:#f2f2ef; color:#111; padding:42px; border-radius:var(--radius); box-shadow:var(--shadow); }
.hours-panel h3 { font-size:2rem; margin-bottom:25px; }
.hours-row { display:flex; justify-content:space-between; gap:20px; padding:12px 0; border-bottom:1px solid rgba(0,0,0,.1); }
.hours-row span:last-child { font-weight:700; }
.hours-row.closed span:last-child { color:var(--red); }
.hours-actions { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:28px; }
.hours-actions .btn-outline { color:#111; border-color:#bbb; }
.hours-actions .btn-outline:hover { background:#111; color:#fff; border-color:#111; }

footer { background:#050607; border-top:1px solid var(--line); padding:32px 0; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.footer-copy { display:flex; flex-direction:column; gap:5px; }
.footer-inner p { font-size:.78rem; }
.site-credit { color:var(--muted); font-size:.74rem; }
.site-credit a { color:#d9dcdf; transition:color .2s ease; }
.site-credit a:hover { color:var(--red); }
.footer-links { display:flex; gap:22px; color:var(--muted); font-size:.78rem; }
.footer-links a:hover { color:#fff; }


.floating-actions {
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:1200;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.float-button {
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:50%;
  color:#fff;
  cursor:pointer;
  box-shadow:0 14px 34px rgba(0,0,0,.32);
  transition:transform .25s ease, opacity .25s ease, visibility .25s ease, background .25s ease;
}
.float-button:hover { transform:translateY(-3px); }
.float-button svg { width:24px; height:24px; stroke:currentColor; fill:none; stroke-width:2; }
.whatsapp-float { background:#25d366; }
.whatsapp-float:hover { background:#20bd5a; }
.back-to-top {
  background:#171b20;
  border:1px solid rgba(255,255,255,.18);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
}
.back-to-top.visible { opacity:1; visibility:visible; transform:none; }
.back-to-top:hover { background:var(--red); }

.lightbox { position:fixed; z-index:2000; inset:0; display:none; place-items:center; background:rgba(0,0,0,.93); padding:30px; }
.lightbox.active { display:grid; }
.lightbox img { max-width:min(1200px,94vw); max-height:88vh; object-fit:contain; }
.lightbox button { position:absolute; top:22px; right:22px; width:48px; height:48px; border:1px solid rgba(255,255,255,.3); border-radius:50%; background:transparent; color:#fff; font-size:1.5rem; cursor:pointer; }

.reveal { opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 1050px) {
  .services-grid { grid-template-columns:repeat(3,1fr); }
  .service-card { border-bottom:1px solid rgba(0,0,0,.11); }
  .service-card:nth-child(3) { border-right:0; }
  .about-grid, .contact-grid { grid-template-columns:1fr; }
  .about-image { min-height:500px; }
  .capabilities-grid { grid-template-columns:repeat(2,1fr); }
  .capability:nth-child(2) { border-right:0; }
  .capability:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .hero-meta { display:none; }
}

@media (max-width: 820px) {
  .section { padding:80px 0; }
  .section-head { grid-template-columns:1fr; gap:20px; }
  .section-head p { justify-self:start; }
  .menu-toggle { display:block; position:relative; z-index:1002; flex:0 0 auto; }
  .nav-links {
    position:fixed;
    inset:88px 0 0;
    z-index:1001;
    width:100%;
    height:calc(100dvh - 88px);
    padding:46px 24px 38px;
    background:rgba(9,11,13,.985);
    backdrop-filter:blur(16px);
    display:flex;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:0;
    overflow-y:auto;
    visibility:hidden;
    opacity:0;
    transform:translateY(-12px);
    pointer-events:none;
    transition:opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav-links.open { visibility:visible; opacity:1; transform:none; pointer-events:auto; }
  .nav-links a { width:100%; padding:18px 4px; border-bottom:1px solid var(--line); font:700 1.45rem/1 "Barlow Condensed", sans-serif; letter-spacing:.04em; text-align:left; }
  .nav-links .nav-cta { margin-top:28px; min-height:58px; border-bottom:0; justify-content:center; font-family:Inter, sans-serif; font-size:.82rem; }
  .nav-links a:not(.nav-cta)::after { display:none; }
  .menu-toggle.active span:first-child { transform:translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity:0; }
  .menu-toggle.active span:last-child { transform:translateY(-7px) rotate(-45deg); }
  .hero { min-height:900px; align-items:flex-end; padding-bottom:90px; }
  .hero::before { background:linear-gradient(0deg,rgba(5,7,9,.98) 0%,rgba(5,7,9,.88) 48%,rgba(5,7,9,.3) 100%), url('https://www.samuiunlocked.com/asset/uploads/businesslistings/1279/header-1783187872-1315.webp?t=1784803546') center/cover no-repeat; }
  h1 { font-size:clamp(4rem,17vw,7rem); }
  .gallery-grid { grid-template-columns:1fr 1fr; grid-template-rows:340px 240px 240px; }
  .gallery-item:nth-child(1) { grid-column:span 2; grid-row:auto; }
  .gallery-item:nth-child(n+2) { grid-column:auto; grid-row:auto; }
  .trust-grid { grid-template-columns:1fr; }
}

@media (max-width: 580px) {
  .container { width:min(calc(100% - 28px), var(--container)); }
  .nav { height:76px; }
  .nav-links { inset:76px 0 0; height:calc(100dvh - 76px); padding-top:32px; }
  .brand { font-size:1.55rem; }
  .brand-mark { width:38px; }
  .hero { min-height:820px; }
  .hero-inner { width:min(calc(100% - 28px), 1280px); padding-top:100px; }
  .hero-actions, .hours-actions { grid-template-columns:1fr; display:grid; }
  .services-grid { grid-template-columns:1fr; }
  .service-card, .service-card:nth-child(3) { border-right:0; }
  .service-card { min-height:auto; padding:30px 20px; }
  .about-image { min-height:420px; }
  .capabilities-grid { grid-template-columns:1fr; }
  .capability { border-right:0; border-bottom:1px solid var(--line); }
  .gallery-grid { display:grid; grid-template-columns:1fr; grid-template-rows:repeat(5,250px); gap:12px; }
  .gallery-item:nth-child(n) { grid-column:auto; grid-row:auto; }
  .floating-actions { right:14px; bottom:14px; }
  .float-button { width:52px; height:52px; }
  .hours-panel { padding:28px 22px; }
  .footer-inner { flex-direction:column; align-items:flex-start; }
}

.logo{
    width: 100%;
    margin-top: 10px !important;
    max-width: 170px !important;
}


.location-section {
    padding: 110px 0;
    background: #1A225C;
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.35fr);
    align-items: center;
    gap: 70px;
}

.location-copy {
    max-width: 480px;
}

.location-copy h2 {
    margin: 12px 0 24px;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.location-copy p {
    margin-bottom: 18px;
    color: #fff;
    line-height: 1.75;
}

.location-copy .btn {
    margin-top: 16px;
}

.map-wrap {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.15) contrast(1.03);
}

@media (max-width: 900px) {
    .location-section {
        padding: 80px 0;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-copy {
        max-width: none;
    }

    .map-wrap {
        min-height: 420px;
    }
}

@media (max-width: 600px) {
    .location-section {
        padding: 64px 0;
    }

    .map-wrap {
        min-height: 360px;
        border-radius: 16px;
    }
}


.gallery { background:#f4f4f1; color:#111; }
.gallery p { color:#616161; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 230px;
    gap: 14px;
}

.gallery-item {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    border-radius: 14px;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(7),
.gallery-item:nth-child(14) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(12),
.gallery-item:nth-child(18) {
    grid-column: span 2;
}

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

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

@media (max-width: 980px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 240px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-item,
    .gallery-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }
}

.gallery-item {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    overflow: hidden;
    border-radius: 14px;
    background: transparent;
    cursor: zoom-in;
}

.gallery-item::after {
    content: "+";
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: rgba(9, 11, 13, 0.82);
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

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

.gallery-item:hover img {
    transform: scale(1.04);
}
.glightbox-container .gslide-description,
.glightbox-container .gslide-title,
.glightbox-container .gslide-desc {
    display: none !important;
}

