/* ===== Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

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

:root {
  --navy: #1B3A5C;
  --navy-dark: #142d48;
  --navy-light: #224a73;
  --cream: #E8D1BD;
  --cream-dark: #d4b89e;
  --cream-light: #f5e8dc;
  --white: #ffffff;
  --bg: #f8f7f5;
  --bg-alt: #f0eeeb;
  --text-dark: #2c2c2c;
  --text-body: #4a4a4a;
  --text-muted: #8a8a8a;
  --border: #e2ddd8;
  --border-light: #ece8e3;
  --radius: 10px;
  --transition: .3s ease;
  --max-w: 1140px;
  --shadow-sm: 0 2px 8px rgba(27,58,92,.06);
  --shadow-md: 0 8px 30px rgba(27,58,92,.08);
  --shadow-lg: 0 16px 50px rgba(27,58,92,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
ul, li { list-style: none; list-style-type: none; }
li { display: block; }
li::marker, ul::marker { content: none !important; display: none !important; font-size: 0 !important; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6px 20px;
}

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

.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--cream);
  padding: 2px;
  background: var(--white);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .logo-title {
  font-family: 'Heebo', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
}

.logo-text .logo-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.nav { display: flex; align-items: center; gap: 0; }

.nav a {
  padding: 22px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}

.nav a:hover,
.nav a.active { color: var(--navy); }

.nav a::after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 16px; left: 16px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }

/* WordPress menu reset */
.nav ul.menu,
.nav > ul { display: flex; align-items: center; gap: 0; list-style: none !important; margin: 0; padding: 0; }
.nav ul.menu li,
.nav > ul > li,
.nav > li { list-style: none !important; list-style-type: none !important; margin: 0; padding: 0; }
.nav > li > a,
.nav ul.menu li a,
.nav > ul > li > a {
  padding: 22px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
  display: block;
  text-decoration: none;
}
.nav > li > a:hover,
.nav ul.menu li a:hover,
.nav > ul > li > a:hover { color: var(--navy); }
.nav > li > a::after,
.nav ul.menu li a::after,
.nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 16px; left: 16px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav > li > a:hover::after,
.nav ul.menu li a:hover::after,
.nav > ul > li > a:hover::after { transform: scaleX(1); }
.nav > li.current-menu-item > a,
.nav ul.menu li.current-menu-item > a,
.nav ul.menu li.current_page_item > a { color: var(--navy); }
.nav > li.current-menu-item > a::after,
.nav ul.menu li.current-menu-item > a::after,
.nav ul.menu li.current_page_item > a::after { transform: scaleX(1); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  margin-right: 10px !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy-dark) !important; }

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

.menu-toggle span {
  width: 28px; height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/marble-bg.jpg') center/cover no-repeat;
  filter: brightness(.35) contrast(1.1) saturate(.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,58,92,.6) 0%, rgba(20,45,72,.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

.hero-content h1 {
  font-family: 'Heebo', sans-serif;
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}

.hero-content h2 {
  font-family: 'Heebo', sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}

.hero-tagline {
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-tagline span {
  margin: 0 10px;
  opacity: .6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-cream {
  background: var(--cream);
  color: var(--navy);
}
.btn-cream:hover { background: var(--cream-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-black {
  background: var(--navy) !important;
  color: var(--white) !important;
  border: 2px solid var(--navy);
}
.btn-black:hover { background: var(--navy-dark) !important; border-color: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.hero .btn-black {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.hero .btn-black:hover { background: rgba(255,255,255,.25); }

.btn-custom {
  border: 2px solid transparent;
}
.btn-custom:hover { opacity:.85; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== CONSULTATION BAR ===== */
.consult-bar {
  position: relative;
  z-index: 10;
  margin-top: -70px;
  margin-left: 40px;
  margin-right: 40px;
  background: var(--navy);
  border-radius: 12px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.consult-bar h3 {
  font-family: 'Heebo', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.consult-form {
  display: flex;
  gap: 12px;
  max-width: 750px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.consult-form input {
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  direction: rtl;
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.consult-form input::placeholder { color: rgba(255,255,255,.6); }
.consult-form input:focus { outline: none; border-color: var(--cream); background: rgba(255,255,255,.15); }

.consult-form button {
  padding: 14px 30px;
  background: var(--cream);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.consult-form button:hover { background: var(--cream-dark); transform: translateY(-1px); }

/* ===== PILLARS ===== */
.pillars {
  padding: 60px 0;
  background: var(--white);
}

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

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  padding: 40px 24px 32px;
  transition: var(--transition);
  border-radius: 12px;
}

.pillar:hover {
  border-color: var(--cream);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--navy);
  background: var(--cream-light);
  border: 2px solid var(--cream);
  border-radius: 50%;
}

.pillar h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.pillar p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  font-weight: 400;
}

/* ===== ABOUT ===== */
.about-section {
  padding: 80px 0;
  background: var(--bg);
}

.about-heading {
  font-family: 'Heebo', sans-serif;
  font-size: 70px;
  font-weight: 900;
  text-align: center;
  color: var(--navy);
  margin-bottom: 30px;
  line-height: 1.2;
  -webkit-text-stroke: 0;
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.9;
}

.about-text p { margin-bottom: 16px; }

.about-cta {
  text-align: center;
  margin-top: 30px;
}

/* ===== CATEGORIES GRID ===== */
.categories-section {
  padding: 60px 0;
  background: var(--white);
}

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

.category-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  display: block;
  box-shadow: var(--shadow-sm);
}

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

.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: var(--transition);
}

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

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27,58,92,.8) 0%, rgba(27,58,92,.15) 50%, transparent 100%);
  pointer-events: none;
}

.category-card h3 {
  position: absolute;
  bottom: 20px;
  right: 0; left: 0;
  text-align: center;
  z-index: 2;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.category-card .img-placeholder {
  position: absolute;
  inset: 0;
}
.category-card-desc {
  position: absolute;
  bottom: 50px;
  right: 0; left: 0;
  text-align: center;
  z-index: 2;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  padding: 0 12px;
  margin: 0;
}

/* ===== STONE TYPES ===== */
.stones-section {
  padding: 60px 0;
  background: var(--bg);
}

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

.stone-card {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.stone-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stone-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: var(--transition);
}

.stone-card:hover img { transform: scale(1.06); }

.stone-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27,58,92,.7) 0%, transparent 60%);
}

.stone-card h4 {
  position: absolute;
  bottom: 12px;
  right: 0; left: 0;
  text-align: center;
  z-index: 2;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

/* ===== SERVICES ===== */
.services-section {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
}

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

.service-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(255,255,255,.12);
  transition: var(--transition);
  background: rgba(255,255,255,.05);
  border-radius: 12px;
}

.service-card:hover {
  border-color: var(--cream);
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--cream);
  border: 2px solid rgba(232,209,189,.3);
  border-radius: 50%;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: 'Heebo', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  -webkit-text-stroke: 0;
}

.services-section .section-title h2 {
  color: var(--white);
}

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

.services-section .section-title p {
  color: rgba(255,255,255,.6);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 70px 0;
  background: var(--bg-alt);
}

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

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 30px;
  position: relative;
  transition: var(--transition);
  border-radius: 12px;
}

.testimonial:hover {
  border-color: var(--cream);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial::before {
  content: '\201D';
  font-family: 'Heebo', sans-serif;
  font-size: 80px;
  color: var(--cream);
  position: absolute;
  top: 5px; right: 18px;
  line-height: 1;
  opacity: .3;
}

.stars { color: #f5a623; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }

.testimonial p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

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

/* ===== CONTACT ===== */
.contact-section {
  padding: 70px 0;
  background: var(--white);
}

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

.contact-info h3 {
  font-family: 'Heebo', sans-serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 700;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding: 12px;
  transition: var(--transition);
  border-radius: 8px;
}

.contact-item:hover { background: var(--bg); }

.contact-icon {
  width: 48px; height: 48px;
  background: var(--cream-light);
  border: 2px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--navy);
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.contact-item h4 { font-size: 15px; color: var(--text-dark); margin-bottom: 2px; font-weight: 700; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--text-body); }
.contact-item a:hover { color: var(--navy); }

/* Contact Form */
.contact-form {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  direction: rtl;
  transition: var(--transition);
  color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.5); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--cream);
  background: rgba(255,255,255,.12);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--cream);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.form-submit:hover { background: var(--cream-dark); transform: translateY(-1px); }

/* ===== FAQ ===== */
.faq-section {
  padding: 70px 0;
  background: var(--bg);
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition);
  border-radius: 8px;
  background: var(--white);
}

.faq-item.active { border-color: var(--navy); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: var(--white);
  border: none;
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: var(--transition);
  gap: 14px;
}

.faq-question:hover { background: var(--bg); }

.faq-question .arrow { font-size: 12px; color: var(--text-muted); transition: var(--transition); }

.faq-item.active .faq-question { background: var(--cream-light); color: var(--navy); }
.faq-item.active .arrow { transform: rotate(180deg); color: var(--navy); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/marble-bg.jpg') center/cover;
  filter: brightness(.35) contrast(1.1) saturate(.7);
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,58,92,.65) 0%, rgba(20,45,72,.8) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 50px 20px;
}

.page-hero h2 {
  font-family: 'Heebo', sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.page-hero p {
  font-size: 18px;
  color: var(--cream);
  margin-top: 10px;
}

/* ===== SERVICES DETAIL (inner page) ===== */
.services-detail { padding: 60px 0; background: var(--bg); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child { border-bottom: none; }
.service-block:nth-child(even) { direction: ltr; }
.service-block:nth-child(even) .service-block-text { direction: rtl; text-align: right; }

.service-block-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-block-text h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-block-text p {
  color: var(--text-body);
  line-height: 1.85;
  font-size: 15px;
}

.about-list { margin-top: 16px; }

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-dark);
}

.about-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  font-weight: 800;
}

/* ===== CATALOG GRID ===== */
.catalog-content { padding: 60px 0; background: var(--bg); }

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

.catalog-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  display: block;
  box-shadow: var(--shadow-sm);
}

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

.catalog-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.catalog-card:hover img { transform: scale(1.06); }

.catalog-card .img-placeholder {
  position: absolute;
  inset: 0;
}

.catalog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27,58,92,.8) 0%, transparent 50%);
  pointer-events: none;
}

.catalog-card h4 {
  position: absolute;
  bottom: 16px;
  right: 0; left: 0;
  text-align: center;
  z-index: 2;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.catalog-card-desc {
  position: absolute;
  bottom: 44px;
  right: 0; left: 0;
  text-align: center;
  z-index: 2;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  padding: 0 10px;
  margin: 0;
}

/* ===== PRIVACY ===== */
.privacy-hero {
  padding: 60px 20px 30px;
  text-align: center;
  background: var(--white);
}

.privacy-hero h1 {
  font-family: 'Heebo', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}

.privacy-content {
  padding: 30px 20px 60px;
  max-width: 860px;
  margin: 0 auto;
}

.privacy-content h3 {
  font-size: 22px;
  color: var(--navy);
  margin: 32px 0 12px;
  font-weight: 700;
}

.privacy-content h3:first-of-type {
  margin-top: 10px;
}

.privacy-content p {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 12px;
  font-size: 15px;
}

.privacy-content a { color: var(--navy); transition: var(--transition); font-weight: 600; }
.privacy-content a:hover { color: var(--navy-light); }

.privacy-content + .consult-bar {
  margin-top: 0;
}

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

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,.15);
  transition: opacity .3s ease;
}

.lightbox.active .lightbox-img {
  animation: lb-zoom-in .4s cubic-bezier(.25,.46,.45,.94);
}

@keyframes lb-zoom-in {
  from { transform: scale(.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,.06);
  border: 1px solid #d1d5db;
  border-radius: 50%;
  color: #374151;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.lightbox-close:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,.06);
  border: 1px solid #d1d5db;
  border-radius: 50%;
  color: #374151;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.lightbox-prev { right: 20px; }
.lightbox-next { left: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  letter-spacing: 2px;
  background: rgba(0,0,0,.3);
  padding: 6px 18px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .lightbox-prev { right: 10px; }
  .lightbox-next { left: 10px; }
  .lightbox-close { top: 12px; left: 12px; width: 40px; height: 40px; font-size: 16px; }
  .lightbox-img { max-width: 95vw; max-height: 80vh; border-width: 2px; }
}

/* ===== BLOG ===== */
.blog-section {
  padding: 60px 0;
  background: var(--bg);
}

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  border-radius: 12px;
}

.blog-card:hover {
  border-color: var(--cream);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.blog-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  z-index: 2;
}

.blog-card-body {
  padding: 22px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.blog-meta i {
  margin-left: 5px;
  color: var(--navy);
  font-size: 12px;
}

.blog-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.5;
  transition: var(--transition);
}

.blog-card:hover .blog-card-body h3 {
  color: var(--navy);
}

.blog-card-body p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.blog-read-more:hover {
  color: var(--navy-light);
  gap: 10px;
}

/* ===== BLOG ARTICLE PAGE ===== */
.blog-article-hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.blog-article-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.35) contrast(1.1);
}

.blog-article-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,58,92,.6) 0%, rgba(20,45,72,.8) 100%);
}

.blog-article-hero .container {
  position: relative;
  z-index: 2;
  padding: 60px 20px 40px;
  max-width: 860px;
}

.blog-article-hero .blog-tag {
  position: static;
  display: inline-block;
  margin-bottom: 16px;
}

.blog-article-hero h1 {
  font-family: 'Heebo', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.blog-article-hero .blog-meta {
  justify-content: center;
  color: rgba(255,255,255,.7);
  margin-bottom: 0;
}

.blog-article-hero .blog-meta i {
  color: var(--cream);
}

.blog-article-content {
  padding: 50px 20px 60px;
  max-width: 820px;
  margin: 0 auto;
}

.blog-article-content h2 {
  font-family: 'Heebo', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 16px;
  line-height: 1.4;
}

.blog-article-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}

.blog-article-content p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.95;
  margin-bottom: 18px;
}

.blog-article-content ul,
.blog-article-content ol {
  margin: 16px 0 20px 0;
  padding-right: 24px;
  list-style: initial;
}

.blog-article-content ul li,
.blog-article-content ol li {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 8px;
}

.blog-article-content blockquote {
  border-right: 4px solid var(--navy);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--cream-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.8;
}

.blog-article-content .article-img {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.blog-article-content .article-img img {
  width: 100%;
  height: auto;
}

.blog-article-content .article-img figcaption {
  padding: 10px 16px;
  background: var(--bg);
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.blog-article-content strong {
  color: var(--navy);
  font-weight: 700;
}

/* Article Author / Share */
.article-footer {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.article-author-avatar {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}

.article-author-info span { display: block; }
.article-author-info .author-name { font-weight: 700; color: var(--text-dark); font-size: 15px; }
.article-author-info .author-role { font-size: 13px; color: var(--text-muted); }

.article-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-share span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.article-share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid var(--border);
  color: var(--text-body);
  transition: var(--transition);
}

.article-share a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Related Articles */
.related-articles {
  padding: 60px 0;
  background: var(--bg);
}

.related-articles .section-title {
  margin-bottom: 30px;
}

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

.blog-breadcrumb {
  padding: 14px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-muted);
  max-width: var(--max-w);
  margin: 0 auto;
}

.blog-breadcrumb a {
  color: var(--navy);
  font-weight: 600;
  transition: var(--transition);
}

.blog-breadcrumb a:hover { color: var(--navy-light); }
.blog-breadcrumb span { margin: 0 8px; }

@media (max-width: 768px) {
  .blog-article-hero h1 { font-size: 32px; }
  .blog-article-hero { min-height: 280px; }
  .blog-article-content h2 { font-size: 24px; }
  .related-grid { grid-template-columns: 1fr; }
  .article-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 992px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-img { height: 200px; }
}

/* Blog card links */
.blog-card-body h3 a { color: inherit; text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--navy); }

/* Pagination */
.pagination { text-align: center; margin-top: 40px; }
.pagination .nav-links { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 12px;
  background: var(--white); color: var(--navy);
  border: 1px solid var(--border); border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: var(--transition);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.pagination .page-numbers.dots { background: transparent; border: none; }

/* ===== CATEGORY DETAIL PAGE ===== */
.category-hero {
  padding: 50px 20px 30px;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.category-hero h1 {
  font-family: 'Heebo', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.category-desc {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.9;
}

.category-desc span {
  color: var(--navy);
  font-weight: 600;
}

.category-cta {
  text-align: center;
  margin-bottom: 10px;
}

.category-cta .btn {
  font-size: 20px;
  padding: 16px 40px;
}

.category-gallery {
  padding: 40px 0 60px;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
}

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

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

.gallery-desc {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #fff;
  padding: 30px 12px 10px;
  font-size: 13px;
  text-align: center;
  z-index: 2;
}

.gallery-desc:empty { display: none; }

.category-info {
  padding: 50px 0;
  background: var(--white);
}

.category-info .container {
  max-width: 900px;
}

.category-info h2 {
  font-family: 'Heebo', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}

.category-info p {
  color: var(--text-body);
  line-height: 1.85;
  font-size: 16px;
  margin-bottom: 14px;
}

.category-info ul {
  list-style: none;
  margin: 16px 0;
}

.category-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-dark);
}

.category-info ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .category-hero h1 { font-size: 44px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-item { aspect-ratio: 4/3; }
  .category-info h2 { font-size: 28px; }
}

/* ===== FOOTER CONTACT STRIP ===== */
.footer-contact {
  background: var(--navy);
  padding: 40px 0;
}

.footer-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}

.footer-contact-col {
  text-align: center;
}

.footer-contact-col h3 {
  font-family: 'Heebo', sans-serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
}

.fc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  justify-content: center;
}

.fc-icon {
  width: 42px;
  height: 42px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--cream);
  flex-shrink: 0;
  transition: var(--transition);
}

.fc-item:hover .fc-icon {
  background: var(--cream);
  color: var(--navy);
}

.fc-item a, .fc-item span {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}

.fc-item a:hover { color: var(--cream); }

.fc-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
  margin: 0 auto;
}

.fc-form input {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  direction: rtl;
  color: var(--white);
  transition: var(--transition);
}

.fc-form input::placeholder { color: rgba(255,255,255,.5); }
.fc-form input:focus { outline: none; border-color: var(--cream); }

.fc-form button {
  padding: 12px;
  background: var(--cream);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.fc-form button:hover { background: var(--cream-dark); }

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

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 50px 0;
  background: var(--cream-light);
  text-align: center;
}

.cta-section h2 {
  font-family: 'Heebo', sans-serif;
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 10px;
}

.cta-section p { color: var(--text-body); margin-bottom: 24px; }

.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btns .btn-black { color: var(--white) !important; }
.cta-btns .btn-cream { color: var(--navy) !important; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 50px 0 0;
}

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

.footer-col h4 { color: var(--cream); font-size: 17px; margin-bottom: 14px; font-weight: 700; }
.footer-col p { font-size: 14px; line-height: 1.8; opacity: .7; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: 14px; opacity: .6; transition: var(--transition); }
.footer-col ul li a:hover { opacity: 1; color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  opacity: .45;
}

/* ===== PHONE FLOAT ===== */
.phone-float {
  position: fixed;
  bottom: 28px; left: 100px;
  width: 62px; height: 62px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(27,58,92,.4), 0 0 0 4px rgba(27,58,92,.12);
  z-index: 999;
  transition: var(--transition);
  animation: phone-pulse 2.5s infinite;
}

.phone-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(27,58,92,.5), 0 0 0 6px rgba(27,58,92,.18);
}

@keyframes phone-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(27,58,92,.4), 0 0 0 4px rgba(27,58,92,.12); }
  50% { box-shadow: 0 6px 24px rgba(27,58,92,.4), 0 0 0 10px rgba(27,58,92,.06); }
}

/* ===== WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 6px 24px rgba(37,211,102,.4), 0 0 0 4px rgba(37,211,102,.12);
  z-index: 999;
  transition: var(--transition);
  animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.5), 0 0 0 6px rgba(37,211,102,.18);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4), 0 0 0 4px rgba(37,211,102,.12); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,.4), 0 0 0 10px rgba(37,211,102,.06); }
}

/* ===== FOOTER ICONS ===== */
.footer-col ul li i { margin-left: 8px; color: var(--cream); font-size: 13px; }

/* ===== PLACEHOLDERS ===== */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #e8e4e0, #d8d4d0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,.08);
  font-size: 40px;
}

/* ===== COUNTER ===== */
.counter-section {
  padding: 40px 0;
  background: var(--navy);
}

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

.counter-item h3 {
  font-family: 'Heebo', sans-serif;
  font-size: 44px;
  color: var(--cream);
  font-weight: 700;
}

.counter-item p { font-size: 15px; color: rgba(255,255,255,.65); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-content h1 { font-size: 70px; }
  .hero-content h2 { font-size: 50px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .stones-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .service-block { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .about-heading { font-size: 50px; }
  .section-title h2 { font-size: 34px; }
  .consult-bar { margin-left: 20px; margin-right: 20px; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%; right: 0; left: 0;
    background: var(--white);
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    border-top: 1px solid var(--border-light);
  }

  .nav.open { display: flex; }
  .nav a { padding: 14px 24px; border-bottom: 1px solid var(--border-light); }
  .nav > li { list-style: none; width: 100%; }
  .nav > li > a { display: block; padding: 14px 24px; border-bottom: 1px solid var(--border-light); }
  .nav ul.menu, .nav > ul { flex-direction: column; width: 100%; }
  .nav ul.menu li, .nav > ul > li { width: 100%; }
  .nav ul.menu li a, .nav > ul > li > a { padding: 14px 24px; border-bottom: 1px solid var(--border-light); }
  .nav a::after, .nav > li > a::after { display: none; }
  .nav ul.menu li a::after, .nav > ul > li > a::after { display: none; }
  .nav-cta { margin-right: 0 !important; margin-top: 5px; text-align: center; }
  .menu-toggle { display: flex; }
  .logo-text .logo-title { font-size: 18px; }
  .logo-text .logo-sub { font-size: 10px; }
  .logo-img { height: 46px; }

  .hero { min-height: 400px; }
  .hero-content h1 { font-size: 48px; }
  .hero-content h2 { font-size: 36px; }
  .hero-tagline { font-size: 16px; }
  .consult-bar { margin: -40px 12px 0; padding: 20px; border-radius: 10px; }
  .consult-form { flex-direction: column; }
  .categories-grid, .catalog-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 280px; }
  .stones-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-grid .footer-col:first-child { display: none; }
  .footer-col h4 { font-size: 15px; margin-bottom: 10px; }
  .footer-col ul li { margin-bottom: 5px; }
  .footer-col ul li a, .footer-col ul li { font-size: 13px; }
  .about-heading { font-size: 36px; }
  .section-title h2 { font-size: 28px; }
  .page-hero h2 { font-size: 38px; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item h3 { font-size: 34px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 36px; }
  .hero-content h2 { font-size: 28px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .page-hero h2 { font-size: 30px; }
  .stones-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-col:first-child { display: none; }
  .footer-col { text-align: center; }
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 16px;
}

.preloader-text {
  font-family: 'Heebo', sans-serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 1px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  z-index: 1001;
  background: transparent;
}

.scroll-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--navy), var(--cream), var(--navy));
  transition: width .1s linear;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  left: 28px;
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .35s ease;
  box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
}

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Section fade-in */
.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}

.section-reveal.section-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
  text-align: center;
  padding: 8px 0;
  background: var(--bg);
  position: relative;
}

.section-divider::before {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
  margin: 0 auto;
}

/* ===== STICKY MOBILE CTA ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 997;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}

.mobile-cta-bar .cta-inner {
  display: flex;
  gap: 10px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.mobile-cta-bar .cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-cta-bar .cta-btn-phone {
  background: var(--navy);
  color: var(--white);
}

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

/* ===== LAZY LOAD ===== */
img[data-src] {
  opacity: 0;
  transition: opacity .4s ease;
}

img.lazy-loaded {
  opacity: 1;
}

/* ===== RESPONSIVE: mobile CTA bar + adjust bottom spacing ===== */
@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }

  .footer { padding-bottom: 70px; }

  .phone-float { bottom: 80px; left: 100px; }

  .whatsapp-float { bottom: 80px; }

  .back-to-top { bottom: 150px; }
}
