@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --blue:       #1D4ED8;
  --blue-light: #3B6FEE;
  --blue-dim:   rgba(29,78,216,0.08);
  --red:        #DC2626;
  --navy:       #0F172A;
  /* Light industrial palette */
  --bg:         #F8FAFC;
  --bg2:        #F1F5F9;
  --bg3:        #E2E8F0;
  --text:       #1E293B;
  --text60:     rgba(30,41,59,0.7);
  --text35:     rgba(30,41,59,0.4);
  --border:     rgba(15,23,42,0.08);
  --card:       #FFFFFF;
  --r:          12px;
  --r-lg:       20px;
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --shadow-sm:  0 4px 12px rgba(15,23,42,.03);
  --shadow-md:  0 12px 32px rgba(15,23,42,.06);
  --shadow-lg:  0 30px 60px rgba(15,23,42,.12);
}

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family:'Inter', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
button { border:none; background:none; cursor:pointer; font-family:inherit; }
.container { width:90%; max-width:1180px; margin:0 auto; }

/* ÔöÇÔöÇ Buttons ÔöÇÔöÇ */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 30px; border-radius:50px; font-weight:600;
  font-size:.9rem; font-family:'Montserrat',sans-serif;
  transition:all .3s var(--ease); border:2px solid transparent;
  letter-spacing:.5px;
}
.btn-primary { background:var(--blue); color:#fff; border-color: var(--blue); }
.btn-primary:hover { background:var(--blue-light); border-color: var(--blue-light); transform:translateY(-2px); box-shadow:0 8px 30px rgba(29,78,216,.2); }
.btn-outline { border-color: #D1D5DB; color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: #fff; transform: translateY(-2px); }
.btn-ghost { border-color:rgba(29,78,216,.25); color:var(--blue); background:var(--blue-dim); }
.btn-ghost:hover { background:rgba(29,78,216,.15); transform:translateY(-2px); }

/* ÔöÇÔöÇ Reveal ÔöÇÔöÇ */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity:1; transform:none; }


/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ MOBILE AVAILABILITY BADGE ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
.nav-avail-badge {
  display: none; /* hidden on desktop ÔÇö shown only via mobile media query */
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 8px;
  border-radius: 50px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-size: 11px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: .15px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Pulsing dot */
.nav-avail-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.nav-avail-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  z-index: 1;
}
.nav-avail-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  opacity: .6;
  animation: availPulse 1.8s ease-out infinite;
}
@keyframes availPulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(2.4); opacity: 0;  }
  100% { transform: scale(2.4); opacity: 0;  }
}
/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ NAV ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
#nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  padding:12px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  transition:all .4s var(--ease);
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.nav-brand { display:flex; align-items:center; }
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-links { display:flex; gap:28px; }
.nav-links a { font-size:.9rem; font-weight:600; color:#444; letter-spacing:.2px; transition:color .3s; position: relative; }
.nav-links a:hover { color:var(--blue); }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0; right: 0;
  height: 2px;
  background: var(--blue);
}
.nav-actions { display:flex; gap:10px; }
.btn-nav-call {
  background: #0D47A1;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}
.btn-nav-call svg { width: 18px; height: 18px; }
.hamburger { display:none; flex-direction:column; gap:5px; padding:4px; }
.hamburger span { display:block; width:22px; height:2px; background:var(--text60); border-radius:2px; transition:.3s; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ HERO ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
#hero {
  min-height: 80vh;
  display: flex;
  align-items: stretch;
  position: relative;
  background: #fff;
  padding-top: 80px;
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  height: 100%;
  width: 100%;
  max-width: 100%;
  gap: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 5% 5% 10%;
  background: #fff;
}

.hero-logo-card {
  margin-bottom: 35px;
  max-width: 340px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
}

.hero-logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.05;
  margin-bottom: 24px; letter-spacing: -2px;
  color: #111;
}

.hero-sub {
  color: #555; font-size: 1.2rem;
  max-width: 500px; margin: 0 0 40px; line-height: 1.6;
  font-weight: 500;
}

.hero-btns { display: flex; gap: 16px; margin-bottom: 48px; }

.btn-primary { 
  background: #0D47A1; color: #fff; border: none;
  padding: 16px 36px; border-radius: 8px; font-size: 1.05rem;
  font-weight: 700;
}
.btn-outline { 
  background: #F3F4F6; color: #333; border: 1px solid #E5E7EB;
  padding: 16px 36px; border-radius: 8px; font-size: 1.05rem;
  font-weight: 700;
}

.hero-image-wrap {
  height: 100%;
  width: 100%;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ÔöÇÔöÇ Features Bar ÔöÇÔöÇ */
.features-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  border: 1px solid #f3f4f6;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 10;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 35px 25px;
  border-right: 1px solid #f3f4f6;
  height: 100%;
}

.feature-item:last-child { border-right: none; }

.feature-icon {
  width: 44px; height: 44px;
  background: #f0f4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.feature-text span {
  font-size: 0.8rem;
  color: var(--text60);
  line-height: 1.3;
  display: block;
}




/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ SECTION SHARED ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
section { padding:96px 0; }
.section-label {
  font-family:'Montserrat',sans-serif; font-size:.72rem;
  font-weight:700; letter-spacing:3px; text-transform:uppercase;
  color:var(--blue); margin-bottom:12px; display:block;
}
.section-h2 {
  font-family:'Montserrat',sans-serif;
  font-size:clamp(1.8rem,3.5vw,2.5rem);
  font-weight:800; letter-spacing:-.3px; line-height:1.15;
  margin-bottom:14px; color:var(--navy);
}
.section-sub { color:var(--text60); font-size:.95rem; line-height:1.8; max-width:540px; }
.section-head { margin-bottom:56px; }
.section-head.center { text-align:center; }
.section-head.center .section-sub { margin:0 auto; }

/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ SERVICES ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
#services { background:var(--bg2); }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.svc-card {
  background:var(--card); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:0;
  transition:all .35s var(--ease); cursor:default; position:relative; overflow:hidden;
  box-shadow:var(--shadow-sm); display:flex; flex-direction:column;
}
.svc-card:hover { transform:translateY(-6px); border-color:rgba(29,78,216,.2); box-shadow:var(--shadow-lg); }
.svc-card:hover .svc-img-wrap img { transform:scale(1.07); }

/* Image banner */
.svc-img-wrap {
  position:relative; height:180px; overflow:hidden;
  border-radius:var(--r-lg) var(--r-lg) 0 0; flex-shrink:0;
}
.svc-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s var(--ease);
}
.svc-img-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(8,16,24,.1) 0%, rgba(8,16,24,.55) 100%);
}
/* Card text body */
.svc-body {
  padding:26px 24px 28px; flex:1; display:flex; flex-direction:column;
}
.svc-card h3 { font-family:'Montserrat',sans-serif; font-weight:700; font-size:1.05rem; margin-bottom:10px; color:var(--navy); }
.svc-card p { color:var(--text60); font-size:.88rem; line-height:1.65; flex:1; }
.svc-card .svc-tag {
  display:inline-block; margin-top:18px;
  font-size:.72rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--blue); font-family:'Montserrat',sans-serif;
}

/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ ABOUT US ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
#about { background:var(--bg); }
.why-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:stretch;
}
.why-list { display:flex; flex-direction:column; gap:24px; }
.why-item { display:flex; gap:18px; align-items:flex-start; }
.why-num {
  flex-shrink:0; width:40px; height:40px; border-radius:10px;
  background:var(--blue-dim); border:1px solid rgba(29,78,216,.2);
  display:flex; align-items:center; justify-content:center;
  font-family:'Montserrat',sans-serif; font-weight:800; font-size:.85rem;
  color:var(--blue);
}
.why-item h4 { font-family:'Montserrat',sans-serif; font-weight:700; font-size:.98rem; margin-bottom:6px; color:var(--navy); }
.why-item p { color:var(--text60); font-size:.87rem; line-height:1.6; }
/* ÔòÉÔòÉ About Visual Column ÔòÉÔòÉ */
.why-visual-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  border: 1px solid var(--border);
}

.why-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Subtle gradient only at the very bottom for owner card readability */
.why-visual-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(5, 12, 30, 0.5) 100%);
  pointer-events: none;
}

.why-visual-overlay { display: none; }

/* Animated stats overlay ÔÇö sits at the bottom of the image */
.why-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px 14px;
  z-index: 4;
  border-radius: 0 0 0 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.why-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  margin-bottom: 12px;
}

.why-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.why-stat-item svg {
  color: #3b82f6;
  margin-bottom: 4px;
}

.why-stat-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.why-stat-item span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.why-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.why-stats-tagline {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
  padding-top: 10px;
  margin: 0;
}

/* Owner identity card ÔÇö solid beige pill */
.owner-card {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #c8b8a2;
  border-radius: 50px;
  padding: 8px 20px 8px 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  z-index: 3;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.owner-avatar-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid #ffffff;
}
.owner-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.owner-card-text { display: flex; flex-direction: column; gap: 2px; }
.owner-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.25;
}
.owner-title {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: .2px;
}

/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ GALLERY ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
#gallery { background:var(--bg2); }
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); grid-template-rows:auto auto; gap:16px; }
.gal-item { border-radius:var(--r); overflow:hidden; position:relative; cursor:pointer; box-shadow:var(--shadow-sm); }
.gal-item:nth-child(1) { grid-row:span 2; }
.gal-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); display:block; }
.gal-item:hover img { transform:scale(1.05); }
.gal-overlay {
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(8,16,24,.75) 0%, transparent 55%);
  display:flex; align-items:flex-end; padding:20px;
  opacity:0; transition:opacity .35s;
}
.gal-item:hover .gal-overlay { opacity:1; }
.gal-tag {
  font-size:.75rem; font-weight:600; letter-spacing:1.5px;
  text-transform:uppercase; color:#fff;
  font-family:'Montserrat',sans-serif;
  background:rgba(29,78,216,.8); padding:5px 14px; border-radius:50px;
}
.gal-item:nth-child(1) { min-height:380px; }
.gal-item:nth-child(n+2) { min-height:180px; }

/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ TESTIMONIALS ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
#testimonials { background:var(--bg); }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.review-card {
  background:var(--card); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:32px 28px;
  transition:all .35s var(--ease); box-shadow:var(--shadow-sm);
}
.review-card:hover { transform:translateY(-4px); border-color:rgba(29,78,216,.2); box-shadow:var(--shadow-lg); }
.review-stars { color:#F59E0B; font-size:1rem; letter-spacing:2px; margin-bottom:16px; }
.review-card blockquote { color:var(--text60); font-size:.9rem; line-height:1.7; font-style:italic; margin-bottom:22px; }
.review-author { display:flex; align-items:center; gap:12px; }
.review-avatar {
  width:40px; height:40px; border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--blue-light));
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.85rem; color:#fff; flex-shrink:0;
}
.review-name { font-weight:600; font-size:.9rem; font-family:'Montserrat',sans-serif; color:var(--navy); }
.review-loc { font-size:.78rem; color:var(--text35); }

/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ EMERGENCY CTA ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
#emergency {
  background-color: #0b1121;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  border-top:1px solid rgba(255,255,255,.06);
}

.emer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.emer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.emer-status-pill .status-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.emer-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.emer-h2 .highlight-blue {
  color: #3b82f6;
}

.emer-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.emer-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 600px;
}

.emer-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.emer-stat-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.emer-stat-item span {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.emer-stat-divider {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
}

.emer-btns-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
}

.emer-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.emer-action-blue {
  background-color: #2b6df5;
  color: #ffffff;
  border: 1px solid #2b6df5;
}

.emer-action-blue:hover {
  background-color: #1e5de6;
}

.emer-action-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.emer-action-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.emer-action-outline svg {
  color: #25d366;
}

.emer-action-btn svg {
  margin-right: 10px;
}

@media(max-width: 768px) {
  .emer-stats {
    flex-direction: column;
    gap: 20px;
  }
  .emer-stat-divider {
    width: 100px;
    height: 1px;
  }
  .emer-btns-wrap {
    flex-direction: column;
  }
}

/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ FOOTER ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
footer {
  background: #0a1628;
  padding: 56px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #94a3b8;
}

/* Logo / tagline bar above grid */
.footer-top-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 44px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  max-width: 440px;
}

/* ÔöÇÔöÇ 3-column contact grid ÔöÇÔöÇ */
.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 44px;
}

/* Shared column styles */
.fc-col { display: flex; flex-direction: column; }
.fc-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 20px;
}

/* ÔöÇÔöÇ Col 1: Social pill buttons ÔöÇÔöÇ */
.fc-social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  color: #cbd5e1;
  font-size: .88rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s, background .2s, color .2s;
  cursor: pointer;
  text-decoration: none;
}
.fc-social-btn svg { flex-shrink: 0; }
/* Brand icon colours */
.fc-ig svg { color: #E4405F; }
.fc-ig:hover { border-color: #E4405F; color: #E4405F; background: rgba(228,64,95,.09); }
.fc-fb svg { color: #1877F2; }
.fc-fb:hover { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,.09); }

/* -- Col 2: Contact rows -- */
.fc-contact-list { display: flex; flex-direction: column; }
.fc-contact-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: #94a3b8;
  font-size: .88rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color .2s;
}
.fc-contact-row:last-child { border-bottom: none; }
.fc-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.15);
  color: #3b82f6;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.fc-contact-text {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.fc-contact-row:hover { color: #e2e8f0; }
.fc-contact-row:hover .fc-icon-box {
  background: rgba(59,130,246,.18);
  border-color: rgba(59,130,246,.35);
}

/* ÔöÇÔöÇ Col 3: Quick Message form ÔöÇÔöÇ */
.fc-form-col { }
.fc-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-form input,
.fc-form textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  color: #e2e8f0;
  font-family: 'Inter', sans-serif;
  font-size: .87rem;
  outline: none;
  transition: border-color .2s;
  resize: none;
}
.fc-form input::placeholder,
.fc-form textarea::placeholder { color: rgba(255,255,255,.28); }
.fc-form input:focus,
.fc-form textarea:focus { border-color: rgba(59,130,246,.5); }
.fc-form button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: #1d4ed8;
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: .87rem;
  letter-spacing: .4px;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.fc-form button:hover { background: #2563eb; }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  letter-spacing: .2px;
}
.footer-copyright strong {
  color: #ffffff;
  font-weight: 600;
}
.footer-bottom-areas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}
.footer-bottom-areas span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: .2px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.footer-bottom-areas span:hover {
  background: var(--blue);
  border-color: var(--blue-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}
.footer-bottom-areas .loc-icon {
  width: 14px;
  height: 14px;
  color: var(--blue-light);
  flex-shrink: 0;
  transition: color 0.3s var(--ease);
}
.footer-bottom-areas span:hover .loc-icon {
  color: #ffffff;
}

/* ÔöÇÔöÇ Responsive ÔöÇÔöÇ */
@media (max-width: 900px) {
  .footer-contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .footer-bottom-areas {
    margin-left: 0;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .footer-top-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-contact-grid { grid-template-columns: 1fr; }
  .fc-form-col { grid-column: unset; }
}

/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ WHATSAPP QUICK CONTACT FORM ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
.fc-wa-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-form-label {
  font-size: .75rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* Chip group */
.fc-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fc-chip {
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #94a3b8;
  font-size: .82rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .18s, background .18s, color .18s;
  user-select: none;
}
.fc-chip:hover {
  border-color: rgba(59,130,246,.45);
  color: #93c5fd;
  background: rgba(59,130,246,.08);
}
.fc-chip.active {
  border-color: #3b82f6;
  background: rgba(59,130,246,.18);
  color: #bfdbfe;
}
/* Urgency chips ÔÇö slightly wider, two-across */
.fc-chip-group--urgency { gap: 8px; }
.fc-chip--urgency { flex: 1; text-align: center; justify-content: center; }
.fc-chip--urgency.active {
  border-color: #f59e0b;
  background: rgba(245,158,11,.14);
  color: #fcd34d;
}
/* Service list toggle button */
.fc-service-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: #94a3b8;
  font-size: .87rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  text-align: left;
}
.fc-service-toggle:hover {
  border-color: rgba(59,130,246,.4);
  color: #bfdbfe;
  background: rgba(59,130,246,.07);
}
.fc-service-toggle[aria-expanded="true"] {
  border-color: rgba(59,130,246,.5);
  color: #bfdbfe;
  background: rgba(59,130,246,.1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-toggle-arrow {
  flex-shrink: 0;
  transition: transform .25s ease;
}
.fc-service-toggle[aria-expanded="true"] .fc-toggle-arrow {
  transform: rotate(180deg);
}
.fc-service-toggle-label { flex: 1; }
/* Scrollable service list */
.fc-service-scroll--hidden { max-height: 0 !important; border-top: none; border-top-left-radius: 0; border-top-right-radius: 0; overflow: hidden; transition: max-height .3s ease, opacity .3s ease; opacity: 0; margin-bottom: 0; }
.fc-service-scroll--open { max-height: 200px !important; opacity: 1; border-top-left-radius: 0; border-top-right-radius: 0; }
.fc-service-scroll {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 168px;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  scrollbar-width: thin;
  scrollbar-color: rgba(59,130,246,.3) transparent;
}
.fc-service-scroll::-webkit-scrollbar { width: 4px; }
.fc-service-scroll::-webkit-scrollbar-thumb { background: rgba(59,130,246,.35); border-radius: 4px; }
.fc-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: transparent;
  color: #94a3b8;
  font-size: .85rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background .15s, color .15s;
}
.fc-service-item:last-child { border-bottom: none; }
.fc-service-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(59,130,246,.35);
  flex-shrink: 0;
  transition: background .15s;
}
.fc-service-item:hover { background: rgba(59,130,246,.07); color: #bfdbfe; }
.fc-service-item:hover::before { background: #3b82f6; }
.fc-service-item.active { background: rgba(59,130,246,.14); color: #bfdbfe; }
.fc-service-item.active::before { background: #3b82f6; }


/* Phone input */
.fc-wa-input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  color: #e2e8f0;
  font-family: 'Inter', sans-serif;
  font-size: .87rem;
  outline: none;
  transition: border-color .2s;
}
.fc-wa-input::placeholder { color: rgba(255,255,255,.28); }
.fc-wa-input:focus { border-color: rgba(59,130,246,.5); }

/* Send via WhatsApp button */
.fc-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  margin-top: 4px;
  border-radius: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .3px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  user-select: none;
}
.fc-wa-btn:hover { background: #1fb055; transform: translateY(-1px); }
.fc-wa-btn:active { transform: translateY(0); }
/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ WHATSAPP FAB ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
.wa-fab {
  position:fixed; bottom:28px; right:28px;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; z-index:150; box-shadow:0 4px 20px rgba(37,211,102,.4);
  transition:transform .3s var(--ease);
  animation:waPulse 2.5s ease-in-out infinite;
}
.wa-fab:hover { transform:scale(1.1); }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 36px rgba(37,211,102,.65)} }

/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ RESPONSIVE ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
@media(max-width:1200px){
}

@media(max-width:1024px){
  /* Hero */
  #hero { min-height: auto; padding-top: 80px; padding-bottom: 40px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { align-items: center; text-align: center; padding: 40px 5% 30px; }
  .hero-logo-card { max-width: 260px; margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; flex-wrap: wrap; }
  .hero-image-wrap { min-height: 360px; order: -1; }
  .hero-image-wrap img { border-radius: 0; }
  /* Features */
  .features-bar { grid-template-columns: 1fr 1fr; width: 95%; margin: 30px auto 0; border-radius: 16px; }
  .feature-item { border-right: none; border-bottom: 1px solid #f3f4f6; padding: 22px 20px; }
  .feature-item:nth-child(odd) { border-right: 1px solid #f3f4f6; }
  .feature-item:nth-last-child(-n+2) { border-bottom: none; }
  /* About */
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual-wrap { width: 100%; }
  .why-visual { height: 420px; border-radius: 20px; }
  /* Services / Gallery / Testimonials */
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  /* Footer */
}

@media(max-width:768px){
  /* Features */
  .features-bar { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; border-bottom: 1px solid #f3f4f6; }
  .feature-item:last-child { border-bottom: none; }
  /* Hero */
  .hero-h1 { font-size: clamp(2rem, 7vw, 2.8rem); letter-spacing: -1px; }
  .hero-sub { font-size: 1rem; }
  .btn-primary, .btn-outline { padding: 14px 24px; font-size: 0.95rem; }
  section { padding: 64px 0; }
  /* Nav */
  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: fixed; inset: 0; background: rgba(248,250,252,.97);
    backdrop-filter: blur(20px); z-index: 190; gap: 28px;
  }
  .nav-links.open a { font-size: 1.15rem; color: var(--navy); }
  .hamburger { display: flex; z-index: 210; }
  /* Availability badge ÔÇö show on mobile, centred between logo and hamburger */
  .nav-inner { justify-content: space-between; }
  .nav-avail-badge { display: flex; order: 2; }
  .nav-brand { order: 1; }
  .hamburger { order: 3; }

  /* Grids */
  .services-grid, .reviews-grid, .gallery-grid { grid-template-columns: 1fr; }
  .svc-img-wrap { height: 200px; }
  .gallery-grid .gal-item:nth-child(1) { grid-row: span 1; }
  /* About */
  .why-badge-stats-row { gap: 4px; }
  .why-badge-stat strong { font-size: 1.4rem; }
  /* Footer */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .footer-bottom-areas {
    margin-left: 0;
    justify-content: center;
  }
  /* WhatsApp FAB */
  .wa-fab { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

@media(max-width:480px){
  /* Hero */
  .hero-content { padding: 30px 4% 24px; }
  .hero-logo-card { max-width: 200px; }
  .hero-h1 { font-size: 1.9rem; letter-spacing: -0.5px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; justify-content: center; }
  /* Features */
  .feature-icon { width: 38px; height: 38px; }
  .feature-text strong { font-size: 0.88rem; }
  /* About */
  .why-visual { height: 360px; border-radius: 16px; }
  .why-stat-item strong { font-size: 1.5rem; }
  .why-stats-overlay { padding: 14px 16px 10px; }
  /* Section headings */
  .section-h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  /* Emergency */
  .emer-btns-wrap { flex-direction: column; align-items: stretch; }
  .emer-action-btn { text-align: center; }
}

@media(max-width:360px){
  .container { padding-inline: 16px; }
  .hero-h1 { font-size: 1.7rem; }
  .nav-logo-img { height: 40px; }
}

/* ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ REDUCED MOTION ÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉÔòÉ */
@media(prefers-reduced-motion:reduce){
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}

