/* =========================================================
   SOLITAIRE MARBLES - CONSOLIDATED RESPONSIVE STYLESHEET
========================================================= */

:root {
  --dark: #17120e;
  --brown: #704b2b;
  --brown2: #8b5e34;
  --gold: #c99b45;
  --cream: #f8f1e6;
  --light: #fffaf2;
  --soft: #f7efe5;
  --text: #665f55;
  --white: #ffffff;
  --border: #eadccb;
  --shadow: 0 18px 45px rgba(43, 22, 8, 0.13);
  --header-height: 78px;
  --mobile-header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--dark);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

body.mobile-menu-active {
  overflow: hidden;
}

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

img,
video,
iframe,
svg {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

main {
  padding-top: var(--header-height);
}

section {
  padding: 86px 0;
}

/* =========================================================
   HEADER AND NAVIGATION
========================================================= */

.site-header,
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 250, 242, 0.97);
  border-bottom: 1px solid rgba(112, 75, 43, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
  color: var(--brown);
  font-family: "Playfair Display", serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.logo span {
  color: var(--gold);
}

.menu {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu > li {
  position: relative;
}

.menu > li > a,
.menu-link-row > a {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--gold);
}

.menu-link-row {
  display: flex;
  align-items: center;
}

.submenu-toggle {
  width: 28px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
}

.submenu-toggle i {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.submenu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 50;
  width: 245px;
  max-height: 420px;
  margin: 0;
  padding: 7px;
  overflow-y: auto;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.submenu li a {
  display: block;
  padding: 11px 13px;
  border-radius: 8px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  white-space: normal;
}

.submenu li a:hover {
  background: var(--cream);
  color: var(--brown);
}

.has-submenu:hover > .submenu,
.menu li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-separator {
  color: rgba(112, 75, 43, 0.32);
  font-size: 15px;
  pointer-events: none;
  user-select: none;
}

.quote-menu {
  margin-left: 3px;
}

.quote-menu > a,
.quote-menu a {
  min-height: 43px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 19px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--brown), var(--gold));
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(112, 75, 43, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quote-menu a::before {
  content: "✦";
  margin-right: 8px;
  font-size: 12px;
}

.quote-menu a:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(112, 75, 43, 0.3);
}

.mobile-menu-toggle,
.mobile-menu-header,
.mobile-menu-overlay {
  display: none;
}

/* =========================================================
   COMMON TYPOGRAPHY AND COMPONENTS
========================================================= */

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head span,
.section-label,
.section-tag {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-head h2 {
  margin-bottom: 14px;
  color: var(--brown);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
}

.section-head p {
  color: var(--text);
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 900;
  transition: 0.25s ease;
}

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

.btn-gold:hover {
  background: #fff;
  color: var(--brown);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}

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

/* =========================================================
   HOME HERO / INTRO
========================================================= */

.intro {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 55px 0 45px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(43, 22, 8, 0.92), rgba(43, 22, 8, 0.62)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  border-radius: 0 0 34px 34px;
}

.intro-content {
  max-width: 880px;
  margin: auto;
  text-align: center;
      margin-top: 30px;
}

.badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 17px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.14);
  color: #f5d7a4;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intro h1 {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
}

.intro p {
  max-width: 720px;
  margin: auto;
  color: #f2e7d6;
  font-size: 18px;
}

/* =========================================================
   SEARCH
========================================================= */

.home-search-box {
  position: relative;
  max-width: 850px;
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding: 10px;
  border-radius: 60px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(43, 22, 8, 0.22);
}

.home-search-box input {
  flex: 1;
  padding: 14px 18px;
  border: 0;
  border-radius: 50px;
  outline: none;
  color: var(--brown);
  font-size: 15px;
}

.home-search-box button {
  padding: 13px 28px;
  border: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold), #8b572a);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.clear-search {
  padding: 13px 20px;
  border-radius: 50px;
  background: var(--brown);
  color: #fff;
  font-weight: 700;
  text-align: center;
}

#searchResults {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-bottom: 1px solid #f1f1f1;
  cursor: pointer;
  transition: 0.2s ease;
}

.search-item:hover {
  background: #faf7f3;
}

.search-item img {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
}

.search-item h4 {
  margin: 0;
  color: #2b1608;
  font-size: 15px;
}

.search-item span {
  color: #777;
  font-size: 13px;
}

.search-note,
.no-search-result {
  margin-top: 28px;
  padding: 16px 20px;
  border-radius: 18px;
  background: #fff;
  color: var(--brown);
  box-shadow: 0 12px 35px rgba(43, 22, 8, 0.1);
  text-align: center;
}

/* =========================================================
   CATEGORY CARDS
========================================================= */

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

.category-card {
  position: relative;
  height: 390px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(112, 75, 43, 0.18);
}

.category-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.category-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 26px;
  color: #fff;
}

.category-info h3 {
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: 29px;
}

.category-info p {
  color: #f2e7d6;
  font-size: 14px;
}

/* =========================================================
   HOME PRODUCTS
========================================================= */

.home-products-section {
  padding: 55px 0;
  background: #fff8ef;
}

.home-category-row {
  margin-top: 34px;
}

.home-category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.home-category-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-category-head h3 {
  margin: 6px 0 0;
  color: var(--brown);
  font-size: 26px;
  font-weight: 900;
}

.view-all-btn {
  padding: 7px 15px;
  border-radius: 40px;
  background: var(--brown);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.home-product-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.home-product-card:hover {
  transform: translateY(-7px);
}

.home-product-img {
  height: 190px;
  overflow: hidden;
  background: #eee;
}

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

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

.home-product-name {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 12px;
  color: var(--brown);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.product-price {
  display: inline-block;
  margin-top: 9px;
  padding: 6px 12px;
  border-radius: 30px;
  background: rgba(217, 163, 92, 0.95);
  color: #2b1608;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.product-name h3 {
  margin-bottom: 0;
}

/* =========================================================
   COMMON CARD GRIDS
========================================================= */

.why {
  background: var(--white);
}

.why-grid,
.heritage-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.why-card,
.testimonial,
.process-card,
.collection-card,
.project-card,
.overview-card,
.facility-card {
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.why-card {
  padding: 30px;
  border-radius: 26px;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

.icon,
.why-card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), #8b572a);
  color: #fff;
  font-size: 25px;
}

.why-card h3 {
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 21px;
}

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

/* =========================================================
   PROJECTS / MASONRY
========================================================= */

.projects-grid {
  columns: 3;
  column-gap: 20px;
}

.project-card {
  break-inside: avoid;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 26px;
}

.project-card img {
  height: auto;
  object-fit: cover;
}

.project-body {
  padding: 22px;
}

.project-body h3 {
  margin-bottom: 8px;
  color: var(--brown);
  font-family: "Playfair Display", serif;
  font-size: 25px;
}

.project-body p {
  color: var(--text);
  font-size: 14px;
}

/* =========================================================
   GALLERY SLIDER
========================================================= */

.gallery-section,
.stone-section,
.process,
.why-about,
.infrastructure-section,
.founder-message {
  background: var(--light);
}

.slider-wrap {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 18px;
  padding: 8px 4px 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track img {
  width: auto;
  height: 430px;
  flex: 0 0 390px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(112, 75, 43, 0.14);
}

.slider-btn {
  position: absolute;
  top: 45%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-50%);
}

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

.prev { left: -18px; }
.next { right: -18px; }

/* =========================================================
   COLLECTIONS
========================================================= */

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.collection-card {
  overflow: hidden;
  border-radius: 26px;
  transition: transform 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
}

.collection-card img {
  height: 240px;
  object-fit: cover;
}

.collection-card div {
  padding: 22px;
}

.collection-card h3 {
  margin-bottom: 8px;
  color: var(--brown);
  font-family: "Playfair Display", serif;
  font-size: 25px;
}

.collection-card p {
  color: var(--text);
  font-size: 14px;
}

/* =========================================================
   HERITAGE
========================================================= */

.heritage {
  color: #fff;
  background:
    linear-gradient(rgba(25, 19, 15, 0.92), rgba(25, 19, 15, 0.92)),
    url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.heritage .section-head h2,
.heritage .section-head p {
  color: #fff;
}

.heritage-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.heritage-card h3 {
  margin-bottom: 10px;
  color: #ffd27a;
}

.heritage-card p {
  color: #efe6d8;
  font-size: 14px;
}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial {
  padding: 30px;
  border-radius: 28px;
}

.stars {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 22px;
}

.testimonial p {
  margin-bottom: 20px;
  color: var(--text);
}

.testimonial h4 {
  color: var(--brown);
}

/* =========================================================
   PROCESS
========================================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  padding: 26px;
  border-radius: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
}

.process-card .num,
.num {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid #ecd3b5;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  font-weight: 900;
}

.process-card h3 {
  margin-bottom: 8px;
  color: var(--brown);
}

.process-card p {
  color: var(--text);
  font-size: 14px;
}

/* =========================================================
   CTA
========================================================= */

.cta,
.quality-cta,
.contact-cta {
  padding: 80px 0;
  background: var(--brown);
  color: #fff;
  text-align: center;
}

.cta h2,
.quality-cta h2,
.contact-cta h2 {
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 58px);
}

.cta p,
.quality-cta p,
.contact-cta p {
  margin-bottom: 28px;
  color: #f1dfc9;
  font-size: 17px;
}

.cta-actions,
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.page-banner {
  min-height: 390px;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(23, 18, 14, 0.72), rgba(23, 18, 14, 0.72)),
    url("../images/about-banner.jpg") center/cover no-repeat;
}

.page-banner h1 {
  margin: 18px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 72px);
}

.page-banner p {
  max-width: 760px;
  margin: auto;
  color: #f4e8d7;
  font-size: 18px;
}

.about-company,
.overview-section,
.leadership-section,
.infrastructure-section {
  background: var(--light);
}

.about-split,
.about-intro-grid,
.vision-grid,
.leader-box,
.story-grid,
.founder-grid,
.quality-intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 48px;
}

.about-intro {
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at top right, rgba(201, 155, 69, 0.16), transparent 35%),
    #fffaf4;
}

.about-intro-grid {
  gap: 70px;
}

.about-left h1 {
  margin-bottom: 24px;
  color: var(--brown);
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
}

.lead {
  margin-bottom: 34px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.9;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat-box {
  min-width: 140px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(112, 75, 43, 0.08);
}

.stat-box h3 {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 38px;
  line-height: 1;
}

.stat-box span {
  color: var(--text);
  font-weight: 800;
}

.about-right {
  position: relative;
}

.main-image {
  height: 620px;
  border-radius: 36px;
  object-fit: cover;
  box-shadow: 0 30px 75px rgba(112, 75, 43, 0.18);
}

.experience-card {
  position: absolute;
  right: -22px;
  bottom: 44px;
  width: 270px;
  padding: 34px;
  border-radius: 28px;
  background: var(--brown);
  color: #fff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.experience-card h2 {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 46px;
  line-height: 1;
}

.experience-card span {
  font-weight: 800;
  line-height: 1.5;
}

.about-img,
.leader-img,
.founder-photo {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(112, 75, 43, 0.16);
}

.about-img img,
.leader-img img {
  height: 500px;
  object-fit: cover;
}

.about-text h2,
.vision-card h2,
.leader-content h2,
.story-grid h2,
.founder-quote h2 {
  margin-bottom: 18px;
  color: var(--brown);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
}

.about-text p,
.vision-card p,
.leader-content p,
.story-grid p {
  margin-bottom: 15px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
}

.about-highlights {
  padding: 0 0 80px;
  background: var(--light);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(112, 75, 43, 0.08);
  text-align: center;
}

.highlight-card h3 {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 38px;
}

.highlight-card p {
  color: var(--text);
  font-weight: 800;
}

.overview-grid,
.facility-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.overview-card,
.facility-card {
  overflow: hidden;
  border-radius: 26px;
}

.overview-card img,
.facility-card img {
  height: 250px;
  object-fit: cover;
}

.overview-card h3,
.facility-card h3 {
  padding: 22px 22px 0;
  color: var(--brown);
  font-family: "Playfair Display", serif;
  font-size: 25px;
}

.overview-card p {
  padding: 8px 22px 24px;
  color: var(--text);
}

.facility-card h3 {
  padding-bottom: 24px;
}

.company-story {
  background: var(--light);
}

.story-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 60px;
}

.journey-section {
  background: var(--cream);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  position: relative;
  padding: 30px 22px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(112, 75, 43, 0.08);
  text-align: center;
}

.timeline-item h3 {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 36px;
}

.timeline-item p {
  color: var(--text);
  font-weight: 800;
}

.why-about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.why-about-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(112, 75, 43, 0.08);
  transition: transform 0.3s ease;
}

.why-about-card:hover {
  transform: translateY(-7px);
}

.why-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 24px;
}

.why-about-card h3 {
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 21px;
}

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

.vision-mission {
  background: var(--cream);
}

.vision-grid {
  gap: 26px;
}

.vision-card {
  min-height: 420px;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(112, 75, 43, 0.08);
}

.vision-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vision-card p {
  margin-top: 15px;
}

.dark-card {
  background: var(--brown);
  color: #fff;
}

.dark-card h2,
.dark-card p {
  color: #fff;
}

.dark-card p {
  color: #f1dfc9;
}

.founder-grid,
.leader-box {
  grid-template-columns: 0.8fr 1.2fr;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(112, 75, 43, 0.1);
}

.founder-photo img {
  height: 430px;
  object-fit: cover;
}

.founder-quote,
.leader-content {
  padding: 20px;
}

.founder-quote p {
  margin-bottom: 24px;
  color: var(--brown);
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
}

.founder-quote h3 {
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 24px;
}

.founder-quote h4,
.leader-content h4 {
  color: var(--gold);
  font-size: 16px;
}

.awards-section {
  color: #fff;
  background:
    linear-gradient(rgba(25, 19, 15, 0.92), rgba(25, 19, 15, 0.92)),
    url("../images/awards-bg.jpg") center/cover no-repeat;
}

.awards-section .section-head h2,
.awards-section .section-head p {
  color: #fff;
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.award-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.award-card img {
  height: 220px;
  object-fit: cover;
}

.award-card h3 {
  padding: 22px;
  color: #ffd27a;
  font-size: 20px;
  line-height: 1.35;
}

.award-card p {
  padding: 0 22px 22px;
  color: #efe6d8;
  font-size: 14px;
}

.facility-grid {
  columns: 3;
  column-gap: 20px;
}

.facility-grid img {
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(112, 75, 43, 0.12);
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
  padding: 55px 0;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(201, 155, 69, 0.18), transparent 35%),
    #fffaf4;
  text-align: center;
}

.contact-hero h1,
.page-header h1 {
  margin: 15px 0;
  color: var(--brown);
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 72px);
}

.contact-hero p,
.page-header p {
  max-width: 800px;
  margin: auto;
  color: var(--text);
  font-size: 16px;
}

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

.contact-grid {
  gap: 40px;
  align-items: start;
}

.contact-info,
.contact-form {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(112, 75, 43, 0.08);
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 25px;
  color: var(--brown);
}

.info-box {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.info-box .icon {
  flex-shrink: 0;
  margin-bottom: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--brown);
}

.info-box h4 {
  margin-bottom: 5px;
  color: var(--brown);
}

.info-box p,
.info-box a {
  color: var(--text);
}

.business-hours {
  margin-top: 30px;
  padding: 25px;
  border-radius: 20px;
  background: var(--cream);
}

.business-hours h3 {
  margin-bottom: 10px;
  color: var(--brown);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--brown);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.submit-btn,
.contact-form button {
  width: 100%;
  min-height: 56px;
  padding: 16px;
  border: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--brown), var(--gold));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.submit-btn:hover,
.contact-form button:hover {
  transform: translateY(-2px);
}

.map-section iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

.call-btn,
.whatsapp-btn {
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 700;
}

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

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

/* =========================================================
   QUALITY PAGE
========================================================= */

.quality-intro {
  padding: 100px 0;
  background: #fffaf4;
}

.quality-intro-grid {
  gap: 70px;
}

.quality-main-img {
  height: 380px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.promise-card {
  padding: 35px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.promise-card h3 {
  margin-bottom: 15px;
  color: var(--brown);
}

.quality-process {
  background: var(--light);
}

.step {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-box {
  padding: 25px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  font-weight: 600;
}

.gallery-grid {
  columns: 3;
  column-gap: 20px;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 20px;
}

/* =========================================================
   FOOTER
========================================================= */

footer {
  padding: 70px 0 24px;
  background: var(--dark);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr 1.1fr;
  gap: 40px;
  margin-bottom: 45px;
}

.footer-logo {
  margin-bottom: 18px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 800;
}

.footer-logo span {
  color: var(--gold);
}

footer p,
footer li {
  color: #d8cfc4;
  font-size: 14px;
  line-height: 1.9;
}

footer h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
}

footer ul {
  display: grid;
  gap: 8px;
  list-style: none;
}

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

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #cfc6ba;
  font-size: 13px;
  text-align: center;
}

.float-buttons {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: grid;
  gap: 12px;
}

.float-buttons a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.call { background: #168eea; }
.whatsapp { background: #18bd5b; }

/* =========================================================
   TABLET RESPONSIVE
========================================================= */

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

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

@media (max-width: 1050px) {
  :root {
    --header-height: 70px;
  }

  main {
    padding-top: var(--mobile-header-height);
  }

  .navbar {
    min-height: var(--mobile-header-height);
  }

  .logo {
    position: relative;
    z-index: 10002;
    max-width: calc(100% - 65px);
    font-size: 23px;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 10002;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 5px;
    background: var(--brown);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: block;
    background: rgba(20, 12, 7, 0.62);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10001;
    width: min(350px, 88vw);
    height: 100vh;
    height: 100dvh;
    display: block;
    padding: 0 18px 35px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.16);
    transform: translateX(105%);
    transition: transform 0.3s ease;
  }

  .menu.mobile-open {
    transform: translateX(0);
  }

  .mobile-menu-header {
    position: sticky;
    top: 0;
    z-index: 3;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 -18px 10px;
    padding: 0 18px;
    border-bottom: 1px solid var(--border);
    background: #fff;
    color: var(--brown);
    font-size: 18px;
    font-weight: 800;
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--cream);
    color: var(--brown);
    cursor: pointer;
  }

  .menu > li {
    width: 100%;
    border-bottom: 1px solid #eee5db;
  }

  .menu > li > a,
  .menu-link-row > a {
    min-height: 52px;
    flex: 1;
    font-size: 14px;
  }

  .menu-link-row {
    width: 100%;
    justify-content: space-between;
  }

  .submenu-toggle {
    width: 48px;
    height: 52px;
    flex-shrink: 0;
  }

  .has-submenu:hover > .submenu,
  .menu li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #fbf7f1;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .has-submenu.submenu-open > .submenu {
    max-height: 500px;
    padding: 7px;
  }

  .has-submenu.submenu-open .submenu-toggle i {
    transform: rotate(180deg);
  }

  .submenu li a {
    padding: 11px 13px;
    font-size: 13px;
  }

  .menu-separator {
    display: none;
  }

  .quote-menu {
    margin-top: 18px;
    border-bottom: 0 !important;
  }

  .quote-menu > a {
    width: 100%;
  }

  .category-grid,
  .why-grid,
  .collection-grid,
  .heritage-grid,
  .testimonial-grid,
  .overview-grid,
  .facility-card-grid,
  .highlight-grid,
  .promise-grid,
  .feature-grid,
  .timeline,
  .why-about-grid,
  .award-grid,
  .home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-intro-grid,
  .about-split,
  .story-grid,
  .vision-grid,
  .founder-grid,
  .leader-box,
  .quality-intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    right: 20px;
  }

  .facility-grid,
  .gallery-grid {
    columns: 2;
  }

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

@media (max-width: 900px) {
  .home-products-grid,
  .why-grid,
  .heritage-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  section {
    padding: 55px 0;
  }

  .intro {
    min-height: 390px;
    padding: 50px 0;
    border-radius: 0 0 22px 22px;
  }

  .intro h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .intro p,
  .page-banner p,
  .lead {
    font-size: 15px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.18;
  }

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

  .home-search-box {
    flex-direction: column;
    border-radius: 24px;
  }

  .home-search-box input,
  .home-search-box button,
  .clear-search {
    width: 100%;
    text-align: center;
  }

  .home-category-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-grid,
  .why-grid,
  .collection-grid,
  .heritage-grid,
  .testimonial-grid,
  .overview-grid,
  .facility-card-grid,
  .highlight-grid,
  .promise-grid,
  .feature-grid,
  .timeline,
  .why-about-grid,
  .award-grid,
  .process-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .projects-grid {
    columns: 1;
  }

  .category-card {
    height: 280px;
    border-radius: 18px;
  }

  .home-product-img {
    height: 170px;
  }

  .gallery-track img {
    width: 82vw;
    height: 280px;
    flex-basis: 82vw;
    border-radius: 18px;
  }

  .slider-btn {
    display: none;
  }

  .main-image,
  .about-img img,
  .leader-img img,
  .founder-photo img,
  .quality-main-img {
    width: 100%;
    height: 260px;
    min-height: 0;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
  }

  .experience-card {
    position: static;
    width: 100%;
    margin-top: 16px;
    padding: 24px;
    border-radius: 18px;
  }

  .about-intro {
    padding: 70px 0 55px;
  }

  .about-intro-grid,
  .story-grid,
  .vision-grid,
  .founder-grid,
  .quality-intro-grid,
  .contact-grid {
    gap: 28px;
  }

  .vision-card,
  .contact-info,
  .contact-form,
  .founder-grid,
  .leader-box {
    min-height: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .founder-quote,
  .leader-content {
    padding: 4px;
  }

  .collection-card img,
  .overview-card img,
  .facility-card img,
  .award-card img {
    height: 200px;
    object-fit: cover;
  }

  .facility-grid,
  .gallery-grid {
    columns: 1;
  }

  .facility-grid img,
  .gallery-grid img {
    width: 100%;
    height: auto;
    max-height: 300px;
    margin-bottom: 15px;
    border-radius: 16px;
    object-fit: cover;
  }

  .project-card img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
  }

  .map-section iframe {
    height: 320px;
  }

  .cta-actions,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-gold,
  .btn-outline,
  .call-btn,
  .whatsapp-btn,
  .view-all-btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .float-buttons {
    right: 14px;
    bottom: 14px;
  }

  .float-buttons a {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 430px) {
  .logo {
    font-size: 20px;
  }

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

  .main-image,
  .about-img img,
  .leader-img img,
  .founder-photo img,
  .quality-main-img {
    height: 225px;
  }

  .category-card {
    height: 245px;
  }

  .home-product-img {
    height: 175px;
  }

  .collection-card img,
  .overview-card img,
  .facility-card img,
  .award-card img {
    height: 180px;
  }

  .gallery-track img {
    height: 240px;
  }

  .stat-box {
    width: 100%;
  }
}


/*
|--------------------------------------------------------------------------
| Compact horizontal category navigation
|--------------------------------------------------------------------------
*/
.category-scroll {
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    padding: 7px 3%;
    overflow: hidden;
    border-bottom: 1px solid #eadbc9;
    background: rgba(255, 250, 244, 0.98);
    box-shadow: 0 5px 16px rgba(43, 22, 8, 0.08);
    backdrop-filter: blur(10px);
}

.category-scroll-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2px 0 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: #b87333 transparent;
    -webkit-overflow-scrolling: touch;
}

.category-scroll-inner::-webkit-scrollbar {
    height: 3px;
}

.category-scroll-inner::-webkit-scrollbar-track {
    background: transparent;
}

.category-scroll-inner::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #b87333;
}

.category-scroll a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 29px;
    padding: 5px 11px;
    border: 1px solid #e4cfb8;
    border-radius: 20px;
    background: #ffffff;
    color: #4a2b15;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.category-scroll a:hover {
    border-color: #8b572a;
    background: #f9efe4;
    color: #8b572a;
}

.category-scroll a.active {
    border-color: #2b1608;
    background: #2b1608;
    color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Correct anchor position below sticky category navigation
|--------------------------------------------------------------------------
*/
.category-block {
    margin-bottom: 52px;
    scroll-margin-top: 70px;
}

.category-block:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .category-scroll {
        padding: 6px 3%;
    }

    .category-scroll-inner {
        gap: 5px;
    }

    .category-scroll a {
        min-height: 27px;
        padding: 5px 9px;
        font-size: 10px;
    }

    .category-block {
        scroll-margin-top: 62px;
    }
}

@media (max-width: 480px) {
    .category-scroll {
        padding: 5px 12px;
    }

    .category-scroll a {
        min-height: 26px;
        padding: 4px 9px;
        font-size: 10px;
    }
}

@media (max-width: 1050px) {
    #mobileMenuToggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10005 !important;
    }
}