/* ============================================================
   EARTHCORE MINERALS — style.css
   ============================================================ */

:root {
  --amber: #c8761a;
  --amber-dk: #A56B3A;
  --amber-lt: #f0a84a;
  --brown: #5c3a1e;
  --dark: #1a1208;
  --dark2: #1D0F03;
  --mid: #6b5230;
  --sand: #f5ede0;
  --sand2: #ede0cc;
  --white: #ffffff;
  --text: #222222;
  --text-lt: #565656;
  --radius: 20px 0 20px 0;
  --shadow: 0 4px 24px rgba(0, 0, 0, .12);
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-lt);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
}

.container-fluid {
  margin: 0 auto;
  padding: 0 50px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--amber-dk);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-size: 1.1rem;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--text);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-size: 1.1rem;
  transition: background var(--transition), color var(--transition);
}

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

.btn-quote {
  background: var(--amber-dk);
  color: var(--white);
  padding: .70rem 1.4rem;
  border-radius: var(--radius);
  white-space: nowrap;
  font-size: .88rem;
  font-weight: 500;
  transition: background var(--transition);
}

.btn-quote:hover {
  background: var(--text);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .1);
  transition: box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

.logo-icon {
  display: grid;
  grid-template-columns: repeat(3, 7px);
  grid-template-rows: repeat(3, 7px);
  gap: 2px;
}

.logo-icon span {
  background: var(--amber);
  border-radius: 1px;
}

.logo-icon span:nth-child(1),
.logo-icon span:nth-child(4),
.logo-icon span:nth-child(7) {
  background: var(--amber-dk);
}

.logo-white .logo-icon span {
  background: var(--white);
}

.logo-white .logo-text strong,
.logo-white .logo-text em {
  color: var(--white);
}

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

.logo-text strong {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--dark);
}

.logo-text em {
  font-style: normal;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--amber);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: .5rem .5rem;
  font-size:.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  position: relative;
}

.nav-link:hover {
  color: var(--amber);
  background: rgba(200, 118, 26, .07);
}

.nav-link.active {
  color: var(--dark);
  background: transparent;
}

.nav-link.active::before {
  content: '';
  position: absolute;
  left:7px;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D6B788;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: calc(7px + 12px);
  bottom: 0;
  width: 22px;
  height: 6px;
  border-radius: 4px;
  background: var(--amber-dk);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  background: var(--white);
  border: 1px solid #e8d8c4;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
  overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: .65rem 1rem;
  font-size: .88rem;
  color: var(--text);
  border-bottom: 1px solid #f0e4d4;
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: var(--sand);
  color: var(--amber);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%);
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  z-index: 999;
  overflow-y: auto;
}

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

.mobile-menu-inner {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.mob-link {
  display: block;
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, .8);
  font-size: 1.15rem;
  font-weight: 500;
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.mob-link:hover,
.mob-link.active {
  color: var(--amber-lt);
  border-left-color: var(--amber);
  background: rgba(200, 118, 26, .1);
}

.mob-cta {
  display: block;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--amber);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-align: center;
  letter-spacing: .04em;
  transition: background var(--transition);
}

.mob-cta:hover {
  background: var(--amber-lt);
  color: var(--dark);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 520px;
  max-height: 940px;
  margin-top: 100px;
  overflow: hidden;
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .9s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide.active {
  animation: heroZoom 6s ease-out forwards;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(100deg, rgba(20,10,0,.72) 0%, rgba(20,10,0,.35) 60%, rgba(20,10,0,.15) 100%);*/
}

.hero-content {
  position: absolute;
  bottom: 30%;
  left: 5%;
  right: 5%;
  margin: auto;
  text-align: center;
  max-width: 980px;
  z-index: 2;
  color: var(--white);
}

.hero-content h1,
.hero-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.hero-content p {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 900px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}

.hero-slide.active .hero-content h1,
.hero-slide.active .hero-content h2,
.hero-slide.active .hero-content p,
.hero-slide.active .hero-btns {
  opacity: 1;
  transform: translateY(0);
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, .18);
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}

.hero-prev {
  left: 1.5rem;
}

.hero-next {
  right: 1.5rem;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(200, 118, 26, .7);
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.dot.active {
  background: var(--amber-lt);
  transform: scale(1.3);
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-header.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--amber-dk);
  margin-bottom: .6rem;
}

.section-header p {
  color: var(--text-lt);
  font-size:16.8px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  padding: 5rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-images.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.about-img-main {
  width: 85%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-img-sm {
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: 46%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

.about-dot-grid {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, var(--amber) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: .35;
  z-index: -1;
}

.about-content {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.about-content.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.about-content h2 {

  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  color: var(--amber-dk);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.about-content p {
  color: var(--text-lt);
  margin-bottom: 1rem;
  font-size: 16.8px;
  text-align:justify;
}

.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin: 1.5rem 0 2rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
 font-size: 16.8px;
  color: var(--text-lt);
}

.check-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   GRADES GRID
   ============================================================ */
.grades {
  padding: 5rem 0;
  background: var(--sand);
}

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

.grade-card {




  cursor: pointer;
}


.grade-img {
  height: 360px;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform var(--transition);
}

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

.grade-info {

  padding: .85rem 0;
  text-align: center;
}

.grade-info h3 {
  font-size: 16.8px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 7rem 2rem;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  /*background: rgba(26,18,8,.75);*/
}

.cta-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.cta-content>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-content.animate-in>* {
  opacity: 1;
  transform: translateY(0);
}

.cta-content.animate-in h2 {
  transition-delay: 0s;
}

.cta-content.animate-in p {
  transition-delay: 0.15s;
}

.cta-content.animate-in .btn-primary {
  transition-delay: 0.3s;
}

.cta-content h2 {
  font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  margin-bottom: .75rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}


/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--sand2) 0%, var(--sand) 100%);
}

.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, .2);
  max-width: 900px;
  margin: 0 auto;
}

.video-thumb {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(200, 118, 26, .85);
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.play-btn:hover {
  background: var(--amber);
  transform: translate(-50%, -50%) scale(1.08);
}

.play-btn svg {
  width: 60px;
  height: 60px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  padding: 5rem 0;
  background: var(--white);
}

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

.feature-card {
  border: 1px solid #C79D63;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: all ease-in-out 0.5s;

}

.feature-card:hover {
  border-color: var(--amber-lt);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);

}

.feature-icon {
  margin: 0 0 1.25rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--amber-dk);
  margin-bottom: .6rem;
}

.feature-card p {
  font-size:16.8px;
  color: var(--text-lt);
  line-height: 1.6;
  text-align:justify;
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.bottom-cta {
  background: var(--amber-dk);
  padding: 3rem 0;
}

.bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.bottom-cta h2 {
  font-weight: 600;
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: .5rem;
}

.bottom-cta p {
  color: var(--white);
  font-size:16.8px;
  max-width: 1120px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  color: var(--text-dk);
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1.1rem;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark2);
  color: rgba(255, 255, 255, .75);
}

.footer-top {
  padding: 5rem 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  flex-direction: column;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
}

.footer-social a.insta {
  background: linear-gradient(45deg, #FAAD4F 14.61%, #DD2A7B 39.38%, #9537B0 58.49%, #515BD4 85.39%);
}

.footer-social a.linkedin {
  background: #007EBB;
}

.footer-social a.fb {
  background: #1877F2;
}

.footer-social a svg {
  width: 24px;
  height: 24px;
}

.footer-social a:hover {
  background: var(--amber);
}

.footer-main {
  padding: 5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-grid .footer-col {
  border: 1px solid rgba(214, 183, 136, 0.3);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.footer-contact-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

a {
  transition: all ease-in-out 0.5s;
}

.footer-contact-item a {
  color: #fff;
}

.footer-contact-item a:hover {
  color: var(--amber-lt);
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: #D6B788;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item strong {
  display: block;
  color: var(--amber-dk);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .3rem;
}

.footer-contact-item p {
  font-size:16.8px;
  line-height: 1.6;
  color: var(--white);
}


.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .6);
}

.footer-bottom a {
  color: var(--amber-lt);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: white;
}

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

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200, 118, 26, .35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .35s ease, visibility .35s ease, transform .35s ease, background .25s ease, box-shadow .25s ease;
}

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

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.back-to-top:hover {
  background: var(--amber-dk);
  box-shadow: 0 6px 28px rgba(200, 118, 26, .5);
  transform: translateY(-3px);
}

/* ============================================================
   INNER PAGE HERO (shared)
   ============================================================ */
.inner-hero {
  margin-top: 100px;
  padding: 8rem 2rem 6rem;
  background: linear-gradient(120deg, var(--dark) 0%, var(--brown) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.inner-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: .75rem;
  opacity: 0;
  animation: slideDownHero 1s ease forwards;
}

.inner-hero p {
  font-size: 1.15rem;
  opacity: 0;
  animation: slideUpHeroText 0.8s ease 0.3s forwards;
}

.inner-hero .breadcrumb {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  opacity: 0;
  animation: slideUpHero 0.8s ease 0.5s forwards;
}

.inner-hero .breadcrumb a {
  color: var(--amber-lt);
}

@keyframes slideDownHero {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpHeroText {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 0.8;
    transform: translateY(0);
  }
}

@keyframes slideUpHero {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-main {
  padding: 5rem 0;
}

.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-main-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.about-main-grid h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.about-main-grid p {
  color: var(--text-lt);
  margin-bottom: 1rem;
  font-size: .97rem;
}

/* ── About Page Full Redesign ── */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

/* Image column */
.about-page-img-col {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-page-img-col.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.about-page-img-wrap {
  position: relative;
}

.about-page-main-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 16px 56px rgba(0, 0, 0, .18);
  display: block;
}

.about-page-main-img.h-800 {
  height: 800px;
}

.about-page-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--amber-dk);
  color: var(--white);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(165, 107, 58, .35);
  min-width: 130px;
}

.about-page-badge .badge-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.about-page-badge .badge-txt {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  margin-top: .3rem;
  opacity: .9;
}

/* Content column */
.about-page-content-col {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.about-page-content-col.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(200, 118, 26, .1);
  border: 1px solid rgba(200, 118, 26, .25);
  border-radius: 30px;
  padding: .3rem 1.1rem;
  margin-bottom: 1rem;
}

.about-page-content-col h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.4rem;
}

.about-page-content-col p {
  color: var(--text-lt);
  font-size: 16.8px;
  line-height: 1.75;
  margin-bottom: 1rem;text-align:justify;
}

.about-page-content-col p strong {
  color: var(--amber-dk);
  font-weight: 600;
}

/* About check list */
.about-check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem 1.5rem;
  margin-top: 1.75rem;
}

.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size:16.8px;
  color: var(--text-lt);
  font-weight: 500;
}

.about-check-list .check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  margin-top:2px;
}

.about-check-list .check-icon svg {
  width: 22px;
  height: 22px;
}

/* ── Mission & Vision ── */
.mv-section {
  padding: 5.5rem 0;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.mv-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: var(--amber);
  opacity: .06;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.mv-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.75rem 2.5rem;
  box-shadow: 0 4px 32px rgba(0, 0, 0, .07);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
}

.mv-card--mission {
  border-top: 4px solid var(--amber);
}

.mv-card--vision {
  border-top: 4px solid var(--amber-dk);
}

.mv-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 118, 26, .1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--amber);
}

.mv-icon svg {
  width: 30px;
  height: 30px;
}

.mv-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--amber-dk);
  margin-bottom: 1rem;
}

.mv-card p {
  color: var(--text-lt);
  font-size: 1.05rem;
  line-height: 1.8;margin-bottom: 20px;text-align:justify;
}
.mv-card p:last-child{
	margin-bottom:0
}

.mv-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--amber);
  opacity: .05;
}

/* ── About Why Choose Us ── */
.about-why {
  padding: 5.5rem 0;
}

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

.about-why-card {
  background: var(--white);
  border: 1px solid #e8d8c4;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  border-color: var(--amber-lt);
}

.about-why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-lt));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.about-why-card:hover::after {
  transform: scaleX(1);
}

.about-why-icon {
  width: 60px;
  height: 60px;
  background: var(--sand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  padding: 10px;
  transition: background var(--transition);
}

.about-why-card:hover .about-why-icon {
  background: rgba(200, 118, 26, .12);
}

.about-why-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.about-why-card h3 {
  font-size: 20px;
    font-weight: 600;
  color: var(--amber-dk);
  margin-bottom: .75rem;
}

.about-why-card p {
  font-size:16.8px;
  color: var(--text-lt);
  line-height: 1.7;text-align:justify;
}

.stats-bar {
  background: var(--amber);
  padding: 3rem 0;
}

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

.stat-item {
  color: var(--white);
}

.stat-item .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
}

.stat-item p {
  font-size: .9rem;
  opacity: .85;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-section {
  padding: 5rem 0;
}

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

.product-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .1);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .18);
}

.product-card-img {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: var(--amber);
  margin-bottom: .65rem;
}

.product-card-body p {
  font-size: 16.8px;
  color: var(--text-lt);
  margin-bottom: 1rem;
  text-align:justify;
}
.product-card-body .check-list li{font-size:16.8px;}
.product-card-body .check-list {
    gap: .4rem;
    margin: 1rem 0;
}
/* Product card link wrapper */
.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card-link:hover {
  color: inherit;
}

.product-btn {
  display: inline-block;
  margin-top: .75rem;
  font-size: .95rem;
  padding: .7rem 1.6rem;
}

.product-card:hover .product-btn {
  background: var(--text);
  transform: translateY(-2px);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section {
  padding: 5rem 0;
}

/* ── Gallery Filter Tabs ── */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: .65rem 1.75rem;
  border: 2px solid #e0d3c2;
  background: transparent;
  color: var(--text-lt);
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .02em;
}

.filter-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(200, 118, 26, .06);
}

.filter-btn.active {
  background: var(--amber-dk);
  border-color: var(--amber-dk);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(165, 107, 58, .3);
}

/* ── Gallery Masonry Grid ── */
.gallery-masonry {
  columns: 3;
  column-gap: 1.25rem;
}

.gallery-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: opacity .35s ease, transform .45s ease;
}

.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  transition: box-shadow var(--transition);
}

.gallery-item:hover .gallery-img-wrap {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
}

.gallery-img-wrap img {
  width: 100%;
  display: block;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

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

/* ── Gallery Overlay ── */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 8, 0) 30%, rgba(26, 18, 8, .85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .35s ease;
}

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

.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}

.gallery-zoom-icon svg {
  width: 22px;
  height: 22px;
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-caption {
  color: var(--white);
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.3;
  transform: translateY(10px);
  transition: transform .35s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-tag {
  display: inline-block;
  margin-top: .45rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-lt);
  background: rgba(200, 118, 26, .2);
  border: 1px solid rgba(240, 168, 74, .3);
  padding: .2rem .7rem;
  border-radius: 20px;
  transform: translateY(10px);
  transition: transform .35s ease .05s;
}

.gallery-item:hover .gallery-tag {
  transform: translateY(0);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  color: var(--amber);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-lt);
  margin-bottom: 2rem;
  font-size:16.8px;text-align:justify;
}

.info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-block .icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-block .icon-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--amber);
}

.info-block strong {
  display: block;
  font-size:16.8px;
  color: var(--text);
  margin-bottom: .2rem;
}

.info-block span {
  font-size:16.8px;
  color: var(--text-lt);
}

.contact-form-wrap {
  background: var(--sand);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

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

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

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #ddd2c4;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200, 118, 26, .12);
}

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

.map-embed {
  margin-top: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

/* ── Honeypot (hidden from users) ── */
.form-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* ── Form Alerts ── */
.form-alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  animation: slideDown .3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-alert-error {
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ── Field Errors ── */
.field-error {
  display: none;
  font-size: .8rem;
  color: #c62828;
  margin-top: .3rem;
  font-weight: 500;
}

.field-invalid {
  border-color: #e53935 !important;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, .1) !important;
}

/* ── Character Counter ── */
.char-count {
  display: block;
  text-align: right;
  font-size: .78rem;
  color: var(--text-lt);
  margin-top: .3rem;
  opacity: .7;
}

/* ── CAPTCHA Box ── */
.captcha-group {
  margin-bottom: 1.5rem;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid #ddd2c4;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.captcha-box:focus-within {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200, 118, 26, .1);
}

.captcha-icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 118, 26, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}

.captcha-icon svg {
  width: 22px;
  height: 22px;
}

.captcha-challenge {
  flex: 1;
}

.captcha-challenge label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-lt);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .2rem;
}

.captcha-question {
  font-size: 1rem;
  color: var(--text);
  margin: 0 !important;
}

.captcha-question strong {
  color: var(--amber-dk);
  font-size: 1.15rem;
}

.captcha-input-wrap {
  flex-shrink: 0;
}

.captcha-input-wrap input {
  width: 64px;
  height: 44px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  border: 2px solid #ddd2c4;
  border-radius: 8px;
  background: var(--sand);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  -moz-appearance: textfield;
}

.captcha-input-wrap input::-webkit-outer-spin-button,
.captcha-input-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.captcha-input-wrap input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200, 118, 26, .15);
  background: var(--white);
}

/* ── Contact Submit Button ── */
.contact-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.contact-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(165, 107, 58, .35);
}

.contact-submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}


/* ============================================================
   BENTONITE PAGE
   ============================================================ */
.bento-section {
  padding: 5rem 0;
}

.bento-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.bento-intro img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.bento-intro h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--amber);
  margin-bottom: 1rem;
}

.bento-intro p {
  color: var(--text-lt);
  margin-bottom: 1rem;
  font-size: .97rem;
}

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

.property-card {
  background: var(--sand);
  border-radius: 10px;
  padding: 1.75rem;
  border-top: 3px solid var(--amber);
}

.property-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--amber-dk);
  margin-bottom: .6rem;
}

.property-card p {
  font-size:16.8px;
  color: var(--text-lt);
  text-align:justify;
}

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

/* ── 1200px and below ── */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .container-fluid {
    padding: 0 40px;
  }

  .header-inner {
    padding: 0 40px;
    gap: 1rem;
  }

  .nav {
    gap: 1rem;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.5rem 0.6rem;
  }

  .btn-quote {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

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

/* ── 1100px and below ── */
@media (max-width: 1100px) {
  .nav {
    gap: 0.5rem;
  }

  .nav-link {
    font-size: 0.95rem;
  }

  .logo img {
    max-height: 55px;
  }

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

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

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

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

/* ── 1024px and below ── */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .btn-quote {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ── Tablet ── */
@media (max-width: 900px) {
  .inner-hero {
    margin-top: 80px;
  }

  .about-main {
    padding: 3rem 0;
  }

  .container {
    padding: 0 30px;
  }

  .container-fluid {
    padding: 0 30px;
  }

  .header-inner {
    padding: 0 30px;
    height: 80px;
  }

  .logo img {
    max-height: 55px;
  }

  .hero {
    margin-top: 80px;
    max-height: 700px;
  }

  .mobile-menu {
    top: 80px;
  }

  .about-strip {
    padding: 3.5rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    min-height: 300px;
  }

  .about-img-main {
    width: 100%;
    height: 320px;
  }

  .about-img-sm {
    width: 40%;
    height: 180px;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .grades {
    padding: 3.5rem 0;
  }

  .grade-img {
    height: 260px;
  }

  .cta-banner {
    padding: 4.5rem 1.5rem;
  }

  .why-us {
    padding: 3.5rem 0;
  }

  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* About page new sections */
  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-page-main-img {
    height: 360px;
  }

  .about-page-main-img.h-800 {
    height: 360px;
  }

  .about-page-badge {
    bottom: -1rem;
    right: -0.5rem;
    padding: 1rem 1.25rem;
    min-width: 110px;
  }

  .about-page-badge .badge-num {
    font-size: 1.8rem;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .bento-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

/* ── Mobile ── */
@media (max-width: 768px) {
  .inner-hero {
    margin-top: 70px;
  }

  .container {
    padding: 0 20px;
  }

  .container-fluid {
    padding: 0 20px;
  }

  .header-inner {
    padding: 0 20px;
    height: 70px;
    gap: 1rem;
  }

  .logo img {
    max-height: 48px;
  }

  .hero {
    margin-top: 70px;
    min-height: 400px;
    max-height: 620px;
  }

  .mobile-menu {
    top: 70px;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    bottom: 22%;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 0.75rem;
  }

  .hero-content p {
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
  }

  .hero-btns {
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
  }

  .hero-prev,
  .hero-next {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .hero-prev {
    left: 0.5rem;
  }

  .hero-next {
    right: 0.5rem;
  }

  .about-strip {
    padding: 3rem 0;
  }

  .about-grid {
    gap: 3rem;
  }

  .about-images {
    min-height: 280px;
  }

  .about-img-main {
    width: 100%;
    height: 280px;
  }

  .about-img-sm {
    width: 45%;
    height: 160px;
    bottom: -1.5rem;
  }

  .about-content h2 {
    font-size: 1.4rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .check-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .check-list li {
    font-size: 1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .grades {
    padding: 3rem 0;
  }

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

  .grade-img {
    height: 200px;
  }

  .grade-info {
    padding: 0.6rem 0;
  }

  .grade-info h3 {
    font-size: 0.95rem;
  }

  .cta-banner {
    padding: 3.5rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.4rem;
  }

  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .why-us {
    padding: 3rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feature-card {
    padding: 1.5rem 1.25rem;
  }

  .feature-card h3 {
    font-size: 1.05rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }

  .bottom-cta {
    padding: 2rem 0;
  }

  .bottom-cta h2 {
    font-size: 1.2rem;
  }

  .bottom-cta p {
    font-size: 0.95rem;
  }

  .btn-whatsapp {
    font-size: 0.95rem;
    padding: 0.7rem 1.4rem;
  }

  .footer-top {
    padding: 3rem 0 0;
  }

  .footer-main {
    padding: 3rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-contact-item strong {
    font-size: 1rem;
  }

  .footer-contact-item p {
    font-size: 0.95rem;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  .gallery-masonry {
    columns: 2;
  }

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

  .about-check-list {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

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

  .about-page-grid {
    gap: 2.5rem;
  }

  .about-page-main-img {
    height: 300px;
  }

  .about-page-main-img.h-800 {
    height: 300px;
  }

  .about-page-badge {
    bottom: -1rem;
    right: 0.5rem;
  }

  .mv-card {
    padding: 2rem 1.75rem;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-why-card {
    padding: 1.75rem 1.5rem;
  }

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

  .video-thumb {
    height: 280px;
  }
}

/* ── Small Mobile ── */
@media (max-width: 480px) {
	.inner-hero p{
		font-size:16px;
	}
	.section-header p {
        font-size:16px;
    }
	    .grade-info h3 {
        font-size: 16px;
    }
	.cta-content p {
        font-size: 16px;
    }
	.section-header p {
        font-size: 16px;
    }
	.feature-card p {
        font-size: 16px;
    }
	.about-page-content-col p,.about-check-list li,.mv-card p,.about-why-card p,.property-card p,.product-card-body p,.product-card-body .check-list li,.contact-info p,.info-block span {
		font-size: 16px;
	}
	.about-main {
        padding: 2rem 0;
    }
	.contact-form-wrap{padding:18px;}
	.bento-section{padding: 2rem 0}
	.products-section {
    padding: 2rem 0;
}
.gallery-section {
    padding: 2rem 0;
}
.contact-section {
    padding: 2rem 0;
}
  .inner-hero {
    margin-top: 60px;
    padding: 3rem 1rem 3rem;
  }

.cta-content h2 {
    font-size: 22px;
  }

  .cta-content p {
    font-size:16px;
  }

  .container {
    padding: 0 16px;
  }

  .container-fluid {
    padding: 0 16px;
  }

  .header-inner {
    padding: 0 16px;
    height: 64px;
  }

  .logo img {
    max-height: 42px;
  }

  .hero {
    margin-top: 64px;
    min-height: 360px;
    max-height: 520px;
  }

  .mobile-menu {
    top: 64px;
  }

  .hero-content {
    bottom: 18%;
    left: 4%;
    right: 4%;
  }

  .hero-content h1 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .hero-content p {
    font-size:16px;
    margin-bottom: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.65rem 1.6rem;
    font-size: 16px;
    width: auto;
    text-align: center;
  }

  .hero-prev,
  .hero-next {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .about-strip {
    padding: 2.5rem 0;
  }

  .about-grid {
    gap: 2.5rem;
  }

  .about-img-main {
    height: 220px;
  }

  .about-img-sm {
    width: 48%;
    height: 140px;
  }

  .about-dot-grid {
    width: 60px;
    height: 60px;
    top: -1rem;
    left: -0.75rem;
  }

  .about-content h2 {
    font-size: 1.25rem;
  }

  .about-content p {
    font-size:16px;
  }

  .grades {
    padding: 2.5rem 0;
  }

  .grades-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .grade-img {
    height: 170px;
  }

  .grade-info h3 {
    font-size: 0.88rem;
  }

  .cta-banner {
    padding: 2.5rem 1rem;
  }

  

  .why-us {
    padding: 2.5rem 0;
  }

  .feature-card {
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .feature-icon img {
    max-width: 48px;
  }

  .bottom-cta {
    padding: 1.75rem 0;
  }

  .bottom-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .bottom-cta h2 {
    font-size: 1.1rem;
  }

  .bottom-cta p {
    font-size: 16px;
  }
      .footer-contact-item p {
       font-size: 16px;
    }

  .footer-brand {
    gap: 1.25rem;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-social a svg {
    width: 20px;
    height: 20px;
  }

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

  .gallery-masonry {
    columns: 1;
  }

  .video-thumb {
    height: 200px;
  }

  .about-page-main-img {
    height: 240px;
  }

  .about-page-main-img.h-800 {
    height: 240px;
  }

  .about-page-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
  }

  .about-page-badge .badge-num {
    font-size: 1.6rem;
  }

  .about-check-list {
    grid-template-columns: 1fr;
  }

  .mv-section {
    padding: 3.5rem 0;
  }

  .mv-card {
    padding: 1.75rem 1.5rem;
  }

  .mv-card h3 {
    font-size: 1.2rem;
  }

  .about-why {
    padding: 3.5rem 0;
  }

  .mob-link {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
  }

  .mob-cta {
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--amber);
  opacity: .1;
  border-radius: 50%;
  filter: blur(40px);
}

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

.stat-item {
  padding: 2rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 12px;
  transition: transform var(--transition), border-color var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 118, 26, .3);
}

.stat-item .num {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--amber-lt);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.stat-item p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .05em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   GENERIC SECTION ANIMATION
   ============================================================ */
.section-animated {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width:1366px){
	.grade-img {height: 240px;}
	
}