:root{

  --bg:#f7f8fa; --text:#111; --muted:#5b6470; --card:#ffffff; --line:rgba(0,0,0,.10);

  --btn:#121417; --btnText:#fff; --btnRing:rgba(17,24,39,.25);

  --radius:16px; --shadow:0 10px 28px rgba(0,0,0,.08);

}



*{box-sizing:border-box}

html,body{height:100%}

html{scroll-behavior:smooth}

body{

  margin:0;

  font-family:'Inter',system-ui,-apple-system,'SF Pro Display','Segoe UI',Roboto,Arial,sans-serif;

  background:var(--bg);color:var(--text);line-height:1.65;-webkit-font-smoothing:antialiased

}

a{color:inherit;text-decoration:none}



/* ===== Header ===== */

header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.85);backdrop-filter:saturate(140%) blur(8px);border-bottom:1px solid var(--line)}

.nav{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:14px;padding:14px 22px}

.brand{display:flex;align-items:center;gap:10px}

.wordmark{font-weight:800;letter-spacing:.6px;line-height:1;font-size:1.1rem;background:linear-gradient(90deg,#111,#2b2b2b);-webkit-background-clip:text;background-clip:text;color:transparent}



/* Desktop nav */

.navlinks{display:flex;gap:16px;flex-wrap:wrap}

.navlinks a{padding:8px 12px;border-radius:10px;transition:.2s}

.navlinks a:hover{background:#eef0f3}

.cta{display:inline-flex;align-items:center;gap:10px;padding:10px 14px;border-radius:12px;border:1px solid rgba(0,0,0,.12);background:var(--btn);color:var(--btnText);font-weight:700;box-shadow:0 6px 18px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,255,255,.06);transition:.25s}

.cta:hover{transform:translateY(-1px);box-shadow:0 10px 24px rgba(0,0,0,.22)}



/* Mobile menu toggle */

.menu-toggle{display:none;appearance:none;border:1px solid var(--line);background:#fff;border-radius:10px;width:42px;height:42px;align-items:center;justify-content:center;cursor:pointer}

.menu-toggle .bars{position:relative;display:block;width:18px;height:2px;background:#111}

.menu-toggle .bars::before,.menu-toggle .bars::after{content:"";position:absolute;left:0;width:18px;height:2px;background:#111}

.menu-toggle .bars::before{top:-6px}

.menu-toggle .bars::after{top:6px}



/* Mobile nav panel (hidden by default) */

@media (max-width: 980px){

  .hero .wrap{grid-template-columns:1fr}

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

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

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

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

  .fb-arrow{display:none}

  .site-footer .foot-grid{grid-template-columns:1fr 1fr}

  /* Mobile header */

  .menu-toggle{display:inline-flex}

  .nav{padding:12px 16px}

  .navlinks{

    position:fixed; left:0; right:0;

    top:var(--navTop, 64px); bottom:0;

    display:none; flex-direction:column; gap:8px; padding:14px 16px;

    background:rgba(255,255,255,.96); backdrop-filter:blur(8px);

    border-top:1px solid var(--line); box-shadow:0 10px 24px rgba(0,0,0,.12);

    overflow:auto; z-index:100;

    /* Height fallbacks */

    height:calc(100vh - var(--navTop, 64px));

  }

  @supports (height: 100dvh){

    .navlinks{ height:calc(100dvh - var(--navTop, 64px)); }

  }

  body.nav-open .navlinks{display:flex}

  .navlinks a,.navlinks .cta{padding:14px 12px;border-radius:12px}

  .navlinks .cta{justify-content:center}

}

@media (max-width: 640px){

  .usp,.cards,.steps,.reviews{grid-template-columns:1fr}

  .site-footer .foot-grid{grid-template-columns:1fr}

}

@media (max-width: 640px){

  .usp,.cards,.steps,.reviews{grid-template-columns:1fr}

  .site-footer .foot-grid{grid-template-columns:1fr}

}



/* ===== Hero ===== */

.hero{position:relative}

.hero .wrap{max-width:1200px;margin:0 auto;padding:56px 22px;display:grid;grid-template-columns:1.05fr .95fr;gap:26px;align-items:center}

.tag{display:inline-flex;gap:8px;align-items:center;background:#eef2f7;border:1px solid #d7dee8;color:#253041;padding:8px 12px;border-radius:999px;font-weight:600}

.pulse{width:10px;height:10px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 0 rgba(34,197,94,.6);animation:pulse 1.8s infinite}

@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(34,197,94,.6)}70%{box-shadow:0 0 0 12px rgba(34,197,94,0)}100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}}

h1{font-size:clamp(2rem,4vw,3rem);line-height:1.12;margin:14px 0}

.lead{color:var(--muted);max-width:62ch}

.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

.btn{display:inline-flex;align-items:center;gap:10px;padding:12px 16px;border-radius:12px;border:1px solid var(--line);background:var(--card);transition:.25s;font-weight:600}

.btn:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgba(0,0,0,.08)}

.btn.primary{background:var(--btn);border-color:#0f1114;color:#fff}



/* Hero image carousel (right of headline) */

.hero-carousel{position:relative;border-radius:var(--radius);overflow:hidden;background:#0b0c10;border:1px solid var(--line);box-shadow:var(--shadow);aspect-ratio:16/10}

.hero-carousel img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .6s ease}

.hero-carousel img.active{opacity:1}



/* Anchor offset for sticky header */

section, .usp, .facebook-section { scroll-margin-top: 90px; }


/* ===== USP dropdowns (4 in a row, black icons) ===== */
.usp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 22px;
}

/* Each clickable header */
.usp .chip.usp-toggle {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #111;
  font-family: 'Inter','SF Pro Display',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.usp .chip.usp-toggle:hover {
  background: #f8f9fb;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}

/* Icon and label inline for clean structure */
.usp .usp-icon-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.usp .usp-icon-text svg {
  width: 26px;
  height: 26px;
  color: #111; /* Black icons */
}

.usp .usp-icon-text span {
  font-weight: 800;
  font-size: 1.25rem;
  color: #111;
}

/* Chevron aligned right */
.usp .chevron {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 18px;
  height: 18px;
  opacity: 0.65;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.usp .chip[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Panel appears below each card, but doesn't shift others */
.usp .usp-panel {
  grid-column: 1 / -1;
  background: #f7f8fa;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 24px;
  color: #2d3340;
  font-size: 1.05rem;
  line-height: 1.7;
  box-shadow: var(--shadow);
  animation: uspFadeIn 0.3s ease;
}

@keyframes uspFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .usp {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .usp .chip.usp-toggle {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
  }

  .usp .usp-icon-text span {
    font-size: 1.1rem;
  }
}


/* ===== Sections & Cards ===== */

.section{max-width:1200px;margin:46px auto;padding:0 22px}

.section h2{font-size:clamp(1.6rem,3.2vw,2.2rem);margin:0 0 10px}

.muted{color:var(--muted)}

.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px}

.card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);padding:18px}

.card h3{margin:6px 0 6px;font-size:1.1rem}

.card p{margin:0;color:#444}



/* ===== Steps ===== */

.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px}

.step{padding:18px;border-radius:14px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow)}



/* ===== Reviews ===== */

.reviews{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px}

blockquote{margin:0;padding:16px;border-radius:14px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);color:#2d3340}

.reviews blockquote footer{margin-top:10px;color:#6b7280;background:transparent;padding:0}



/* ===== Facebook near bottom ===== */

.facebook-section{max-width:1200px;margin:34px auto 10px;padding:0 22px;position:relative}

.facebook-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}

.facebook-header h2{margin:0;font-size:clamp(1.4rem,3vw,2rem)}

.fb-slider{display:flex;gap:18px;overflow-x:auto;scroll-behavior:smooth;scroll-snap-type:x mandatory;padding-bottom:6px}

.fb-slider::-webkit-scrollbar{display:none}

.fb-post{flex:0 0 auto;scroll-snap-align:center;width:500px;max-width:88vw;border-radius:14px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);overflow:hidden}

.fb-post iframe{display:block;width:100%;height:740px;border:0}

.fb-arrow{position:absolute;top:50%;transform:translateY(-50%);background:#fff;border:1px solid var(--line);width:44px;height:44px;border-radius:50%;display:grid;place-items:center;cursor:pointer;box-shadow:var(--shadow);z-index:5}

.fb-arrow svg{width:18px;height:18px}

.fb-arrow.left{left:6px}

.fb-arrow.right{right:6px}



/* ===== Footer ===== */

footer.site-footer{background:#0b0c10;color:#d9dce1;margin-top:0}

.site-footer .foot-wrap{max-width:1200px;margin:0 auto;padding:40px 22px}

.site-footer .foot-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr;gap:22px;align-items:flex-start}

.site-footer h4{margin:0 0 12px;color:#fff}

.site-footer p,.site-footer li,.site-footer a{color:#aab0bb}

.site-footer a{text-decoration:none}

.site-footer a:hover{color:#fff}

.site-footer ul{list-style:none;margin:0;padding:0;display:grid;gap:8px}

.site-footer .foot-cta{margin-top:10px}

.site-footer .foot-cta .btn.primary{background:#fff;color:#111;border-color:#fff}

.site-footer .foot-cta .btn.primary:hover{box-shadow:0 10px 22px rgba(255,255,255,.18)}

.site-footer .foot-credit{border-top:1px solid rgba(255,255,255,.08);margin-top:26px;padding-top:16px;color:#8e95a3;font-size:.92rem;display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px}



/* ===== Modal (booking) ===== */

.modal-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.55);backdrop-filter:blur(2px);display:none;align-items:center;justify-content:center;padding:20px;z-index:90}

.modal-backdrop[aria-hidden="false"]{display:flex}

.modal{background:#fff;border-radius:16px;box-shadow:0 20px 50px rgba(0,0,0,.35);max-width:960px;width:100%;border:1px solid rgba(0,0,0,.08);display:flex;flex-direction:column;max-height:90vh;overflow:hidden}

.modal-header{display:flex;align-items:center;justify-content:space-between;padding:12px 14px;border-bottom:1px solid rgba(0,0,0,.06);background:#f7f8fa}

.modal-title{font-weight:700}

.modal-close{appearance:none;border:0;background:transparent;font-size:22px;line-height:1;padding:6px 10px;border-radius:8px;cursor:pointer}

.modal-body{padding:0;height:80vh;overflow:auto}

.modal-body iframe{display:block;width:100%;height:100%}



/* ===== Responsive ===== */

@media (max-width: 980px){

  .hero .wrap{grid-template-columns:1fr}

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

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

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

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

  .fb-arrow{display:none}

  .site-footer .foot-grid{grid-template-columns:1fr 1fr}

}

@media (max-width: 640px){

  .usp,.cards,.steps,.reviews{grid-template-columns:1fr}

  .site-footer .foot-grid{grid-template-columns:1fr}

}

/* Booking popup info section */
.booking-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f0f7ff;
  border: 1px solid #c5e0ff;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 18px auto 0;
  font-size: 0.95rem;
  color: #084b8a;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  max-width: calc(100% - 40px); /* adds spacing from left/right edges */
  box-sizing: border-box;
}

.booking-info .info-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #1976d2;
}

.booking-info svg {
  width: 22px;
  height: 22px;
}

.booking-info p {
  margin: 0;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .booking-info {
    padding: 12px 14px;
    max-width: calc(100% - 24px);
    font-size: 0.9rem;
  }

/* Projects layout fix */
#projects {
  overflow-x: hidden;
  padding: 0 16px;
}

#projects .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

#projects .card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  padding: 16px;
  overflow: hidden;
}

#projects .project-media {
  width: 100%;
  max-width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 10px;
}

#projects .project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

