/* ASK Dental Laboratory - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --primary: #1c75bc;
  --navy: #2b3990;
  --grey: #58595b;
  --light-blue: #e8f4fd;
  --white: #ffffff;
  --light-grey: #f5f6f8;
  --border: #e0e0e0;
  --text: #2c2c2c;
  --text-light: #6b7280;
  --shadow: 0 4px 20px rgba(28, 117, 188, 0.12);
  --shadow-lg: 0 8px 40px rgba(28, 117, 188, 0.18);
  --radius: 12px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  background: var(--light-blue);
  padding: 6px 16px;
  border-radius: 100px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--navy));
  color: #fff;
  border-color: var(--navy);
}

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

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

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

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

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

/* IMAGE PLACEHOLDER */
.img-placeholder {
  background: linear-gradient(135deg, #e8f4fd, #dbedf7);
  border: 2px dashed var(--primary);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  min-height: 220px;
}

.img-placeholder svg {
  opacity: 0.5;
}

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  color: var(--grey);
  transition: all var(--transition);
}

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

.nav-cta {
  margin-left: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
  transition: all var(--transition);
}

/* HERO */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.hero .container {
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(14, 26, 58, 0.92) 0%, rgba(28, 117, 188, 0.4) 100%);
  z-index: 0;
}

.hero-content-glass {
  position: relative;
  z-index: 1;
  max-width: 680px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  margin-top: 20px;
  margin-left: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(28, 117, 188, 0.6);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: #90d0f7;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 400;
}

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

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.relative {
  position: relative;
  z-index: 2;
}


/* STATS */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  color: #fff;
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: #90d0f7;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  margin-top: 6px;
  opacity: 0.8;
}

/* SERVICES OVERVIEW */
.services-overview {
  padding: 96px 0;
  background: var(--light-grey);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--navy));
  transition: width 0.4s ease;
}

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

.service-card:hover::after {
  width: 100%;
}

.service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.service-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: var(--primary);
}

.service-content p {
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-content .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-content .card-link:hover {
  gap: 10px;
  color: var(--navy);
}

/* WHY CHOOSE US */
.why-us {
  padding: 96px 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg {
  color: var(--primary);
}

.why-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-item p {
  color: var(--text-light);
  font-size: 14px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 96px 0;
  background: var(--light-grey);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
}

.author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.author-role {
  font-size: 13px;
  color: var(--text-light);
}

/* QUICK CONTACT */
.quick-contact {
  padding: 0 0 1px;
  background: #fff;
}

.quick-contact-grid {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  transform: translateY(-56px);
  position: relative;
  z-index: 10;
}

.qc-item {
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
}

.qc-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.qc-item:hover {
  background: #fafbfc;
  border-radius: 24px;
}

.qc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.qc-item:hover .qc-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
}

.qc-item:hover .qc-icon svg {
  fill: #fff !important;
}

.qc-icon svg {
  fill: var(--primary) !important;
  width: 26px;
  height: 26px;
  transition: fill 0.3s ease;
}

.qc-item h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.qc-item p,
.qc-item a {
  color: var(--text-light);
  font-size: 15.5px;
  font-weight: 500;
}

.qc-item a:hover {
  color: var(--primary);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--primary));
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 50px);
  margin-bottom: 16px;
}

.page-hero p {
  opacity: 0.85;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.7;
}

.breadcrumb a:hover {
  opacity: 1;
  color: #90d0f7;
}

/* ABOUT PAGE */
.about-intro {
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.mission-vision {
  padding: 80px 0;
  background: var(--light-grey);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.mv-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mv-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.team-section {
  padding: 96px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.team-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--light-blue);
  border: 4px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: var(--primary);
  font-weight: 700;
}

.team-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-card span {
  font-size: 14px;
  color: var(--text-light);
}

/* SERVICES PAGE */
.services-detail {
  padding: 96px 0;
}

.service-detail-grid {
  display: grid;
  gap: 60px;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-detail-item:nth-child(even) .service-detail-image {
  order: -1;
}

.service-detail-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.service-features li::before {
  content: '✓';
  background: var(--primary);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* GALLERY */
.gallery-section {
  padding: 80px 0;
}

.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item .img-placeholder {
  min-height: 240px;
  transition: transform var(--transition);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 57, 144, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-item-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

/* CONTACT */
.contact-section {
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  color: var(--primary);
}

.ci-item h4 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.ci-item p,
.ci-item a {
  color: var(--text-light);
  font-size: 15px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.hours-table td {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.hours-table td:last-child {
  text-align: right;
  padding-left: 16px;
  white-space: nowrap;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

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

.contact-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition);
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.map-section {
  background: var(--light-grey);
  padding: 60px 0;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* FOOTER */
.site-footer {
  background: #0e1a3a;
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 0;
}

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

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #90d0f7;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  height: 58px;
  padding: 0 15px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  overflow: hidden;
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.whatsapp-text {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-weight: 600;
  font-size: 15px;
  transition: max-width 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.whatsapp-btn:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  padding: 0 24px 0 20px;
  transform: translateY(-4px);
}

.whatsapp-btn:hover .whatsapp-text {
  max-width: 120px;
  opacity: 1;
  margin-left: 10px;
}

.whatsapp-btn:hover svg {
  transform: scale(1.1);
}

/* FORM SUCCESS */
.form-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 10px;
  padding: 16px;
  color: #065f46;
  display: none;
  margin-top: 16px;
}

/* FADE IN */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= RESPONSIVE – TABLET (≤992px) ========= */
@media (max-width: 992px) {

  /* Layout resets */
  .hero-content,
  .why-us-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Services page alternating layout */
  .service-detail-item {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-detail-item:nth-child(even) .service-detail-image {
    order: 0;
  }

  /* Mission/Vision */
  .mv-grid {
    grid-template-columns: 1fr;
  }

  /* Footer – 2 column on tablet */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Quick contact – stack */
  .quick-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Stats – 2 columns */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero image placeholder smaller */
  .hero-image .img-placeholder {
    min-height: 280px;
  }

  /* Section padding reduce */
  .services-overview,
  .why-us,
  .testimonials,
  .about-intro,
  .services-detail,
  .contact-section,
  .team-section {
    padding: 64px 0;
  }

  /* About text heading */
  .about-text h2 {
    font-size: 28px;
  }
}

/* ========= RESPONSIVE – MOBILE (≤768px) ========= */
@media (max-width: 768px) {

  /* Hamburger */
  .hamburger {
    display: flex;
  }

  /* Mobile nav popup */
  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: auto;
    padding: 12px 24px;
    border-radius: 8px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
  }

  .nav-link::after {
    display: none;
  }

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

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .nav-cta .btn {
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 50px;
  }

  .hamburger {
    position: relative;
    z-index: 999;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 32px;
  }

  /* Services cards */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

  .contact-grid {
    gap: 36px;
  }

  .map-frame iframe {
    height: 280px;
  }

  /* About */
  .mv-card {
    padding: 28px 20px;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .site-footer {
    padding: 48px 0 0;
  }

  /* Quick contact */
  .quick-contact {
    padding: 56px 0;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Page hero */
  .page-hero {
    padding: 56px 0 40px;
  }

  .page-hero p {
    font-size: 15px;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 36px;
  }

  .section-header p {
    font-size: 15px;
  }

  /* General section padding */
  .services-overview,
  .why-us,
  .testimonials,
  .about-intro,
  .services-detail,
  .contact-section,
  .team-section,
  .gallery-section {
    padding: 48px 0;
  }

  .mission-vision {
    padding: 48px 0;
  }

  .map-section {
    padding: 40px 0;
  }

  /* Hours table fix – prevent collision */
  .hours-table {
    display: block;
  }

  .hours-table tr {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
  }

  .hours-table td {
    border-bottom: none;
    padding: 2px 0;
    font-size: 13px;
  }

  .hours-table td:first-child {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
  }
}

/* ========= RESPONSIVE – SMALL MOBILE (≤576px) ========= */
@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  /* Topbar – just phone + socials */
  .topbar-inner {
    height: 36px;
  }

  /* Stats – 2 col still, just tighter */
  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .stats-bar {
    padding: 28px 0;
  }

  /* Hero */
  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero-title {
    font-size: clamp(26px, 8vw, 36px);
  }

  /* Services cards – single col, less padding */
  .service-card {
    padding: 24px 20px;
  }

  /* Team grid – single col on very small */
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery – single col on very small */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery item height */
  .gallery-item .img-placeholder {
    min-height: 200px;
  }

  /* Footer brand */
  .footer-brand img {
    height: 40px;
  }

  /* Service detail sections */
  .service-detail-content h3 {
    font-size: 22px;
  }

  /* Why choose us items */
  .why-icon {
    width: 40px;
    height: 40px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* WhatsApp btn position */
  .whatsapp-btn {
    bottom: 16px;
    right: 16px;
    height: 50px;
    padding: 0 12px;
  }

  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* ========= RESPONSIVE – EXTRA SMALL (≤400px) ========= */
@media (max-width: 400px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-title {
    font-size: 26px;
  }

  .nav-logo img {
    height: 44px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== TOPBAR ===================== */
.topbar {
  background: linear-gradient(90deg, #0e1a3a 0%, #1c2f6e 100%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-item:hover {
  color: #90d0f7;
}

.topbar-item svg {
  flex-shrink: 0;
  opacity: 0.75;
}

.topbar-divider {
  opacity: 0.2;
  font-size: 14px;
}

.topbar-hours {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

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

.topbar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.2s;
}

.topbar-social:hover {
  background: var(--primary);
  color: #fff;
}

/* ===================== MODERNISED NAV ===================== */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(28, 117, 188, 0.10);
  box-shadow: none;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 32px rgba(43, 57, 144, 0.10);
}

.nav-inner {
  height: 76px;
}

.nav-logo img {
  height: 56px;
}

/* Nav links – underline slide effect */
.nav-link {
  position: relative;
  padding: 8px 4px;
  margin: 0 10px;
  border-radius: 0;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--grey);
  background: none;
  letter-spacing: 0.2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--navy));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: center;
}

.nav-link:hover {
  color: var(--primary);
  background: none;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--primary);
  background: none;
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* CTA button modernised */
.nav-cta {
  margin-left: 20px;
}

.nav-cta .btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  border: none;
  border-radius: 8px;
  padding: 11px 26px;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(28, 117, 188, 0.28);
  transition: all 0.25s ease;
}

.nav-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 117, 188, 0.38);
}

/* Topbar – mobile responsiveness */
@media (max-width: 768px) {

  /* Hide email, location, hours on mobile */
  .topbar-left .topbar-item:not(:first-child),
  .topbar-divider,
  .topbar-hours {
    display: none;
  }

  .topbar-inner {
    justify-content: space-between;
  }

  .topbar-left {
    gap: 8px;
  }
}

@media (max-width: 400px) {
  .topbar {
    display: none;
  }

  /* hide entirely on very small screens */
}

/* ===================== HOW IT WORKS ===================== */
.how-it-works {
  padding: 96px 0;
  background: #fff;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  align-items: start;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(28, 117, 188, 0.30);
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover .process-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 36px rgba(28, 117, 188, 0.40);
}

.process-connector {
  position: absolute;
  top: 36px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--navy));
  z-index: 1;
  opacity: 0.25;
}

.process-content {
  padding: 20px 12px 0;
}

.process-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--light-blue);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.process-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===================== QUALIFICATION SECTION ===================== */
.qualification-section {
  padding: 32px 0;
  background: var(--light-grey);
}

.qualification-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.qualification-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qualification-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.qualification-text strong {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
}

.qualification-text span {
  font-size: 0.95rem;
  color: var(--grey);
}

/* ===================== EXPERIENCE BADGE ===================== */
.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--light-blue);
  border: 1px solid rgba(28, 117, 188, 0.2);
  border-left: 4px solid var(--primary);
  padding: 14px 24px;
  border-radius: 12px;
  margin-top: 28px;
}

.exp-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.exp-label {
  display: flex;
  flex-direction: column;
}

.exp-label strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.exp-label span {
  font-size: 12px;
  color: var(--grey);
}

/* ===================== CERTIFICATIONS ===================== */
.certifications {
  padding: 96px 0;
  background: var(--light-grey);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cert-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--navy));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.cert-card:hover::before {
  transform: scaleX(1);
}

.cert-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--light-blue), #c5e3f7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}

.cert-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.cert-card p {
  font-size: 13px;
  color: var(--text-light);
}

/* ===================== WORK SHOWCASE ===================== */
.work-showcase {
  padding: 96px 0;
  background: #fff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.showcase-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.showcase-img {
  border-radius: 0 !important;
  transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-img {
  transform: scale(1.03);
}

.showcase-body {
  padding: 20px;
}

.showcase-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--light-blue);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.showcase-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.showcase-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===================== MATERIALS & TECHNOLOGY ===================== */
.materials-tech {
  padding: 96px 0;
  background: var(--light-grey);
}

.mat-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.materials-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.mat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 4px 20px rgba(28, 117, 188, 0.06);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mat-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.mat-item svg {
  width: 26px;
  height: 26px;
  padding: 5px;
  color: var(--primary);
  background: var(--light-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.mat-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.mat-item span {
  font-size: 13.5px;
  color: var(--text-light);
}

.tech-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tech-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(28, 117, 188, 0.06);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.tech-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 16px rgba(28, 117, 188, 0.2);
}

.tech-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.tech-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===================== PARTNER CTA ===================== */
.partner-cta {
  position: relative;
  padding: 96px 0 144px;
  overflow: hidden;
  background: linear-gradient(135deg, #0e1a3a 0%, var(--navy) 40%, var(--primary) 100%);
}

.partner-cta-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(144, 208, 247, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(28, 117, 188, 0.15) 0%, transparent 40%);
}

.partner-cta-inner {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.partner-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 50px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.partner-cta-inner>p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 40px;
}

.partner-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 44px;
}

.partner-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.partner-benefit svg {
  color: #90d0f7;
  flex-shrink: 0;
}

.partner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== RESPONSIVE – NEW SECTIONS ===================== */
@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .process-connector {
    display: none;
  }

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

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

@media (max-width: 992px) {
  .mat-tech-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-it-works,
  .certifications,
  .work-showcase,
  .materials-tech,
  .partner-cta {
    padding: 64px 0;
  }
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .certs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-cta-inner h2 {
    font-size: clamp(26px, 6vw, 36px);
  }

  .partner-btns {
    flex-direction: column;
    align-items: center;
  }

  .partner-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

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

  .certs-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .how-it-works,
  .certifications,
  .work-showcase,
  .materials-tech,
  .partner-cta {
    padding: 48px 0;
  }

  .partner-benefits {
    flex-direction: column;
    align-items: center;
  }
}