/* ─── 1. VARIABLES ──────────────────────────────────────────── */
:root {
  --primary-color: #273e88;
  --secondary-color: #4ec1ba;
  --bg-light: #f8f9fa;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --white: #ffffff;
  --bg-dark: #0a0f24;
  --accent: #4ec1ba;
  --transition-smooth: all 0.3s ease;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient: linear-gradient(90deg, #253f8a 0%, #3c8fa7 86%, #4ac2b9 100%);
}

/* ─── 2. RESET ───────────────────────────────────────────────── */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* ─── 3. FONTS ───────────────────────────────────────────────── */
@font-face {
  font-family: inter;
  src: url("/assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: inter;
  src: url("/assets/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: inter;
  src: url("/assets/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ─── 4. BASE ────────────────────────────────────────────────── */
html {
  font-size: 16px;
}

body {
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

p,
a,
span,
li {
  font-weight: 400;
  text-decoration: none;
  color: var(--text-dark);
}

h1,
h2,
h3 {
  font-weight: 700;
}

/* ─── 5. LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 85%;
  max-width: 1400px;
  margin: 0 auto;
}

.btn-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 40px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-header h1,
.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--primary-color);
  line-height: 1.2;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-title {
  font-size: 2.8rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: rgba(78, 193, 186, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ─── 6. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  gap: 8px;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(0);
  filter: brightness(0.9);
}

.btn-primary {
  background-color: #344487;
  color: #ffffff;
}

.btn-secondary {
  background-color: #4ec1ba;
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-border-white {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-border-white:hover {
  background-color: #fff;
  color: var(--primary-color);
  border: none;
}

/* ─── 7. HEADER ──────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  padding: 1.2% 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

header .header {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-self: center;
}

.header nav {
  display: flex;
  justify-content: space-between;
  align-self: center;
  gap: 1.8rem;
}

.header nav a:hover {
  color: var(--secondary-color);
}

.menu-toggle,
.nav-close {
  display: none;
}

.nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 1002;
}

/* ─── 8. HERO ────────────────────────────────────────────────── */
.hero-section {
  width: 100%;
  height: 110vh;
  background-image:
    linear-gradient(to right, rgba(3, 4, 9, 0.758), rgba(37, 62, 138, 0.642)),
    url(/assets/images/hero/hero-cover.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  color: var(--white);
}

.hero-section .hero-container {
  width: 85%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: left;
  align-items: center;
}

.hero-contents {
  width: 70%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  background: rgba(78, 193, 186, 0.1);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-label .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1d9e75;
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.3);
  flex-shrink: 0;
}

.hero-contents h1,
.hero-contents p {
  color: var(--white);
}

.hero-contents h1 {
  font-size: 3.1rem;
  line-height: 70px;
  letter-spacing: 5px;
  opacity: 0.98;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-contents p {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 550px;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

.hero-btns {
  margin-top: 5%;
  display: flex;
  gap: 1.8rem;
}

/* ─── 9. CATEGORIES ──────────────────────────────────────────── */
.category-section {
  width: 100%;
  padding: 96px 0 80px;
  background-color: #f7f5f2;
}

.category-section .section-header {
  text-align: center;
}

.category-grid {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  margin-bottom: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-grid::-webkit-scrollbar {
  display: none;
}

.category-card {
  text-decoration: none;
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  height: 340px;
  background: #e0ddd8;
  cursor: pointer;
  scroll-snap-align: start;
  min-width: calc((100% - 64px) / 5);
}

.category-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card__image1 {
  background-image: url("/assets/images/categories/board.jpg");
}
.category-card__image2 {
  background-image: url("/assets/images/categories/pvc.jpg");
}
.category-card__image3 {
  background-image: url("/assets/images/categories/cabinet_hinge.jpg");
}
.category-card__image4 {
  background-image: url("/assets/images/categories/door.jpg");
}
.category-card__image5 {
  background-image: url("/assets/images/categories/accessories.jpg");
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 20, 10, 0.75) 0%,
    rgba(10, 20, 10, 0.1) 55%,
    transparent 100%
  );
}

.category-card__label-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
}

.category-card__number {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

.category-card__label {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.category-card:hover .category-card__bg {
  transform: scale(1.07);
}

.category-section .btn-container {
  justify-content: center;
}

/* ─── SHARED PAGINATION NAV ──────────────────────────────────── */
.category-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 52px;
}

.category-nav__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  background: transparent;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
}

.category-nav__arrow:hover {
  border-color: #1e3a5f;
  color: #1e3a5f;
}

.category-nav__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: #cbd5e1;
  color: #cbd5e1;
}

.category-nav__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-nav__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

.category-nav__dot.active {
  width: 24px;
  border-radius: 4px;
  background: #1e3a5f;
}

/* Category nav — tablet and mobile only */
@media (max-width: 1024px) {
  .category-nav {
    display: flex;
  }
  .category-card {
    min-width: calc((100% - 32px) / 3);
  }
}

@media (max-width: 768px) {
  .category-card__label {
    font-size: 1.6rem;
  }
  .category-nav {
    display: flex;
  }
  .category-card {
    min-width: 100%;
  }
  .category-section .btn-container {
    margin-top: -2.5rem;
  }
}

/* ─── 10. WHAT WE OFFER ──────────────────────────────────────── */
.whole-offering-section {
  width: 100%;
  height: fit-content;
  padding: 3rem 0 1rem;
  background: var(--gradient);
}

.offerings-section .container {
  width: 85%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.offerings-section .container .section-header h1 {
  color: var(--white);
}

.offer-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 8%;
}

.offer-card {
  background: #fff;
  border-radius: 15px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: visible;
  border: 1px solid rgba(0, 0, 0, 0.135);
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.offer-card__image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
}

.offer-card__image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgb(39, 62, 136));
  z-index: 2;
  transition: opacity 0.3s ease;
}

.product-card__image-box::after {
  background: none;
}

.offer-card__image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
  display: block;
}

.offer-card:hover .offer-card__image-box img {
  transform: scale(1.1);
}

.offer-card__icon-wrap {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -37%;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background-color 0.3s ease;
}

.offer-card:hover .offer-card__icon-wrap {
  transform: translate(-50%, 35%) scale(1.15);
  background-color: var(--secondary-color);
}

.offer-card__icon-wrap img {
  max-width: 28px;
  height: auto;
  display: block;
}

.offer-card__content {
  padding: 45px 10px 15px;
  position: relative;
}

.offer-card__content h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.offer-card__content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ─── 11. FEATURED PRODUCTS ──────────────────────────────────── */
.featured_products {
  width: 100%;
  height: auto;
  background:
    linear-gradient(rgb(255, 255, 252), rgba(255, 255, 252, 0.954)),
    url(/assets/images/products/featured_products_bg.webp) center/100% no-repeat;
  background-size: cover;
  padding-bottom: 2%;
  margin-top: 7%;
}

.featured_products .container {
  width: 85%;
  margin: auto;
  height: auto;
  padding: 0;
  margin-top: 18%;
}

.featured_products .section-header {
  margin-top: 0;
  margin-bottom: 11%;
}

.featured_products .section-title {
  position: static;
  color: var(--primary-color) !important;
}

.product-cards-grid {
  margin-top: 15%;
}

span.label {
  display: inline-block;
  background-color: #e8f3f1;
  color: var(--secondary-color);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

a.product-link span {
  display: inline-block;
  margin-top: 17px;
  color: var(--primary-color);
  font-weight: 500;
}

a img.arrow-icon {
  margin-left: 3px;
}

a.product-link:hover {
  opacity: 0.9;
}

/* ─── 12. WHY CHOOSE US ──────────────────────────────────────── */
.why-choose {
  width: 100%;
  background-color: #1a295b;
  padding: 80px 0;
}

.why-choose-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-choose_img {
  width: 100%;
  min-height: 520px;
  background-image: url(/assets/images/about/Modern_Interior_Wall_Feature-Textured_Panels.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.why-choose_img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-choose-box .content-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  color: #fff;
}

.why-choose-box .section-tag {
  background: rgba(78, 193, 186, 0.15);
  color: var(--secondary-color);
  border: 1px solid rgba(78, 193, 186, 0.25);
  margin-bottom: 16px;
}

.why-choose-box h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 32px;
}

.choose-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  width: 100%;
  margin-bottom: 36px;
}

.choose-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition-smooth);
}

.choose-item:hover {
  padding-left: 6px;
}

.why-choose .icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(78, 193, 186, 0.15);
  border: 1px solid rgba(78, 193, 186, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.choose-item:hover .icon-box {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.why-choose .icon-box img {
  width: 20px;
  height: 20px;
}

.choose-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.choose-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

.why-choose .btn.secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.why-choose .btn.secondary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

/* ─── 13. ABOUT US (HOME) ────────────────────────────────────── */
.about-content-sec {
  width: 100%;
  height: auto;
  margin: 5% 0;
  padding: 3rem 0;
}

.about-content-sec .container {
  width: 85%;
  margin: auto;
}

.about-content-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.about-content p {
  color: var(--text-dark);
  line-height: 1.7rem;
  margin-bottom: 1rem;
}

.about_us_img {
  height: 63vh;
  background-image: url(/assets/images/about/carpenter-use-electric-screwdriver.webp) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border-top: 3px solid #00bfa6;
  border-right: 3px solid #00bfa6;
}

.about-title {
  color: var(--primary-color);
  text-align: center;
}

span.text-highlight {
  color: var(--secondary-color) !important;
  font-weight: 600;
}

.about-section .btn-container {
  justify-content: flex-start;
}

.about-content a {
  margin-top: 1rem;
}

/* ─── 14. CTA SECTION ────────────────────────────────────────── */
.cta-section {
  width: 100%;
  height: 70vh;
  text-align: left;
  background-image: url(/assets/images/contact/cta_bg2.webp) !important;
  background-size: cover !important;
  background-position: right center !important;
  background-repeat: no-repeat;
}

.cta-section .container {
  width: 85%;
  margin: 0 auto;
}

.cta-content {
  max-width: 520px;
  text-align: left;
  margin: 0;
}

.cta-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
}

.cta-content p {
  text-align: left;
}

.cta-content .cta-buttons {
  margin-top: 3rem;
}

.cta-card h3 {
  margin: 0 0 18px;
  font-size: 2rem;
  color: #273e88;
}

/* ─── 15. TESTIMONIALS ───────────────────────────────────────── */
.testinomial {
  width: 100%;
  padding: 80px 0;
  background-color: #f8f9fa;
}

.testinomial .container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

.testinomial .section-header {
  align-items: center;
}

.testinomial .testimonial-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 30px;
  margin-top: 55px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.testinomial .testimonial-grid::-webkit-scrollbar {
  display: none;
}

.testinomial .testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 32px 20px;
  box-shadow: 0 22px 55px rgba(38, 72, 131, 0.08);
  border: 1px solid rgba(39, 62, 136, 0.1);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testinomial .testimonial-card:hover {
  transform: translateY(-6px);
}

.testinomial .testimonial-content {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(37, 62, 136, 0.12);
}

.testinomial .testimonial-icon {
  width: 36px;
  display: block;
  margin-bottom: 16px;
}

.testinomial .testimonial-card p {
  color: #2e3a50;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.01em;
}

.testinomial .testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding-top: 18px;
}

.testinomial .testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 180px;
}

.testinomial .testimonial-avatar {
  min-width: 34px;
  min-height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ec1ba 0%, #273e88 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(38, 72, 131, 0.12);
}

.testinomial .testimonial-avatar img {
  width: 22px;
  height: auto;
  display: block;
}

.testinomial .testimonial-author h3 {
  margin: 0;
  font-size: 0.9rem;
  color: #1c2642;
}

.testinomial .testimonial-author span {
  display: block;
  color: #6f7a91;
  font-size: 0.9rem;
}

.testinomial .testimonial-rating-icon {
  margin-left: auto;
  width: 100px;
  height: auto;
  display: block;
}

/* Testimonial nav — always visible (desktop shows all 3, nav hidden via JS) */
.testinomial .category-nav {
  display: none;
}

@media (max-width: 1024px) {
  .testinomial .category-nav {
    display: flex;
  }
  .testinomial .testimonial-card {
    min-width: calc((100% - 30px) / 2);
  }
}

@media (max-width: 768px) {
  .testinomial .testimonial-card {
    width: 100%;
    min-width: 100%;
  }
}

/* ─── 16. FOOTER ─────────────────────────────────────────────── */
footer {
  background-color: #1a295b;
  color: #f4f7ff;
  padding: 100px 0 40px;
}

.footer-container {
  width: 85%;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 24px;
}

.brand-desc {
  color: #d6d6d6;
  line-height: 1.75;
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 1.8rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.social-icon:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.footer-links h3,
.footer-contact-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  color: #f5f5f5;
}

.footer-links ul,
.footer-contact-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li,
.footer-links a {
  color: #d6d6d6;
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a {
  transition:
    color 0.2s ease,
    padding-left 0.2s ease,
    border-left 0.2s ease;
  display: inline-block;
  border-left: 2px solid transparent;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 6px;
  border-left: 2px solid var(--secondary-color);
}

.footer-links li:not(:has(a)) {
  color: #d6d6d6;
  font-size: 0.92rem;
  cursor: default;
  pointer-events: none;
}

.footer-contact-card ul {
  gap: 1.1rem;
}

.footer-contact-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon-box {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 13px;
}

.footer-contact-card ul li span {
  font-size: 0.92rem;
  color: #d6d6d6;
  line-height: 1.6;
  padding-top: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #d6d6d6;
}

/* ─── 17. WHATSAPP FLOAT ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float img {
  width: 38px;
  height: 38px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ════════════════════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════════════════════ */

.about-hero {
  width: 100%;
  height: 40vh;
  background-image:
    linear-gradient(to right, rgba(3, 4, 9, 0.758), rgba(37, 62, 138, 0.642)),
    url(/assets/images/about/about-hero-cover_2.webp);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.about-hero .container {
  width: 85%;
  margin: 0 auto;
}

.about-hero-txt {
  width: 60%;
  display: flex;
  align-self: center;
  gap: 0.5rem;
  margin-top: 5%;
}

.about-hero h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about-hero-txt i {
  color: #00bfa6;
}

.about-hero-highlight {
  width: fit-content;
  padding: 0 10px;
  border-radius: 30px;
  background-color: #53655c;
  font-size: 12px;
  width: 50%;
}

.about-cntnt-contnr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.about-content-container .image-box {
  width: 500px;
  background-image: url("/assets/images/about/about-img.webp");
  background-size: cover;
}

/* Mission / Vision / Goal */
.mission-vision-section {
  padding: 80px 20px;
  background: #f5f7fa;
}

.mission-vision-section .container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
  line-height: 1.6;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.icon {
  width: 50px;
  height: 50px;
  background: rgba(78, 193, 186, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon i {
  color: var(--secondary-color);
  font-size: 20px;
}

.about-card h3 {
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary-color);
}

.about-card p {
  font-size: 15px;
  color: var(--text-muted);
}

.about-card.active {
  background: var(--secondary-color);
  color: #fff;
}
.about-card.active h3,
.about-card.active p {
  color: #fff;
}
.about-card.active .icon {
  background: rgba(255, 255, 255, 0.15);
}
.about-card.active .icon i {
  color: white;
}

/* Core Values */
.core-values {
  padding: 100px 20px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.core-values::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(78, 193, 186, 0.05);
  pointer-events: none;
}

.values-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border: 1px solid rgba(39, 62, 136, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(78, 193, 186, 0.04) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(39, 62, 136, 0.1);
  border-color: rgba(78, 193, 186, 0.3);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(78, 193, 186, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.value-icon i {
  font-size: 20px;
  color: var(--secondary-color);
  transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
  background: var(--secondary-color);
}
.value-card:hover .value-icon i {
  color: var(--white);
  transform: scale(1.1);
}

.value-number {
  font-size: 36px;
  font-weight: 800;
  color: rgba(39, 62, 136, 0.07);
  line-height: 1;
  letter-spacing: -1px;
  transition: var(--transition-smooth);
}

.value-card:hover .value-number {
  color: rgba(78, 193, 186, 0.15);
}

.value-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.value-line {
  height: 3px;
  width: 32px;
  background: var(--secondary-color);
  border-radius: 2px;
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.value-card:hover .value-line {
  width: 100%;
  opacity: 0.3;
}

/* What We Do */
.what-we-do {
  padding: 100px 20px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.what-we-do::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(78, 193, 186, 0.05);
  pointer-events: none;
}

.what-we-do .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.what-we-do h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 14px;
  line-height: 1.2;
}

.what-we-do .section-header p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-card {
  background: var(--bg-light);
  border: 1px solid rgba(39, 62, 136, 0.08);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(39, 62, 136, 0.1);
  border-color: rgba(78, 193, 186, 0.25);
  background: var(--white);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(78, 193, 186, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.service-icon i {
  font-size: 22px;
  color: var(--secondary-color);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--secondary-color);
}
.service-card:hover .service-icon i {
  color: var(--white);
  transform: scale(1.1);
}

.service-number {
  font-size: 40px;
  font-weight: 800;
  color: rgba(39, 62, 136, 0.07);
  line-height: 1;
  letter-spacing: -2px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-number {
  color: rgba(78, 193, 186, 0.15);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
  margin-top: auto;
}

.service-link i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.service-link:hover {
  color: var(--secondary-color);
}
.service-link:hover i {
  transform: translateX(4px);
}

/* About CTA */
.cta {
  padding: 80px 20px;
  background: var(--gradient);
  text-align: center;
  color: #fff;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff;
}

.cta p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 25px;
  font-size: 16px;
}

.cta-buttons .btn {
  padding: 12px 25px;
  margin: 0 10px;
  border-radius: 5px;
}

.btn.primary {
  background: #00bfa6;
  color: #fff;
}
.btn.secondary {
  background: #fff;
  color: #1e3a5f;
}
.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* ════════════════════════════════════════════════════════════════
   PRODUCTS PAGE
════════════════════════════════════════════════════════════════ */

.products {
  padding: 100px 0;
  background: #f5f7fa;
}

.product_hero {
  background-image:
    linear-gradient(to right, rgba(3, 4, 9, 0.758), rgba(37, 62, 138, 0.642)),
    url(/assets/images/products/product-hero-cover_3.jpg);
}
.products-header {
  max-width: 640px;
  margin: 0 0 2.5rem 0;
}

.products-header p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.75;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background: transparent;
  border: 1px solid rgba(128, 128, 128, 0.24);
}

.product-image {
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
}

.category {
  font-size: 12px;
  letter-spacing: 1px;
  color: #4ec1ba;
  display: block;
  margin-bottom: 8px;
}

.product-info h3 {
  color: #273e88;
  margin-bottom: 10px;
  font-size: 18px;
}

.product-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
}

.link {
  font-size: 14px;
  color: #273e88;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.link:hover {
  color: #4ec1ba;
}

.cta-box {
  display: block;
  place-self: center;
  margin-top: 3rem;
}

.cta-box p {
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════════════ */

.contact-hero {
  background-image:
    linear-gradient(to right, rgba(3, 4, 9, 0.758), rgba(37, 62, 138, 0.642)),
    url(/assets/images/contact/contact-hero_1.jpg);
}

.contact-page {
  padding: 100px 0;
  background: #f5f7fa;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  color: #273e88;
  margin-bottom: 15px;
}
.contact-info p {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #273e88;
}

.contact-item {
  height: fit-content;
  padding-top: 20px;
  padding-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid rgba(39, 62, 136, 0.08);
}

.contact-item p {
  font-weight: 500;
}
.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(78, 193, 186, 0.14);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-icon img {
  width: 22px;
  height: auto;
  display: block;
  filter: saturate(0%) brightness(0) invert(45%) sepia(55%) saturate(700%)
    hue-rotate(135deg);
}

.contact-item span {
  display: block;
  color: #4ec1ba;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  font-size: 14px;
  box-sizing: border-box;
}

.form-group textarea {
  resize: none;
  grid-column: 1 / -1;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #4ec1ba;
}

.btn-submit {
  background: #4ec1ba;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.btn-submit:hover {
  background: #3aaea7;
}

/* Business Hours */
.business-hours {
  width: 100%;
  padding: 80px 0;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.business-hours::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.business-hours::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.bh-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bh-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.bh-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.bh-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.bh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
}

.bh-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

.bh-dot-closed {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b6b;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.bh-right {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
}

.bh-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bh-row:last-of-type {
  border-bottom: none;
}

.bh-day {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.bh-day span {
  color: rgba(255, 255, 255, 0.85);
}

.bh-time {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.closed-tag {
  color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.12);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.bh-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 10px;
}

.bh-note i {
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */

/* ── Header / Nav ── */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  header {
    padding: 2.8% 0;
  }

  .header nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    height: 100vh;
    width: 72%;
    max-width: 290px;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0;
  }

  .header nav.active {
    transform: translateX(0);
  }

  .header nav::before {
    content: "";
    display: block;
    width: 100%;
    height: 70px;
    min-height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 70px;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    z-index: 1002;
    transition: color 0.2s;
  }

  .nav-close:hover {
    color: #fff;
  }

  .header nav a {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    width: 100%;
    padding: 17px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition:
      background 0.2s,
      color 0.2s;
  }

  .header nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
  .header nav a:last-child {
    border-bottom: none;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
    z-index: 999;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* ── Hero ── */
@media (max-width: 780px) {
  .hero-section {
    height: 80vh;
    position: relative;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.333);
  }

  .hero-contents {
    width: 100%;
    margin-top: 10%;
    position: relative;
    z-index: 1;
  }

  .hero-contents h1 {
    font-size: 1.9rem;
    letter-spacing: 2px;
    line-height: 44px;
  }
  .hero-contents p {
    font-size: 16px;
  }
  .hero-btns {
    margin-top: 2.5rem;
  }
}

/* ── What We Offer ── */
@media (max-width: 780px) {
  .whole-offering-section {
    padding: 2rem 0;
  }
  .offerings-section .container {
    width: 90%;
  }
  .offer-cards-grid {
    grid-template-columns: 1fr;
    margin-top: 5rem;
  }
}

/* ── Why Choose Us ── */
@media (max-width: 900px) {
  .why-choose-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-choose_img {
    min-height: 300px;
  }
}

@media (max-width: 780px) {
  .why-choose {
    padding: 60px 0;
  }
  .why-choose_img {
    display: none;
  }
  .why-choose-box h1 {
    font-size: 28px;
  }
}

/* ── About Us (home) ── */
@media (max-width: 780px) {
  .about-section .container {
    width: 90%;
    gap: 1.5rem;
  }
  .about-box {
    grid-template-columns: 1fr;
    margin-top: -1.5rem;
  }
  .about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .about-content a {
    align-self: center;
  }
}

/* ── CTA Section ── */
@media (max-width: 1023px) {
  .cta-section {
    height: auto;
    background-image: url(/assets/images/contact/cta_bg.webp) !important;
  }
  .cta-content h2 {
    font-size: 1.3rem;
    line-height: 34px;
  }
  .cta-content .cta-buttons {
    display: flex;
  }
  .cta-content .cta-buttons .btn {
    padding: 12px 14px;
  }
}

@media (max-width: 580px) {
  .cta .container {
    width: 95%;
  }
  .cta-content .cta-buttons .btn {
    width: fit-content;
    font-size: 14px;
  }
}

/* ── Footer ── */
@media (max-width: 780px) {
  footer {
    padding: 60px 0 30px;
  }
  .footer-container {
    width: 90%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }
  .footer-logo {
    height: 35px;
  }
  .footer-links h3,
  .footer-contact-card h3 {
    margin-bottom: 16px;
  }
  .footer-links ul {
    gap: 10px;
  }
  .footer-contact-card ul {
    gap: 0.9rem;
  }
  .social-links {
    margin-top: 1.2rem;
  }
  .footer-bottom {
    padding-top: 20px;
    text-align: center;
  }
  .footer-brand,
  .footer-contact-card {
    grid-column: 1 / -1;
  }
}

/* ── About Page ── */
@media (max-width: 992px) {
  .mission-vision-section .container {
    width: 95%;
    grid-template-columns: repeat(2, 1fr);
  }
  .about-content-sec .container {
    width: 90%;
    margin: auto;
    padding: 0;
  }
  .about-content-container {
    gap: 2rem;
    width: 100%;
  }
  .about-content-container .image-box {
    width: 700px;
    height: 200px;
    background-image: url(/assets/images/about/exploring_modern_kitchen.webp);
    border-radius: 12px;
  }
  /* .about-img-box {
    display: none !important;
  } */
  .about-content h1 {
    text-align: center !important;
  }
  .about-content p {
    text-align: justify;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .about-hero-txt {
    width: auto;
  }
  .about-content-sec {
    height: auto;
  }
  .about-content-container {
    grid-template-columns: 1fr;
  }
  .about-content-container .image-box {
    width: 100%;
    display: block;
  }
}

@media (max-width: 600px) {
  .mission-vision-section .container {
    grid-template-columns: 1fr;
  }
  .core-values {
    padding: 70px 20px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .what-we-do {
    padding: 70px 20px;
  }
  .what-we-do h2 {
    font-size: 28px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ── Products Page ── */
@media (max-width: 992px) {
  .product_hero {
    height: 40vh;
  }
  .product_hero .container {
    width: 90%;
  }
  .product_hero h1 {
    font-size: 1.8rem;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    border: 1px solid #5050500e;
  }
}

/* ── Contact Page ── */
@media (max-width: 768px) {
  .contact-page .container {
    width: 90%;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .bh-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }
  .business-hours {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}

.form-message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;

  min-width: 320px;
  max-width: 400px;

  display: none;
  padding: 18px 22px;
  border-radius: 14px;

  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  animation: slideIn 0.35s ease;
}

.success-message {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

.error-message {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
