/* ==========================================================================
   Midas Floors - Static Site Stylesheet
   ========================================================================== */

/* --- Fonts --- */
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* --- Color Variables --- */
:root {
  --gold: #bba25c;
  --navy: #14213d;
  --dark-navy: #0a111f;
  --black: #000000;
  --grey: #666666;
  --white: #ffffff;
  --light-bg: #f5f5f5;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  transition: background 0.3s, box-shadow 0.3s;
}

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

.site-header.overlay-header {
  background: transparent;
}

.site-header.overlay-header.scrolled {
  background: rgba(0,0,0,0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.header-logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.overlay-header .main-nav a {
  color: var(--white);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--gold);
}

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

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
}

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

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--black) !important;
  text-transform: none;
  letter-spacing: 0;
}

.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--gold) !important;
}

.dropdown-menu a::after {
  display: none;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

.header-phone svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

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

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

.overlay-header .nav-toggle span {
  background: var(--white);
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page hero (shorter) */
.page-hero {
  min-height: 30vh;
  padding-top: 100px;
}

.page-hero h1 {
  font-size: 48px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid var(--gold);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

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

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

.btn-gold:hover {
  background: #a88e4a;
  border-color: #a88e4a;
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--dark-navy);
  border-color: var(--dark-navy);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section {
  padding: 80px 0;
}

.section-heading {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  text-transform: capitalize;
}

/* --- Value Props Strip --- */
.value-strip {
  background: var(--light-bg);
  padding: 60px 0;
}

.value-strip .subheading {
  text-align: center;
  font-size: 18px;
  color: var(--grey);
  margin-bottom: 50px;
  font-family: 'DM Sans', sans-serif;
}

.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.value-prop {
  padding: 20px;
}

.value-prop img {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.value-prop h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.value-prop p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}

/* --- Two Column Split --- */
.split-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-images .split-img {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

/* --- Products Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.product-card-content {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
}

.product-card-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.product-card-content p {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Projects Grid --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

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

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

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

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

.project-card-overlay h3 {
  color: var(--white);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.about-section:nth-child(even) .about-text {
  order: 2;
}

.about-section:nth-child(even) .about-image {
  order: 1;
}

.about-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.about-text p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* --- Team Section --- */
.team-section {
  background: var(--light-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  text-align: center;
}

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 16px;
}

.team-member h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.team-member .role {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 10px;
}

.team-member .team-contact a {
  font-size: 13px;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}

.team-member .team-contact a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 30px;
  line-height: 1.3;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  border: 1px solid #ddd;
  background: var(--light-bg);
  outline: none;
  transition: border-color 0.3s;
}

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

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

.form-success {
  display: none;
  padding: 16px;
  background: #e8f5e9;
  color: #2e7d32;
  margin-top: 16px;
}

.contact-info-list {
  padding-top: 10px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-info-item .info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
}

.contact-info-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-filters {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.blog-filters a {
  padding: 8px 20px;
  font-size: 14px;
  border: 1px solid #ddd;
  transition: all 0.3s;
}

.blog-filters a.active,
.blog-filters a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid #eee;
  transition: box-shadow 0.3s;
}

.blog-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

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

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

.blog-card-content {
  padding: 24px;
}

.blog-card-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-content .excerpt {
  font-size: 14px;
  color: var(--grey);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-card-content .read-more {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */
/* Slider */
.product-slider {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.product-slider .slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.product-slider .slide {
  min-width: 100%;
  height: 100%;
}

.product-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.8);
}

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

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

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

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

.slider-dots .dot.active {
  background: var(--gold);
}

/* Product contact form */
.product-contact {
  background: var(--navy);
  color: var(--white);
  padding: 50px 40px;
  text-align: center;
}

.product-contact h3 {
  font-size: 22px;
  margin-bottom: 30px;
}

.product-contact .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.product-contact input,
.product-contact textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  outline: none;
}

.product-contact input::placeholder,
.product-contact textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.product-contact textarea {
  min-height: 100px;
  resize: vertical;
}

/* Sub-categories */
.subcategory {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}

.subcategory:last-of-type {
  border-bottom: none;
}

.subcategory-header {
  text-align: center;
  margin-bottom: 40px;
}

.subcategory-header h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.subcategory-header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
}

/* Specs */
.specs-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.spec-item {
  text-align: center;
  min-width: 100px;
}

.spec-item img {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.spec-item .spec-label {
  font-size: 13px;
  color: var(--grey);
  font-weight: 500;
}

.specs-text {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.specs-text .spec-text-item {
  font-size: 14px;
  color: var(--grey);
}

.specs-text .spec-text-item strong {
  color: var(--black);
}

/* Color Swatches */
.swatches-heading {
  text-align: center;
  font-size: 20px;
  margin: 40px 0 30px;
}

.swatches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.swatch {
  text-align: center;
}

.swatch img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 8px;
  border: 1px solid #eee;
}

.swatch .swatch-name {
  font-size: 12px;
  color: var(--grey);
}

/* ==========================================================================
   PROJECT PAGE
   ========================================================================== */
.project-hero {
  height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.project-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.project-data {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.project-data-item {
  text-align: center;
}

.project-data-item .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey);
  margin-bottom: 8px;
}

.project-data-item .value {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 40px 0;
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.3s;
}

.project-gallery img:hover {
  opacity: 0.85;
}

.project-description {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.project-description h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.project-description p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--dark-navy);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 50px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

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

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 14px;
}

.social-links a svg {
  flex-shrink: 0;
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  display: block;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 40px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

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

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .products-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-section:nth-child(even) .about-text,
  .about-section:nth-child(even) .about-image {
    order: unset;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .section-heading {
    font-size: 28px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.3s;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    align-items: flex-start;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    color: var(--black) !important;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 20px;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .header-phone {
    display: none;
  }

  .value-props {
    grid-template-columns: 1fr;
  }

  .split-images {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

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

  .product-contact .form-row {
    grid-template-columns: 1fr;
  }

  .project-data {
    gap: 30px;
  }

  .header-inner {
    padding: 12px 20px;
  }

  .footer-inner {
    padding: 0 20px 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

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

  .swatches-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
