
:root {
  --primary: #eb3131;
  --primary-soft: #bdc8d3e8;
  --accent: #f6ad2b;
  --muted: #6b7280;
  --bg: #eeeeee;
  --card: #ffffff;
  --radius: 16px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: #0f172a;
  line-height: 1.5;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(245,247,251,0.96));
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(15,23,42,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.logo-img {
  width: 80px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15,23,42,0.25);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand h1 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand small {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

nav ul {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  font-size: 14px;
}

nav a {
  color: #111827;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 500;
}

nav a:hover {
  background: rgba(0,0,0,0.04);
}

.nav-right {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-select {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(226,232,240,0.7);
}

.lang-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-right: 4px;
}

.btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(0,90,169,0.35);
}

.btn span.icon { font-size: 16px; }

.btn.ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(0,90,169,0.3);
  box-shadow: none;
}

.hero-wrapper {
  position: relative;
  border-bottom: 1px solid #e5e7eb;
  background: #000;
  background-image: url("../img/banner-bac.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.68), rgba(0,0,0,0.35), rgba(0,0,0,0.55));
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
  padding: 40px 0 52px;
  color: #f9fafb;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.78);
  color: #e5f0ff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.lead {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 10px;
}

.lead-sub {
  color: #e5e7eb;
  margin: 0 0 18px;
  max-width: 480px;
}

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

.hero .btn {
  box-shadow: 0 10px 24px rgba(0,0,0,0.6);
}

.hero .btn.ghost {
  background: transparent;
  color: #e5f0ff;
  border-color: rgba(226,232,240,0.6);
}

.bullet-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  font-size: 13px;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.72);
  border: 1px solid rgba(148,163,184,0.6);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e5e7eb;
}

.card {
  background: var(--card);
  padding: 22px 20px;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(15,23,42,0.5);
  position: relative;
  overflow: hidden;
  color: #0f172a;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0.06;
  background:
    radial-gradient(circle at 0 0, var(--primary) 0, transparent 50%),
    radial-gradient(circle at 100% 100%, var(--accent) 0, transparent 55%);
  pointer-events: none;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.card-body {
  position: relative;
  z-index: 1;
}

form .row { display:flex; gap:10px; }

input,
select,
textarea {
  width: 100%;
  padding: 11px 11px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  background: rgba(255,255,255,0.96);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(0,90,169,0.25);
}

label {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 5px;
}

.small { font-size: 13px; color: var(--muted); }

.land-row {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 13px;
}

.consent-label {
  font-size: 12px;
  margin-top: 4px;
}

.form-buttons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.ip-row {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

section {
  padding: 56px 0;
}

.main-body {
  padding-bottom: 56px;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.section-title h2 {
  margin: 0;
  font-size: 22px;
}

.section-title .dot {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

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

.feature {
  background: var(--card);
  padding: 18px 16px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

.feature h3,
.feature h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.counters {
  display: flex;
  gap: 18px;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 16px;
}

.counter {
  flex: 1 1 0;
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
  padding: 18px 16px 16px;
  border-radius: 14px;
  border: 1px solid #d1e4ff;
  text-align: left;
}

.counter strong {
  display: block;
  font-size: 24px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.step {
  padding: 16px 14px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  border-radius: 14px;
  border: 1px solid #e0edff;
  font-size: 13px;
}

.step strong {
  display: block;
  margin: 4px 0 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.card-soft {
  box-shadow: none;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

footer {
  padding: 32px 0 28px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 8px;
}

.float-ws {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  padding: 0;
  box-shadow: 0 10px 24px rgba(15,23,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  z-index: 50;
  left: 1850px;
}
.float-fb {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2938c4;
  color: #fff;
  padding: 0;
  box-shadow: 0 10px 24px rgba(15,23,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  z-index: 50;
  left: 1780px;
}
.float-insta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #b82e7e;
  color: #fff;
  padding: 0;
  box-shadow: 0 10px 24px rgba(15,23,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  z-index: 50;
  left: 1725px;
}
/* Gallery page */
.gallery-body {
  background: var(--bg);
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 14px;
}

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

.gallery-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15,23,42,0.12);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.gallery-card img {
  width: 100%;
  display: block;
  height: 190px;
  object-fit: cover;
}

.card-body {
  padding: 12px 14px 14px;
}

.card-body h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,90,169,0.06);
  color: var(--primary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.empty-state {
  margin-top: 40px;
  text-align: center;
  padding: 30px 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #edf5ff);
  border: 1px dashed #cbd5e1;
}

.admin-toggle {
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
}

#admin-panel {
  display: none;
  margin-top: 24px;
}

.panel-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15,23,42,0.12);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mt-8 {
  margin-top: 8px;
}

.admin-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* Language buttons */
.lang-btn {
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  min-width: 56px;
}

.lang-btn.active {
  border-color: var(--primary);
  background: rgba(0,90,169,0.08);
  color: var(--primary);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
    padding-top: 26px;
  }
  .hero aside:last-child {
    order: -1;
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .process {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .nav {
    gap: 10px;
  }
  .contact-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .grid-gallery {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 720px) {
  nav ul {
    display: none;
  }
  .grid-3 {
    grid-template-columns: minmax(0,1fr);
  }
  .process {
    grid-template-columns: minmax(0,1fr);
  }
  .nav {
    padding-inline: 4px;
  }
  .brand h1 {
    font-size: 16px;
  }
  .btn {
    padding-inline: 14px;
  }
  .grid-gallery {
    grid-template-columns: minmax(0,1fr);
  }
  .p {
    font-weight: bold;
  }
}
.float-ws {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  padding: 0;
  box-shadow: 0 10px 24px rgba(15,23,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  z-index: 50;
}
.float-fb {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2938c4;
  color: #fff;
  padding: 0;
  box-shadow: 0 10px 24px rgba(15,23,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  z-index: 50;
  left: 1790px;
}
.float-insta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #b82e7e;
  color: #fff;
  padding: 0;
  box-shadow: 0 10px 24px rgba(15,23,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  z-index: 50;
  left: 1730px;
}

/* ===== ABOUT + SERVICES ANIMATION CSS ===== */

.services-grid{
  align-items:stretch;
}

.feature{
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  padding:16px;
  border-radius:16px;
  position:relative;
  overflow:hidden;
  transition:transform .5s cubic-bezier(.2,.9,.3,1),
             box-shadow .5s cubic-bezier(.2,.9,.3,1);
}

.feature img{
  transition:transform .6s cubic-bezier(.2,.9,.3,1);
}

.feature::after{
  content:'';
  position:absolute;
  inset:-40% -60%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.12), transparent);
  transform:translateX(-100%);
  transition:transform .8s ease;
}

.feature:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.feature:hover img{
  transform:scale(1.06);
}

.feature:hover::after{
  transform:translateX(120%);
}

.feature h3{
  margin:14px 0 6px;
  transition:transform .35s ease;
}

.feature:hover h3{
  transform:translateY(-4px);
}

.feature p{
  opacity:.85;
  transition:opacity .35s ease, transform .35s ease;
}

.feature:hover p{
  opacity:1;
  transform:translateY(-2px);
}

/* Scroll fade animation */
.fade-up{
  opacity:0;
  transform:translateY(30px);
  transition:all .9s cubic-bezier(.2,.9,.3,1);
}

.fade-up.show{
  opacity:1;
  transform:none;
}

/* Responsive image fix */
@media(max-width:768px){
  .feature img{
    width:100%!important;
    height:auto!important;
  }
}
/* ===== EASY HOME SERVICES (SAFE CUSTOM STYLES) ===== */

.eh-services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.eh-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border-radius:18px;
  padding:18px;
  position:relative;
  overflow:hidden;
  transition:transform .55s cubic-bezier(.2,.9,.3,1),
             box-shadow .55s cubic-bezier(.2,.9,.3,1);
}

.eh-card::after{
  content:'';
  position:absolute;
  inset:-50%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.14), transparent);
  transform:translateX(-120%);
  transition:transform .9s ease;
}

.eh-card:hover{
  transform:translateY(-14px) scale(1.025);
  box-shadow:0 40px 90px rgba(0,0,0,.5);
}

.eh-card:hover::after{
  transform:translateX(120%);
}

.eh-img{
  width:100%;
  height:300px;
  border-radius:14px;
  object-fit:cover;
  transition:transform .6s cubic-bezier(.2,.9,.3,1);
}

.eh-card:hover .eh-img{
  transform:scale(1.08);
}

.eh-title{
  margin:16px 0 8px;
  font-size:20px;
  font-weight:700;
}

.eh-desc{
  font-size:14px;
  line-height:1.55;
  opacity:.85;
  transition:opacity .35s ease, transform .35s ease;
}

.eh-card:hover .eh-desc{
  opacity:1;
  transform:translateY(-3px);
}

/* scroll animation */
.eh-reveal{
  opacity:0;
  transform:translateY(35px);
  transition:all .9s cubic-bezier(.2,.9,.3,1);
}

.eh-reveal.show{
  opacity:1;
  transform:none;
}

/* responsive */
@media(max-width:900px){
  .eh-services{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .eh-services{grid-template-columns:1fr}
  .eh-img{height:240px}
}
.contact-links{
  display:grid;
  gap:8px;
  margin-top:12px;
}

/* FULL CLICK SAFE */
.cl-item{
  position:relative;
  z-index:2;
  pointer-events:auto;

  display:flex;
  align-items:center;
  gap:10px;

  padding:9px 11px;
  border-radius:10px;

  background:#ffffff;
  border:1px solid #edf1f4;
  text-decoration:none;
  color:#0f172a;

  transition:background .2s ease, box-shadow .2s ease;
}

.cl-item:active{
  background:#f8fafc;
}

/* icon — SMALL & CLEAN */
.cl-icon{
  width:30px;
  height:30px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f8fafc;
  font-size:14px;
  flex-shrink:0;
}

/* text */
.cl-text{
  line-height:1.15;
}

.cl-title{
  display:block;
  font-size:13px;
  font-weight:600;
}

.cl-sub{
  display:block;
  font-size:11.5px;
  color:#64748b;
  margin-top:1px;
}

/* PC polish */
@media (min-width:769px){
  .cl-item{
    padding:12px 14px;
    border-radius:12px;
  }
  .cl-icon{
    width:36px;
    height:36px;
    font-size:16px;
  }
}
/* FLOATING BUTTONS */
.eh-float-wrap{
  position:fixed;
  right:14px;
  bottom:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:999;
}

.eh-float{
  width:44px;
  height:44px;
  border-radius:12px;
  background:#ffffff;
  border:1px solid #eef2f5;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 24px rgba(15,23,42,0.12);
  transition:transform .2s ease, box-shadow .2s ease;
}

.eh-float svg{
  width:20px;
  height:20px;
}

.eh-float:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(15,23,42,0.18);
}

/* Brand colors */
.eh-float.ws{color:#22c55e}
.eh-float.fb{color:#1877f2}
.eh-float.ig{color:#e1306c}
/* FOOTER NAV — BUTTON STYLE */
.eh-footer-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
}

.eh-footer-nav a{
  text-decoration:none;
  font-size:13px;
  color:#475569;

  padding:7px 14px;
  border-radius:999px;

  background:#f8fafc;
  border:1px solid #eef2f5;

  transition:all .2s ease;
}

.eh-footer-nav a:hover{
  background:#ffffff;
  border-color:#0ea5a4;
  color:#0ea5a4;
  box-shadow:0 6px 18px rgba(14,165,164,0.12);
}

/* MOBILE — even lighter & compact */
@media (max-width:768px){
  .eh-footer-nav{
    justify-content:center;
  }

  .eh-footer-nav a{
    font-size:12.5px;
    padding:6px 12px;
  }
}
/* HEADER */
/* HEADER */
.eh-header{
  background:#fff;
  border-bottom:1px solid #eaeef3;
  position:sticky;
  top:0;
  z-index:1000;
}

.container.nav{
  max-width:1200px;
  margin:auto;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* DESKTOP (unchanged) */
.nav-right{
  display:flex;
  align-items:center;
  gap:16px;
}

.nav-right ul{
  display:flex;
  gap:14px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-right a{
  font-size:13px;
  color:#334155;
  text-decoration:none;
  padding:4px 0;
  border-bottom:2px solid transparent;
}

.nav-right a:hover{
  border-color:#0ea5a4;
}

/* TOGGLES */
.nav-toggle,
.nav-close{
  display:none;
  background:none;
  border:none;
  font-size:22px;
  cursor:pointer;
}

/* OVERLAY */
.nav-overlay{display:none}

/* ================= MOBILE ================= */
@media (max-width:900px){

  .nav-toggle{display:block}

  /* 🔥 HALF SCREEN MENU */
  .nav-right{
    position:fixed;
    top:-60vh;              /* hidden */
    left:0;
    width:100%;
    height:60vh;            /* 👈 HALF SCREEN */
    background:#fff;

    padding:18px;
    flex-direction:column;
    gap:16px;

    transition:top .35s ease;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    z-index:1001;
  }

  .nav-right.open{
    top:0;                  /* slide down */
  }

  .nav-close{
    display:block;
    align-self:flex-end;
    font-size:20px;
  }

  .nav-right ul{
    flex-direction:column;
    gap:12px;
  }

  .nav-right a{
    border:none;
    font-size:14px;
  }

  #enquireTop{
    margin-top:auto;
    width:100%;
  }

  .nav-overlay{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    opacity:0;
    pointer-events:none;
    transition:.3s;
    z-index:1000;
  }

  .nav-overlay.show{
    opacity:1;
    pointer-events:auto;
  }
}


/* Design system + docs block to keep file rich and self-explanatory */

