/* ============================================
   Sahithi Safety Nets & Invisible Grills
   CSS - Mobile First Design System
   Hyderabad, Hyderabad
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@400;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #0d7a8a;
  --primary-dark: #085f6d;
  --primary-light: #1aa3b8;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --white: #ffffff;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --gray: #64748b;
  --gray-light: #f1f5f9;
  --green: #25d366;
  --call-red: #e53935;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font: 'Poppins', sans-serif;
  --font-alt: 'Montserrat', sans-serif;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  outline: none;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-alt);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
}

h2 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

h3 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
}

h4 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---- Containers ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 2.5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13, 122, 138, 0.3);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-call {
  background: var(--call-red);
  color: #fff;
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.btn-call:hover {
  background: #c62828;
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.btn-whatsapp:hover {
  background: #1ebe57;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  box-sizing: border-box;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 8px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text .brand-name {
  font-family: var(--font-alt);
  font-size: clamp(0.8rem, 2.5vw, 1.1rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  white-space: nowrap;
}

.logo-text .brand-sub {
  font-size: clamp(0.55rem, 1.5vw, 0.65rem);
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Call Button (always visible) */
.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--call-red);
  color: #fff;
  padding: 0.38rem 0.7rem;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-call-btn:hover {
  background: var(--primary-dark);
}

/* Mobile Menu */
.nav-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 1rem;
  border-top: 1px solid #e2e8f0;
  gap: 0;
}

.nav-menu.open {
  display: flex;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid #f1f5f9;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link .arrow {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.nav-item.submenu-open .arrow {
  transform: rotate(180deg);
}

.dropdown {
  display: none;
  flex-direction: column;
  background: var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  margin: 0.25rem 0 0.5rem 1rem;
}

.nav-item.submenu-open .dropdown {
  display: flex;
}

.dropdown-link {
  padding: 0.6rem 1rem;
  font-size: 0.84rem;
  color: var(--dark-2);
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.2s, color 0.2s;
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  background: var(--primary);
  color: #fff;
}

/* Desktop Nav */
@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex !important;
    flex-direction: row;
    background: none;
    border: none;
    padding: 0;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-item {
    position: relative;
  }

  .nav-link {
    padding: 0.5rem 0.75rem;
    border-bottom: none;
    border-radius: 6px;
    font-size: 0.85rem;
  }

  .nav-link:hover {
    background: var(--gray-light);
  }

  .dropdown {
    display: none !important;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 240px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    margin: 0;
    z-index: 200;
    border: 1px solid #e2e8f0;
  }

  .dropdown-link {
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
  }

  .nav-item:hover .dropdown {
    display: flex !important;
  }

  .nav-item.submenu-open .dropdown {
    display: flex !important;
  }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 60vw;
  max-height: 620px;
  min-height: 260px;
  overflow: hidden;
  margin-top: 68px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.watermark-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  width: 90%;
  z-index: 5;
  animation: fadeDown 0.8s ease;
}

.watermark-text h1 {
  font-size: clamp(1.2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.watermark-text p {
  font-size: clamp(0.75rem, 2.5vw, 1.1rem);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 0.8rem;
}

.watermark-text .hero-btns {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 0.5rem;
}

.watermark-text .hero-btns .btn {
  padding: 0.45rem 0.9rem;
  font-size: clamp(0.65rem, 1.8vw, 0.85rem);
  border-radius: 50px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* ============================================
   ENQUIRY FORM
   ============================================ */
.enquiry-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

.enquiry-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.enquiry-inner h2 {
  color: #fff;
  margin-bottom: 1.2rem;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
}

.enquiry-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  flex: 1 1 200px;
  max-width: 340px;
  width: 100%;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  box-sizing: border-box;
}

.enquiry-form textarea {
  min-height: 80px;
  resize: none;
}

.enquiry-form .btn-accent {
  padding: 0.75rem 1.8rem;
  font-size: 0.9rem;
  border-radius: 8px;
  flex: 0 0 auto;
}

/* ============================================
   GALLERY / ENQUIRY IMAGES
   ============================================ */
.gallery-section {
  padding: 2rem 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.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.4s ease;
}

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

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
/* hidden-xs: hide text on tiny screens */
.hidden-xs {
  display: none;
}

@media (min-width: 480px) {
  .hidden-xs {
    display: inline;
  }
}

.services-section {
  padding: 2rem 0.5rem;
  background: var(--dark);
}

.services-section .section-title {
  color: #fff;
}

.services-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: #1e293b;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: brightness(0.85);
}

.service-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.5);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.75rem;
  transition: var(--transition);
}

.service-card-name {
  color: #fff;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: clamp(0.68rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.service-card-actions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card-actions {
  opacity: 1;
}

.service-card.touch-active .service-card-actions {
  opacity: 1;
}

.service-card.touch-active img {
  transform: scale(1.08);
  filter: brightness(0.5);
}

.action-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  transition: transform 0.2s;
  text-decoration: none;
}

.action-icon:hover {
  transform: scale(1.15);
}

.action-icon.call {
  background: var(--call-red);
}

.action-icon.whatsapp {
  background: var(--green);
}

.action-icon.email {
  background: #f59e0b;
}

.service-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  padding: 0.3rem 0.65rem;
  font-size: clamp(0.62rem, 1.8vw, 0.78rem);
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.35rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.service-call-btn:hover {
  background: #1ebe57;
}

@media (min-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    aspect-ratio: 4/5;
  }
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    aspect-ratio: 3/4;
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-card {
    aspect-ratio: 3/4;
  }
}

/* ============================================
   SERVICE DETAIL CARDS
   ============================================ */
.service-detail-section {
  padding: 2.5rem 1rem;
  background: #f8fafc;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.detail-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.detail-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.detail-card-body {
  padding: 1.1rem;
}

.detail-card-body h3 {
  color: var(--primary-dark);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-card-body p {
  font-size: 0.84rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.detail-card-rating {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.detail-card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.detail-card-actions .call-text {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
}

.detail-card-actions .btn-more {
  background: var(--primary);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.detail-card-actions .btn-more:hover {
  background: var(--primary-dark);
}

@media (min-width: 600px) {
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .detail-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us-section {
  padding: 2.5rem 1rem;
  background: var(--dark-2);
}

.why-us-section .section-title {
  color: #fff;
}

.why-us-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.stat-number {
  display: block;
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-alt);
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

.feature-content h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 2.5rem 1rem;
}

.testimonials-section .section-title {
  color: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.85rem;
  color: var(--gray);
  italic;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 600;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--gray);
}

@media (min-width: 600px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 2.5rem 1rem;
  background: var(--gray-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact-info-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

.contact-detail a,
.contact-detail span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-detail a:hover {
  color: var(--primary);
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.form-group {
  margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.88rem;
  outline: none;
  transition: border 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
  }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
/* Floating Buttons - HIDDEN on mobile to avoid overlapping service cards */
.floating-buttons {
  display: none;
}

@media (min-width: 900px) {
  .floating-buttons {
    display: flex;
    position: fixed;
    right: 16px;
    bottom: 24px;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
  }
}

.float-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  position: relative;
}

@media (min-width: 900px) {
  .float-btn {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.float-btn.call {
  background: var(--call-red);
}

.float-btn.whatsapp {
  background: var(--green);
}

.float-btn.email {
  background: var(--accent);
}

.float-btn .tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.float-btn:hover .tooltip {
  opacity: 1;
}

/* Fixed bottom call bar on mobile */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.9rem 0;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: filter 0.2s;
}

.mobile-cta-bar a:hover {
  filter: brightness(0.9);
}

.mobile-cta-bar .call-cta {
  background: var(--call-red);
}

.mobile-cta-bar .whatsapp-cta {
  background: var(--green);
}

@media (min-width: 900px) {
  .mobile-cta-bar {
    display: none;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 1rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand .brand-name {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-contact h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
  color: var(--primary-light);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */
.page-hero {
  position: relative;
  height: 220px;
  margin-top: 72px;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.page-hero-overlay h1 {
  color: #fff;
  font-size: clamp(1.3rem, 4vw, 2rem);
}

.page-hero-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.breadcrumb {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.65);
}

.service-detail-page {
  padding: 2rem 1rem;
}

.service-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-info-main img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  max-height: 300px;
}

.service-info-main h2 {
  color: var(--primary-dark);
  margin: 1rem 0 0.5rem;
}

.service-info-main p {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.service-benefits {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1rem 1rem 1rem 1.5rem;
}

.service-benefits li {
  font-size: 0.85rem;
  color: var(--dark-2);
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1rem;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: -0.5rem;
  color: var(--primary);
  font-weight: 700;
}

.service-cta-bar {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.service-cta-bar h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.service-cta-bar .cta-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service-cta-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-cta-btn.call {
  background: #fff;
  color: var(--call-red);
}

.service-cta-btn.whatsapp {
  background: var(--green);
  color: #fff;
}

.service-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (min-width: 900px) {
  .service-info-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .page-hero {
    height: 350px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.slide-up {
  transform: translateY(30px);
}

.animate.slide-left {
  transform: translateX(-30px);
}

.animate.slide-right {
  transform: translateX(30px);
}

.animate.visible {
  opacity: 1;
  transform: none;
}

.pulse-anim {
  animation: pulse 2.5s ease infinite;
}

/* ============================================
   UTILITY
   ============================================ */
.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.bg-light {
  background: var(--gray-light);
}

.hidden {
  display: none !important;
}

.d-flex {
  display: flex;
}

.gap-1 {
  gap: 0.5rem;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.mt-2 {
  margin-top: 1rem;
}

.fw-bold {
  font-weight: 700;
}

.pb-body {
  padding-bottom: 60px;
}

/* for mobile CTA bar */

/* Mobile WhatsApp floating button — bottom right, above CTA bar, only on MOBILE */
.mobile-wa-float {
  display: flex;
  position: fixed;
  bottom: 56px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 997;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.2s;
}

.mobile-wa-float:active {
  transform: scale(0.92);
}

@media (min-width: 900px) {
  .mobile-wa-float {
    display: none;
  }
}

/* Wider screens: more gap in service grid */
@media (min-width: 480px) {
  .services-section {
    padding: 2.5rem 1rem;
  }

  .services-grid {
    gap: 0.65rem;
  }
}

@media (min-width: 900px) {
  .services-grid {
    gap: 1rem;
  }
}

/* ============================================
   FULL-WIDTH FIX — Prevents left-alignment on desktop/laptop
   All major layout wrappers MUST span 100% width
   ============================================ */

/* Root-level: ensure the document always fills the full viewport */
html {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  /* keeps pb-body padding-bottom intact */
}

/* Container: centered content block inside every section */
.container {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  box-sizing: border-box !important;
}

/* Every section and wrapper stretches full width */
.navbar,
.hero-slider,
.enquiry-section,
.gallery-section,
.services-section,
.detail-section,
.service-detail-section,
.why-us-section,
.about-section,
.testimonials-section,
.contact-section,
.footer,
.mobile-cta-bar,
.page-hero,
.service-detail-page,
section {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  left: 0 !important;
  right: 0 !important;
  position: relative; /* overridden by fixed/absolute where needed */
}

/* navbar is fixed — restore correct positioning */
.navbar {
  position: fixed !important;
}

/* Enquiry inner must stay centered */
.enquiry-inner {
  width: 100% !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

/* Nav wrapper stays centered inside full-width navbar */
.nav-wrapper {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

/* Prevent any child element from causing horizontal scroll */
* {
  min-width: 0;
}

/* Float buttons: hide on mobile, show on desktop */
.floating-buttons {
  display: none !important;
}
@media (min-width: 900px) {
  .floating-buttons {
    display: flex !important;
    position: fixed;
    right: 18px;
    bottom: 28px;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
  }
  .float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.25s ease;
    text-decoration: none;
    position: relative;
  }
  .float-btn.call  { background: var(--call-red); }
  .float-btn.whatsapp { background: var(--green); }
  .float-btn.email { background: var(--accent); }
  .float-btn:hover { transform: scale(1.12); }
  .float-btn .tooltip {
    position: absolute;
    right: calc(100% + 10px);
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.72rem;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  .float-btn:hover .tooltip { opacity: 1; }
}

/* Mobile WhatsApp float button: show only mobile */
.mobile-wa-float {
  display: flex;
  position: fixed;
  bottom: 58px;
  right: 10px;
  z-index: 997;
}
@media (min-width: 900px) {
  .mobile-wa-float { display: none !important; }
}

/* Desktop grid breakpoints */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .service-card { aspect-ratio: 3/4; }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .detail-grid  { grid-template-columns: repeat(3, 1fr); }
  .stats-grid   { grid-template-columns: repeat(4, 1fr); }
}

/* Ensure body doesn't have pb-body padding on desktop (handled by mobile only) */
@media (min-width: 900px) {
  .pb-body { padding-bottom: 0 !important; }
  .mobile-cta-bar { display: none !important; }
}

/* ============================================
   RESPONSIVE FULL-WIDTH — Final safety net
   Ensures the layout fills every screen size
   from 320px mobile to 2560px widescreen
   ============================================ */

/* Fluid section widths at all breakpoints */
@media screen and (max-width: 480px) {
  html, body {
    width: 100vw !important;
    overflow-x: hidden !important;
  }
  .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .enquiry-section {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .enquiry-form {
    flex-direction: column;
    align-items: stretch;
  }
  .enquiry-form input,
  .enquiry-form select,
  .enquiry-form textarea {
    max-width: 100%;
    flex: 1 1 auto;
  }
}

@media screen and (min-width: 481px) and (max-width: 900px) {
  html, body {
    width: 100vw !important;
    overflow-x: hidden !important;
  }
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media screen and (min-width: 901px) {
  html, body {
    width: 100% !important;
    overflow-x: hidden !important;
  }
  .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  section,
  .navbar,
  .hero-slider,
  .footer,
  .enquiry-section,
  .mobile-cta-bar {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px !important;
  }
}

/* ============================================
   IMAGE + CONTENT ALTERNATING SECTIONS
   ============================================ */
.image-content-section {
  width: 100%;
  box-sizing: border-box;
}

.img-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.img-content-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: block;
}

.img-content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.img-content-text h2 {
  font-size: clamp(1.3rem, 4vw, 2rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}

/* Desktop: two-column side by side */
@media (min-width: 768px) {
  .img-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  /* Reverse layout: image right, text left */
  .img-content-grid.img-content-reverse .img-content-img {
    order: 2;
  }
  .img-content-grid.img-content-reverse .img-content-text {
    order: 1;
  }
}

@media (max-width: 767px) {
  /* On mobile always show image first */
  .img-content-img { order: 1; }
  .img-content-text { order: 2; }
  .img-content-grid.img-content-reverse .img-content-img { order: 1; }
  .img-content-grid.img-content-reverse .img-content-text { order: 2; }
}


/* --- Variables --- */
:root {
  --white: #ffffff;
  --blue: #0056b3;     /* Your primary brand blue */
  --orange: #ff6b00;   /* Your primary brand orange */
  --text-dark: #333333;
}

/* --- About Us Typography & Labels --- */
.tag-label {
  display: inline-block;
  background: rgba(0, 86, 179, 0.1);
  color: var(--blue);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: var(--text-dark);
}

.section-line {
  display: flex;
  margin-bottom: 20px;
}

.section-line span {
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover { background: #004494; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover { background: #e66000; }

.btn-white {
  background: var(--white);
  color: var(--blue);
}

.btn-white:hover { background: #f1f1f1; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue);
}

/* --- Invisible Grills Banner --- */
.ig-banner {
  background: linear-gradient(135deg, var(--blue), #003d82);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}

.ig-banner h2 {
  font-size: 2.2rem;
  margin: 0 0 15px 0;
  color: var(--white);
}

.ig-banner h2 span {
  color: var(--orange);
}

.ig-tag {
  background: red;
  color: white;
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 10px;
  animation: pulse 1.5s infinite;
}

.ig-banner p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.ig-banner-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* --- Stats Section --- */
.stat-item {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Gives the white boxes a nice shadow */
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-num {
  /* Font size and color are handled inline in your HTML, this is just a backup */
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-dark);
}

/* This makes the stats grid 4 columns wide on computer screens instead of 2 */
@media (min-width: 768px) {
  .section .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: repeat(4, 1fr) !important; 
  }
}