@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Bebas Neue', var(--font-sans);

  /* HSL Colors */
  --background: 40 15% 98%;          /* Light off-white */
  --foreground: 220 20% 16%;         /* Dark Charcoal */
  --card: 0 0% 100%;                 /* Clean White */
  --card-foreground: 220 20% 16%;
  --popover: 0 0% 100%;
  --popover-foreground: 220 20% 16%;
  --primary: 220 22% 12%;            /* Deep Charcoal/Navy */
  --primary-foreground: 40 15% 98%;
  --secondary: 220 12% 95%;          /* Cool light gray */
  --secondary-foreground: 220 20% 16%;
  --muted: 220 12% 95%;
  --muted-foreground: 220 10% 50%;
  --accent: 38 92% 54%;              /* Vibrant Amber/Orange */
  --accent-foreground: 220 22% 12%;
  --destructive: 350 80% 55%;
  --border: 220 12% 90%;
  --input: 220 12% 90%;
  --ring: 38 92% 54%;
  --radius: 0.625rem;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Base resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}

p {
  line-height: 1.6;
}

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

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

/* Utilities */
.container {
  width: 100%;
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-accent {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: 0 0 18px -4px hsl(var(--accent) / 0.5);
}

.btn-accent:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 22px -2px hsl(var(--accent) / 0.7);
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background-color: hsl(var(--primary) / 0.9);
}

.btn-outline {
  border-color: hsl(var(--border));
  background-color: transparent;
}

.btn-outline:hover {
  border-color: hsl(var(--accent));
  color: hsl(var(--accent));
  background-color: hsl(var(--accent) / 0.05);
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background-color: transparent;
}

.btn-outline-white:hover {
  border-color: hsl(var(--accent));
  color: hsl(var(--accent));
  background-color: rgba(255, 255, 255, 0.05);
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid transparent;
  background-color: hsl(var(--background));
  transition: all 0.3s ease;
}

header.scrolled {
  border-bottom-color: hsl(var(--border));
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.top-bar {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  padding: 0.4rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-phones {
  display: flex;
  gap: 1rem;
}

.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.top-bar-phone:hover {
  color: hsl(var(--accent));
}

.main-nav-container {
  padding: 0.75rem 0;
}

.main-nav-container .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

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

/* Dropdown */
.nav-dropdown-group {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s ease;
}

.nav-dropdown-group:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 16rem;
  padding-top: 0.5rem;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}

.nav-dropdown-group:hover .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-inner {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: var(--shadow-xl);
  max-height: 24rem;
  overflow-y: auto;
}

.nav-dropdown-item {
  display: block;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hamburger */
.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: transparent;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-nav-toggle {
    display: none;
  }
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  padding: 1rem 0;
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-drawer.open {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

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

.mobile-nav-link.active {
  color: hsl(var(--accent));
}

.mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.mobile-dropdown-sublinks {
  display: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
  border-left: 2px solid hsl(var(--accent) / 0.5);
  margin-bottom: 0.5rem;
}

.mobile-dropdown-sublinks.open {
  display: block;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.mobile-dropdown-item:hover {
  color: hsl(var(--accent));
}

/* Section Headings */
.section-heading {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem auto;
}

.section-heading.left {
  text-align: left;
  margin-left: 0;
  margin-bottom: 1.5rem;
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--accent));
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  color: inherit;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-desc {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  text-pretty: true;
}

.light-theme-text {
  color: #fff;
}

.light-theme-text .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 0;
  }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-cover: cover;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--primary)) 0%, hsl(var(--primary) / 0.85) 50%, hsl(var(--primary) / 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--accent) / 0.4);
  background-color: hsl(var(--accent) / 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--accent));
}

.hero-title {
  font-size: 3rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
  max-width: 56rem;
  text-balance: true;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-desc {
  font-size: 1.125rem;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.8);
  text-pretty: true;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: auto;
  }
}

.stat-item-val {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: hsl(var(--accent));
}

.stat-item-lbl {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Sections template structure */
section.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  section.py-20 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.bg-secondary-section {
  background-color: hsl(var(--secondary));
}

.bg-primary-section {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* About Home Layout */
.about-home-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .about-home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-img-shift {
  margin-top: 2rem;
}

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

@media (min-width: 640px) {
  .about-bullets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.bullet-item {
  display: flex;
  gap: 0.75rem;
}

.bullet-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: var(--radius);
  background-color: hsl(var(--accent) / 0.15);
  color: hsl(var(--accent));
}

.bullet-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.bullet-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--accent));
  transition: all 0.2s ease;
}

.about-link:hover {
  text-decoration: underline;
}

/* Products Grid */
.products-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--accent) / 0.5);
  box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  flex-grow: 1;
}

.product-name {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.product-tagline {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.product-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--accent));
  margin-top: 0.5rem;
  align-self: flex-start;
}

.product-more-btn svg {
  transition: transform 0.2s ease;
}

.product-card:hover .product-more-btn svg {
  transform: translateX(3px);
}

/* Why Choose Us Grid */
.reasons-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.reason-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  transition: border-color 0.2s ease;
}

.reason-card:hover {
  border-color: hsl(var(--accent) / 0.5);
}

.reason-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  background-color: hsl(var(--accent) / 0.15);
  color: hsl(var(--accent));
  flex-shrink: 0;
}

.reason-title {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Industries Section */
.industries-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.industry-tag {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.industry-tag:hover {
  border-color: hsl(var(--accent));
  color: hsl(var(--accent));
}

/* Home Gallery Preview */
.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.gallery-preview-item {
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-preview-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  aspect-ratio: 1;
}

.gallery-preview-item.large .gallery-preview-img {
  aspect-ratio: auto;
  height: 100%;
}

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

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  padding: 1.5rem;
}

.testimonial-quote-icon {
  font-size: 2rem;
  line-height: 1;
  color: hsl(var(--accent) / 0.25);
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
  color: hsl(var(--accent));
}

.testimonial-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  flex-grow: 1;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-author-role {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

/* Page Hero */
.page-hero {
  position: relative;
  overflow: hidden;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 4rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 5rem 0;
  }
}

.page-hero-title {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 3.5rem;
  }
}

.page-hero-subtitle {
  font-size: 1rem;
  max-width: 38rem;
  margin: 0 auto 1.5rem auto;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

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

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Process Section */
.process-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: hsl(var(--accent) / 0.4);
}

.process-step-title {
  font-size: 1.25rem;
}

.process-step-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Enquiry Form Section */
.enquiry-section {
  display: grid;
  align-items: flex-start;
  gap: 2.5rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .enquiry-section {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .enquiry-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.enquiry-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.enquiry-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.enquiry-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.enquiry-contact-link:hover {
  color: hsl(var(--accent));
}

.enquiry-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background-color: hsl(var(--accent) / 0.15);
  color: hsl(var(--accent));
}

/* Form Styling */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

@media (min-width: 640px) {
  .form-grid.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-input {
  height: 2.75rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--input));
  background-color: hsl(var(--background));
  padding: 0 0.875rem;
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s ease;
}

textarea.form-input {
  height: auto;
  padding: 0.65rem 0.875rem;
}

.form-input:focus {
  border-color: hsl(var(--accent));
  box-shadow: 0 0 0 2px hsl(var(--accent) / 0.2);
}

.form-required-star {
  color: hsl(var(--accent));
}

.form-success-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  border: 1px dashed hsl(var(--accent) / 0.4);
  background-color: hsl(var(--accent) / 0.05);
  border-radius: var(--radius);
  padding: 2.5rem;
  animation: fadeIn 0.4s ease forwards;
}

.form-success-icon {
  color: hsl(var(--accent));
  width: 2.75rem;
  height: 2.75rem;
}

/* Service Info boxes in About */
.about-extra-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .about-extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-extra-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  padding: 2rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.gallery-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  width: 100%;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background) / 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(var(--background) / 0.9);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background-color: hsl(var(--card));
  color: hsl(var(--foreground));
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.05);
}

.lightbox-content {
  position: relative;
  width: 100%;
  max-width: 56rem;
  height: 70vh;
}

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

/* Products Detail Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: hsl(var(--card));
  border-radius: calc(var(--radius) * 1.5);
  border: 1px solid hsl(var(--border));
  width: 100%;
  max-width: 48rem;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: hsl(var(--card));
  z-index: 10;
}

.modal-title {
  font-size: 1.75rem;
}

.modal-close {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

.modal-close:hover {
  background-color: hsl(var(--secondary));
}

.modal-body {
  padding: 1.5rem;
}

.modal-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.modal-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.modal-lists-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .modal-lists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.modal-list-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid hsl(var(--accent) / 0.3);
  padding-bottom: 0.25rem;
  display: inline-block;
}

.modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.modal-list-item-icon {
  color: hsl(var(--accent));
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Blog styles */
.blog-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--accent) / 0.5);
  box-shadow: var(--shadow-lg);
}

.blog-img-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.blog-category {
  color: hsl(var(--accent));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-title {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
}

.blog-excerpt {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* Single Blog Post View */
.blog-post-view {
  max-width: 44rem;
  margin: 0 auto;
}

.blog-post-header {
  margin-bottom: 2rem;
  text-align: center;
}

.blog-post-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .blog-post-title {
    font-size: 3.25rem;
  }
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.blog-post-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: calc(var(--radius) * 1.5);
  margin-bottom: 2rem;
}

.blog-post-content {
  font-size: 1rem;
  line-height: 1.8;
  color: hsl(var(--foreground));
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.blog-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--accent));
}

/* Contact Details Page */
.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1.8fr;
  }
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-card {
  display: flex;
  gap: 1rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  padding: 1.5rem;
  border-radius: var(--radius);
}

.contact-detail-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  background-color: hsl(var(--accent) / 0.15);
  color: hsl(var(--accent));
  flex-shrink: 0;
}

.contact-detail-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-detail-content {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Floating Actions Button Container */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  color: white;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.floating-action-btn:hover {
  transform: scale(1.1);
}

.floating-action-btn.whatsapp {
  background-color: #25D366;
}

.floating-action-btn.call {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: 0 0 16px hsl(var(--accent) / 0.5);
  position: relative;
}

.floating-action-btn.call::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  border: 4px solid hsl(var(--accent) / 0.3);
  pointer-events: none;
}

.floating-action-btn.email {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

@media (min-width: 640px) {
  .floating-action-btn.email {
    display: none; /* Hide email float button on tablet+ */
  }
}

/* Footer styling */
footer {
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

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

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 20rem;
}

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

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.2s ease;
}

.footer-social-btn:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.875rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: hsl(var(--accent));
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact-item.bold {
  color: #fff;
  font-weight: 600;
}

.footer-contact-item svg {
  color: hsl(var(--accent));
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-contact-item a:hover {
  color: hsl(var(--accent));
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-bottom-seo {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-bottom-copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =============================================
   Services Page — Image Card Grid
   ============================================= */

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

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

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

.service-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: hsl(var(--accent) / 0.5);
  box-shadow: var(--shadow-lg);
}

.service-card-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.07);
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsl(var(--primary) / 0.1) 0%,
    hsl(var(--primary) / 0.5) 100%
  );
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card-img-overlay {
  opacity: 0.75;
}

.service-card-icon-badge {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: 0 0 16px -2px hsl(var(--accent) / 0.6);
  transition: transform 0.2s ease;
}

.service-card:hover .service-card-icon-badge {
  transform: scale(1.1);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.25rem 1.5rem;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: hsl(var(--foreground));
}

.service-card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--accent));
  transition: gap 0.2s ease;
  align-self: flex-start;
}

.service-card-link:hover {
  gap: 0.6rem;
}

/* =============================================
   Home & Products — Rounded Services Section
   ============================================= */

.services-rounded-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
}

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

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

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

@media (min-width: 1280px) {
  .services-rounded-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.service-rounded-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 9999px; /* Fully rounded pill shape */
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-rounded-card:hover {
  transform: translateY(-3px);
  border-color: hsl(var(--accent) / 0.5);
  background-color: hsl(var(--card));
  box-shadow: 0 8px 16px -4px hsl(var(--accent) / 0.15), var(--shadow-md);
}

.service-rounded-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: hsl(var(--accent) / 0.12);
  color: hsl(var(--accent));
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-rounded-icon svg, .service-rounded-icon i {
  width: 1.1rem !important;
  height: 1.1rem !important;
}

.service-rounded-card:hover .service-rounded-icon {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  transform: scale(1.05);
}

.service-rounded-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: color 0.2s ease;
  line-height: 1.2;
}

.service-rounded-card:hover .service-rounded-name {
  color: hsl(var(--accent));
}

/* =============================================
   Hero Banner — Product Pills Section
   ============================================= */

.hero-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 48rem;
}

.hero-product-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.hero-product-pill:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-color: hsl(var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px hsl(var(--accent) / 0.4);
}

.hero-product-pill svg, .hero-product-pill i {
  color: hsl(var(--accent));
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-product-pill:hover svg, .hero-product-pill:hover i {
  color: hsl(var(--accent-foreground));
}


