/* Core Variables */
:root {
  --primary-navy: #0a1142;
  --primary-orange: #f37021;
  --text-dark: #333333;
  --text-light: #777777;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --border-light: #eeeeee;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition: all 0.3s ease;
}

/* Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary-navy);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.btn-primary {
  display: inline-block;
  background-color: var(--primary-orange);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #d15c19;
  transform: translateY(-2px);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary-orange);
  font-weight: 300;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  color: var(--text-light);
}

/* Top Banner */
.top-banner {
  background-color: var(--primary-navy);
  color: var(--white);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Navbar — Transparent over hero, solid on scroll */
header.container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: transparent;
  box-shadow: none;
  max-width: 100%;
  width: 100%;
  padding: 0 5%;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

header.container.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

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

.nav-brand-icon {
  width: 24px;
  height: 32px;
  background: linear-gradient(135deg, #ffffff 50%, var(--primary-orange) 50%);
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  transition: background 0.35s ease;
}

header.container.scrolled .nav-brand-icon {
  background: linear-gradient(135deg, var(--primary-navy) 50%, var(--primary-orange) 50%);
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  transition: color 0.35s ease;
}

header.container.scrolled .nav-brand-text {
  color: var(--primary-navy);
}

.nav-brand-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
  transition: color 0.35s ease;
}

header.container.scrolled .nav-brand-text span {
  color: var(--text-light);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  color: #ffffff;
  transition: color 0.35s ease;
}

header.container.scrolled .nav-links a {
  color: var(--text-dark);
}

.nav-links a:hover {
  color: var(--primary-orange);
}

.nav-links a.active {
  color: var(--primary-orange) !important;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary-orange);
  border-radius: 50%;
}

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

.search-bar {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease;
}

header.container.scrolled .search-bar {
  background: var(--bg-light);
  border-color: transparent;
}

.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  padding-right: 0.5rem;
  font-family: var(--font-sans);
  color: #ffffff;
  transition: color 0.35s ease;
}

.search-bar input::placeholder {
  color: rgba(255,255,255,0.6);
  transition: color 0.35s ease;
}

header.container.scrolled .search-bar input {
  color: var(--text-dark);
}

header.container.scrolled .search-bar input::placeholder {
  color: var(--text-light);
}

.search-bar i, .nav-actions i {
  color: #ffffff;
  cursor: pointer;
  transition: color 0.35s ease;
}

header.container.scrolled .search-bar i,
header.container.scrolled .nav-actions i {
  color: var(--text-dark);
}

.nav-actions i:hover {
  color: var(--primary-orange);
}

/* Hero Section — Full Viewport Widescreen */
.hero-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  margin-bottom: 5rem;
}

.hero-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-wrapper .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 13, 55, 0.92) 0%,
    rgba(8, 13, 55, 0.7) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 8% 5rem 8%;
}

.hero-content {
  max-width: 680px;
  color: var(--white);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero-content h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.hero-content h1 span {
  color: var(--primary-orange);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.85;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-ghost {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(243, 112, 33, 0.15);
  border: 1.5px solid var(--primary-orange);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  color: var(--white);
  text-align: center;
  min-width: 140px;
  flex-shrink: 0;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--primary-orange);
  display: block;
}

.badge-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 0.4rem;
  display: block;
  line-height: 1.5;
}

/* Logos */
.partner-logos {
  margin-bottom: 6rem;
  overflow: hidden;
}

.logo-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0.8;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  transition: var(--transition);
  cursor: pointer;
}

.logo-item:hover {
  filter: grayscale(0%);
}

/* Who We Are */
.who-we-are {
  margin-bottom: 8rem;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.who-images {
  position: relative;
  height: 500px;
}

.who-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 350px;
  border-radius: 20px 0 20px 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 1;
}

.who-img-1 img, .who-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 300px;
  border-radius: 20px 20px 20px 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 3;
}

.who-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: var(--white);
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-icon::after {
  content: '';
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  border-radius: 5px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.who-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.who-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat-item h3 {
  font-family: var(--font-sans);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.stat-item p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* What We Offer */
.what-we-offer {
  margin-bottom: 8rem;
  position: relative;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.offer-card {
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.offer-img-wrapper {
  overflow: hidden;
  height: 300px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.offer-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.offer-card-body {
  padding: 1.5rem 1.2rem 2rem;
}

.offer-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.offer-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Inspiration Section */
.inspiration-section {
  display: flex;
  gap: 4rem;
  margin-bottom: 8rem;
  align-items: center;
}

.inspire-left {
  flex: 0 0 30%;
}

.inspire-left p {
  color: var(--text-light);
  margin-top: 1rem;
}

.inspire-right {
  flex: 1;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 15px;
}

.m-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.m-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-item span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Masonry layout — 5 items, 3 columns */
.m-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; height: 320px; }   /* Bedroom — tall left */
.m-item:nth-child(2) { grid-column: 2; grid-row: 1; height: 150px; }        /* Dining — top center */
.m-item:nth-child(3) { grid-column: 3; grid-row: 1 / 3; height: 320px; }   /* Kitchen — tall right */
.m-item:nth-child(4) { grid-column: 2; grid-row: 2; height: 150px; }        /* Bathroom — bottom center */
.m-item:nth-child(5) { grid-column: 1 / 3; grid-row: 3; height: 180px; }   /* Kids Room — wide bottom */

/* Our Products */
.our-products {
  margin-bottom: 8rem;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-filters {
  display: flex;
  gap: 1rem;
}

.filter-pill {
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text-dark);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.filter-pill.active {
  background-color: var(--primary-navy);
  color: var(--white);
}

.filter-pill:hover:not(.active) {
  border-color: var(--border-light);
}

.see-all-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid var(--border-light);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
}

.see-all-link:hover {
  background: var(--bg-light);
}

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

.product-card {
  position: relative;
}

.product-card > img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.fav-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  cursor: pointer;
  transition: var(--transition);
}

.fav-btn:hover {
  color: #e74c3c;
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-info h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.product-info .price {
  font-weight: 600;
  font-size: 1.1rem;
}

.cart-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-btn:hover {
  background: var(--primary-orange);
  color: var(--white);
  border-color: var(--primary-orange);
}

/* Process Section */
.process-section {
  background-color: var(--primary-navy);
  border-radius: 40px;
  padding: 5rem 4rem;
  color: var(--white);
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.process-card {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 20px;
  transition: var(--transition);
}

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

.step-num {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.process-card h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.process-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Recent Projects */
.recent-projects {
  margin-bottom: 8rem;
}

.projects-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-slide img {
  border-radius: 20px;
  height: 400px;
  width: 100%;
  object-fit: cover;
}

/* Testimonials */
.testimonials {
  margin-bottom: 8rem;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.test-card {
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 20px;
  position: relative;
}

.quote-icon {
  background: #000;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  position: absolute;
  top: -15px;
  left: 20px;
}

.stars {
  color: #e74c3c;
  margin-bottom: 1rem;
}

.test-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-style: italic;
  min-height: 80px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.client-info h5 {
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.client-info span {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* Collections */
.collections { margin-bottom: 6rem; }
.col-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.col-item {
  border-radius: 50px;
  overflow: hidden;
  height: 400px;
  position: relative;
}
.col-item img {
  width: 100%; height: 100%; object-fit: cover;
}
.play-overlay .fa-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-orange);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.play-overlay:hover .fa-play {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Social & Footer */
.stay-connected { text-align: center; margin-bottom: 3rem; }
.social-icons i { margin: 0 10px; font-size: 1.2rem; cursor: pointer; color: var(--text-dark); transition: color 0.3s ease; }
.social-icons i:hover { color: var(--primary-orange); }

.footer {
  margin-top: 4rem;
  padding: 4rem 0 2rem;
  background-color: var(--bg-light);
}
/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

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

.contact-form-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fafafa;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.1);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
}

.contact-map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.info-item i {
  color: var(--primary-orange);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.info-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  flex-grow: 1;
  min-height: 250px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer h4 { font-family: var(--font-sans); font-size: 0.9rem; margin-bottom: 1.5rem; color: var(--text-dark); }
.footer ul li { margin-bottom: 0.8rem; }
.footer a, .footer p { font-size: 0.85rem; color: var(--text-light); transition: color 0.3s ease; }
.footer a:hover { color: var(--primary-orange); }
.footer-bottom {
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

/* Missing UI Additions */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  gap: 8px;
}
.hero-dots .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition);
}
.hero-dots .dot.active { background: var(--white); width: 25px; border-radius: 10px; }

.bg-sweep {
  position: absolute;
  top: -100px;
  left: -50px;
  z-index: -1;
  width: 120%;
  pointer-events: none;
}

.m-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--white);
  padding: 8px;
  border-radius: 50%;
  font-size: 0.8rem;
  color: var(--text-dark);
}

.projects-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.slider-btn {
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  width: 50px; height: 50px; border-radius: 50%;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-size: 1.2rem;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--primary-orange); color: var(--white); border-color: var(--primary-orange); }
.slider-btn.left { left: -25px; }
.slider-btn.right { right: -25px; }

.project-slide.active-slide {
  transform: scale(1.05);
  z-index: 2;
}

.project-pin {
  position: absolute;
  top: 60%; left: 30%;
  width: 15px; height: 15px; background: var(--white); border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,255,255,0.3);
}

.project-floating-card {
  position: absolute;
  bottom: 30px; left: 30px; background: var(--white); padding: 1.5rem;
  border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.project-floating-card .tag { font-size: 0.6rem; letter-spacing:1px; line-height: 1; padding: 4px 8px; background: var(--bg-light); border-radius: 4px; font-weight: 700;}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   Mobile Menu Button (hidden on desktop)
   ═══════════════════════════════════════════ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

header.container.scrolled .mobile-menu-btn span {
  background: var(--text-dark);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════
   Tablet — max-width: 992px
   ═══════════════════════════════════════════ */
@media (max-width: 992px) {
  .container { padding: 0 4%; }

  /* Who Are We */
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .who-images { height: 400px; }

  /* Offer cards */
  .offer-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Inspiration */
  .inspiration-section {
    flex-direction: column;
    gap: 2rem;
  }
  .inspire-left { text-align: center; }
  .inspire-left .section-title { text-align: center !important; }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Product filters wrap */
  .product-filters {
    flex-wrap: wrap;
  }

  /* Process */
  .process-section {
    padding: 3.5rem 3rem;
    border-radius: 30px;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ═══════════════════════════════════════════
   Mobile — max-width: 768px
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 5%; }

  /* ── Hamburger Menu ── */
  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.35s ease;
    z-index: 1050;
  }

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

  .nav-links li {
    border-bottom: 1px solid var(--border-light);
  }

  .nav-links a {
    color: var(--text-dark) !important;
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }

  .nav-links a.active {
    color: var(--primary-orange) !important;
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  /* Mobile overlay backdrop */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* ── Hero ── */
  .hero-wrapper { height: 85vh; }
  .hero-content { padding: 0 1rem; }
  .hero-content h1 { font-size: 2.5rem; line-height: 1.15; }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }
  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
  }
  .hero-actions a,
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    text-align: center;
    width: 100%;
    display: block;
  }

  /* ── Partner Logos ── */
  .partner-logos { margin-bottom: 3rem; }
  .logo-track {
    justify-content: center;
    gap: 1.5rem;
  }
  .logo-item { font-size: 1.5rem; }

  /* ── Who Are We ── */
  .who-we-are { margin-bottom: 5rem; }
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .who-images { height: 320px; }
  .who-img-1 { width: 55%; height: 260px; }
  .who-img-2 { width: 60%; height: 220px; }
  .who-icon { width: 70px; height: 70px; }
  .who-icon::after { width: 35px; height: 35px; }
  .who-stats {
    justify-content: flex-start;
    gap: 2rem;
  }

  /* ── What We Offer ── */
  .what-we-offer { margin-bottom: 5rem; }
  .offer-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .offer-card { border-radius: 16px; }
  .offer-img-wrapper { height: 240px; }

  /* ── Inspiration Masonry ── */
  .masonry-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .m-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; height: 200px; }
  .m-item:nth-child(2) { grid-column: 1; grid-row: auto; height: 160px; }
  .m-item:nth-child(3) { grid-column: 2; grid-row: auto; height: 160px; }
  .m-item:nth-child(4) { grid-column: 1; grid-row: auto; height: 160px; }
  .m-item:nth-child(5) { grid-column: 2; grid-row: auto; height: 160px; }
  .m-item span { font-size: 0.6rem; padding: 4px 10px; bottom: 10px; left: 10px; }

  /* ── Products ── */
  .our-products { margin-bottom: 5rem; }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .product-card > img { height: 180px; }
  .product-info h4 { font-size: 0.85rem; }
  .product-filters {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .filter-pill {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }

  /* ── Process ── */
  .process-section {
    padding: 3rem 1.5rem;
    border-radius: 20px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
  }
  .process-card { padding: 1.5rem; }

  /* ── Contact ── */
  .contact-section { padding: 4rem 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.5rem; }
  .contact-info-card { padding: 1.5rem; }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* ── Section spacing ── */
  .section-title { font-size: 1.8rem; }
  .section-subtitle { font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════
   Small Phone — max-width: 480px
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 5%; }

  /* Hero */
  .hero-wrapper { height: 80vh; }
  .hero-content h1 { font-size: 2rem; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 1px; }
  .hero-sub { font-size: 0.8rem; }

  /* Sections */
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.8rem; }

  /* Who Are We */
  .who-we-are { margin-bottom: 4rem; }
  .who-images { height: 260px; }
  .who-img-1 { width: 58%; height: 210px; }
  .who-img-2 { width: 58%; height: 180px; }
  .who-icon { width: 55px; height: 55px; border-radius: 14px; }
  .who-icon::after { width: 28px; height: 28px; }
  .who-stats { gap: 1.2rem; }
  .stat-number { font-size: 1.8rem; }

  /* Offer */
  .offer-img-wrapper { height: 200px; }
  .offer-card-body { padding: 1.2rem; }
  .offer-card-body h3 { font-size: 1.1rem; }

  /* Masonry single column */
  .masonry-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .m-item:nth-child(1),
  .m-item:nth-child(2),
  .m-item:nth-child(3),
  .m-item:nth-child(4),
  .m-item:nth-child(5) {
    grid-column: 1; grid-row: auto; height: 200px;
  }

  /* Products single col */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .product-card > img { height: 220px; }

  /* Process */
  .process-section {
    padding: 2.5rem 1.2rem;
    border-radius: 16px;
  }

  /* Contact */
  .contact-form-wrapper { padding: 1.2rem; }
  .contact-info-card { padding: 1.2rem; }

  /* Footer logo */
  .giant-footer-logo .nav-brand-text.giant-text {
    font-size: 3rem !important;
  }
  .giant-footer-logo .nav-brand-icon.giant {
    width: 50px !important;
    height: 70px !important;
  }
}
