.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 6vw;
}

/* =========================
   PAGE HEADER (GLOBAL)
   ========================= */

.page-header {
  padding: 64px 8vw 32px;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: clamp(36px, 5vw, 48px);
  margin-bottom: var(--space-sm);
}

.page-header p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
}

.back-btn {
  display: inline-block;
  margin-bottom: var(--space-md);
  background: none;
  border: none;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}
#categoryDesc:empty {
  display: none;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   NAVBAR (LOCKED)
   ========================= */

.navbar {
  position: sticky;
  top: 5px;
  width: 100%;
  background: transparent;
  z-index: 1000;
}

.nav-inner {
  height: 64px;
  padding: 0 var(--space-xl);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: black;
  text-decoration: none;
  margin-left: var(--space-lg);
}

.nav-links a.active {
  color: var(--text-dark);
  font-weight: 500;
}

.nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: #798A91;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}


/* =========================================================
   SECTION — HERO (DESKTOP FIRST)
   FILE: layout.css
   ========================================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 8vw;
  padding-bottom: 64px;
}

.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  color: #fff;
}

.hero .btn {
  background: #ffffff ;
  color: #798A91 ;
  border: none ;
}


.hero h2 {
  font-size: 32px;
  font-weight: 500;
  color: white;
  margin-bottom: var(--space-lg);
}

.hero p {
  max-width: 520px;
  margin-bottom: var(--space-lg);
  color: #fff;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
}

/* HERO BACKGROUND (UNCHANGED LOGIC) */

.hero-bg {
  position: relative;
  margin-top: -64px;
  padding-top: 80px;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}


.hero-bg .hero-inner {
  position: relative;
  z-index: 1;
}

/* =========================================================
   SECTION — ABOUT
   FILE: layout.css
   ========================================================= */

.about,
.why-choose,
.certifications,
.footer {
  padding-top: 96px;
  padding-bottom: 96px;
  padding-left: 8vw;
  padding-right: 8vw;
}

.categories h2 {
  font-size: 42px;
  margin-bottom: 48px;
}


/* =========================
   ABOUT — CLEAN SINGLE COLUMN
========================= */

.about {
  padding: var(--section-pad) 8vw;
  background: var(--perola);
}

.about-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: left; /* change to center if you want luxury feel */
}

.about h2 {
  font-size: 42px;
  margin-bottom: var(--space-lg);
}

.about p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

/* =========================================================
   SECTION — WHY CHOOSE
   FILE: layout.css
   ========================================================= */

.why-choose {
  background: #fff;
}

.why-inner h2 {
  font-size: 42px;
  gap: 48px;
  margin-bottom: var(--space-2xl);
}

/* =========================================================
   SECTION — CERTIFICATIONS
   FILE: layout.css
   ========================================================= */

.certifications {
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: #fff;
}

.cert-inner h2 {
  font-size: 42px;
  margin-bottom: 48px;
}


/* =========================================================
   SECTION — FOOTER
   FILE: layout.css
   ========================================================= */

.footer {
  background: #984522;
  padding: var(--space-3xl) 8vw 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
}

.footer h3,
.footer h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 18px;
}

.footer a,
.footer p {
  font-size: 16px;
  line-height: 1.6;
}

.footer a {
  display: block;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-decoration: none;
}

.footer,
.footer h4,
.footer h3,
.footer a,
.footer-bottom,
.footer p {
  color: #ffffff;
}

.footer-bottom {
  font-size: 15px;
}
.footer-contact span {
  margin-right: 8px;
}


/* =========================================================
   ADMIN — ROOT WRAPPER
   FILE: layout.css
   ========================================================= */

.admin {
  min-height: 100vh;
  background: var(--perola);
  padding: var(--space-xl) 6vw;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.admin-header h1 {
  font-size: 30px;
}

/* =========================================================
   ADMIN — NAVBAR (DESKTOP)
   FILE: layout.css
   ========================================================= */

.admin-nav {
  display: flex;
  gap: var(--space-lg);
}

.admin-nav a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
}

.admin-nav a.active {
  background: var(--bege-rose);
  color: var(--text-dark);
}

/* ADMIN LOGIN PAGE LAYOUT */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-inner {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

/* =========================
   CATEGORIES HEADER FIX
   ========================= */

.categories .section-title {
  font-size: 48px;
}

.categories-cta {
  margin-top: var(--space-2xl);
  text-align: center;
}


.announcement.hidden {
  display: none;
}


/* =========================
   FLOATING ACTION BUTTONS
========================= */

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Hover effect */
.float-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* WhatsApp accent */
.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.whatsapp img {
  filter: brightness(0) invert(1);
}

/* Email accent */
.float-btn.email {
  background: #798A91;
}

.float-btn.email img {
  filter: brightness(0) invert(1);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .floating-actions {
    right: 16px;
    bottom: 16px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }
}
