/* =========================
   Global Reset
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8f8f8;
  color: #1a1a1a;
}

/* =========================
   Reusable Container
========================= */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   Header
========================= */
.site-header {
  width: 100%;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #8a6200 8%,
    #d4af37 28%,
    #f7e08b 50%,
    #d4af37 72%,
    #8a6200 92%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: header-line-flow 5s linear infinite;
}

.site-header.scrolled {
  background: rgba(7, 7, 7, 0.99);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.site-header.scrolled .header-wrapper {
  min-height: 70px;
}

@keyframes header-line-flow {
  0%   { background-position:  200% 0; }
  100% { background-position: -200% 0; }
}

.header-wrapper {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: min-height 0.4s ease;
}

/* =========================
   Brand
========================= */
.brand {
  flex: 1;
  display: flex;
  align-items: center;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #d4af37, #f7e08b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.45);
  animation: logo-pulse 3s ease-in-out infinite;
}

.brand-logo::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    #d4af37 20%,
    #f7e08b 50%,
    #d4af37 80%,
    transparent 100%
  );
  z-index: 0;
  animation: logo-ring-spin 4s linear infinite;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

@keyframes logo-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(212, 175, 55, 0.4); }
  50%       { box-shadow: 0 0 0 7px rgba(212, 175, 55, 0.08); }
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text h1 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.8px;
  white-space: nowrap;
  line-height: 1.1;
  background: linear-gradient(
    90deg,
    #8a6200 0%,
    #d4af37 20%,
    #f7e08b 45%,
    #f0c840 55%,
    #d4af37 75%,
    #8a6200 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: brand-shimmer 6s ease-in-out infinite;
}

.brand-tagline {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b08d30;
  opacity: 0.82;
  white-space: nowrap;
}

@keyframes brand-shimmer {
  0%   { background-position:  160% 0; }
  50%  { background-position: -160% 0; }
  100% { background-position:  160% 0; }
}

/* =========================
   Navigation
========================= */
.main-nav {
  flex: 2;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.main-nav ul li a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 8px 14px;
  border-radius: 9px;
  transition: color 0.28s ease,
              background 0.28s ease,
              box-shadow 0.28s ease,
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-nav ul li a::after {
  display: none;
}

.main-nav ul li a:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-1px);
}

.main-nav ul li a.active {
  color: #111111;
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.42);
  font-weight: 700;
  transform: none;
}

/* =========================
   Header Actions
========================= */
.header-actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.action-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1c1c1c;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #d4af37;
  font-size: 18px;
  transition: all 0.3s ease;
}

.action-icon:hover {
  background: #d4af37;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* =========================
   Header CTA Button
========================= */
.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  color: #111111;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.42);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.32s ease,
              filter 0.28s ease;
}

.header-cta-btn i {
  font-size: 13px;
  animation: phone-ring 2.5s ease infinite;
}

.header-cta-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.6);
  filter: brightness(1.08);
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  10%       { transform: rotate(-15deg); }
  20%       { transform: rotate(15deg); }
  30%       { transform: rotate(-10deg); }
  40%       { transform: rotate(10deg); }
  50%       { transform: rotate(0deg); }
}

/* =========================
   Mobile Toggle
========================= */
.menu-toggle {
  display: none;
  background: rgba(212, 175, 55, 0.08);
  border: 1.5px solid rgba(212, 175, 55, 0.32);
  color: #d4af37;
  font-size: 18px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease,
              border-color 0.3s ease,
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-toggle:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.55);
}

.menu-toggle.open {
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(212, 175, 55, 0.5);
  transform: rotate(90deg);
}

/* =========================
   Demo Section
========================= */
.hero-demo {
  padding: 100px 0;
  text-align: center;
}

.hero-demo h2 {
  font-size: 42px;
  margin-bottom: 14px;
  color: #111111;
}

.hero-demo p {
  font-size: 18px;
  color: #555555;
}

/* =========================
   Responsive
========================= */
@media (max-width: 991px) {
  .header-wrapper {
    min-height: 78px;
    flex-wrap: wrap;
    position: relative;
  }

  .menu-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .brand {
    flex: unset;
    order: 1;
  }

  .header-actions {
    order: 3;
    margin-left: 10px;
    flex: unset;
  }

  .main-nav {
    order: 4;
    width: 100%;
    display: none;
    padding: 12px 0 18px;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    background: rgba(16, 16, 16, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    animation: mobile-menu-in 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  }

  .main-nav ul li {
    width: 100%;
    animation: nav-item-in 0.3s ease both;
  }

  .main-nav ul li:nth-child(1) { animation-delay: 0.04s; }
  .main-nav ul li:nth-child(2) { animation-delay: 0.08s; }
  .main-nav ul li:nth-child(3) { animation-delay: 0.12s; }
  .main-nav ul li:nth-child(4) { animation-delay: 0.16s; }
  .main-nav ul li:nth-child(5) { animation-delay: 0.20s; }
  .main-nav ul li:nth-child(6) { animation-delay: 0.24s; }
  .main-nav ul li:nth-child(7) { animation-delay: 0.28s; }

  .main-nav ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 11px 15px;
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    font-weight: 600;
    transform: none;
  }

  .main-nav ul li a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
  }

  .main-nav ul li a.active {
    color: #111111;
    background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.38);
  }

  @keyframes mobile-menu-in {
    from { opacity: 0; transform: translateY(-14px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
  }

  @keyframes nav-item-in {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0);     }
  }

  .brand-text h1 {
    font-size: 17px;
  }
  .brand-tagline {
    font-size: 8.5px;
    letter-spacing: 2px;
  }
}

@media (max-width: 575px) {
  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-text h1 {
    font-size: 15px;
  }
  .brand-tagline {
    display: none;
  }

  .action-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .hero-demo h2 {
    font-size: 30px;
  }

  .hero-demo p {
    font-size: 16px;
  }
}
/* =========================
   Hero Section
========================= */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 650px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
  transform: scale(1.03);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.hero-slide .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 720px;
  color: #ffffff;
  padding: 40px 0;
}

.hero-subtitle {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #d4af37;
}

.hero-content h2 {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 22px;
  max-width: 700px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: #d4af37;
  color: #111111;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.22);
}

.btn-primary:hover {
  background: #f0cb57;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-2px);
}

/* =========================
   Hero Arrows
========================= */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.55);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.hero-arrow:hover {
  background: #d4af37;
  color: #111111;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

/* =========================
   Hero Dots
========================= */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-dot.active {
  background: #d4af37;
  transform: scale(1.1);
}

/* =========================
   Responsive Hero
========================= */
@media (max-width: 1199px) {
  .hero-content h2 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .hero-slider {
    height: 82vh;
    min-height: 580px;
  }

  .hero-content h2 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-arrow {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 78vh;
    min-height: 520px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-content h2 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-prev {
    left: 14px;
  }

  .hero-next {
    right: 14px;
  }
}

@media (max-width: 575px) {
  .hero-slider {
    min-height: 480px;
  }

  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 1.3px;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .btn {
    min-width: 150px;
    min-height: 50px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .hero-dot {
    width: 12px;
    height: 12px;
  }
}
/* =========================
   About Section
========================= */
.about-section {
  padding: 110px 0;
  background: #ffffff;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-experience-box {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: #111111;
  color: #ffffff;
  padding: 26px 28px;
  border-radius: 18px;
  max-width: 230px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  border-left: 4px solid #d4af37;
}

.about-experience-box h3 {
  font-size: 42px;
  line-height: 1;
  color: #d4af37;
  margin-bottom: 10px;
  font-weight: 800;
}

.about-experience-box p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.section-subtitle {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
}

.about-content h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 24px;
  font-weight: 800;
}

.about-text {
  font-size: 16px;
  line-height: 1.9;
  color: #5a5a5a;
  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin: 34px 0 38px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease,
              background 0.35s ease;
  cursor: default;
  animation: feature-fade-up 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.about-feature-item:nth-child(1) { animation-delay: 0.05s; }
.about-feature-item:nth-child(2) { animation-delay: 0.15s; }
.about-feature-item:nth-child(3) { animation-delay: 0.25s; }
.about-feature-item:nth-child(4) { animation-delay: 0.35s; }
.about-feature-item:nth-child(5) { animation-delay: 0.45s; }
.about-feature-item:nth-child(6) { animation-delay: 0.55s; }

.about-feature-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.5);
  background: #fffef5;
}

.about-feature-item i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #d4af37 0%, #f7e08b 60%, #d4af37 100%);
  background-size: 200% 200%;
  color: #111111;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: icon-gradient-shift 3s ease infinite;
  transition: transform 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
}

.about-feature-item:hover i {
  transform: scale(1.2) rotate(-8deg);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
}

.about-feature-item span {
  font-size: 14.5px;
  line-height: 1.55;
  color: #222222;
  font-weight: 600;
}

@keyframes feature-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes icon-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =========================
   Responsive About
========================= */
@media (max-width: 1199px) {
  .about-content h2 {
    font-size: 40px;
  }

  .about-image img {
    height: 560px;
  }
}

@media (max-width: 991px) {
  .about-section {
    padding: 90px 0;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .about-image img {
    height: 520px;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 75px 0;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-image img {
    height: 420px;
  }

  .about-experience-box {
    left: 20px;
    bottom: 20px;
    padding: 20px 22px;
    max-width: 200px;
  }

  .about-experience-box h3 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .about-content h2 {
    font-size: 26px;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .about-image img {
    height: 360px;
    border-radius: 18px;
  }

  .about-experience-box {
    position: static;
    margin-top: 18px;
    max-width: 100%;
  }
}
/* =========================
   Section Header
========================= */
.section-header {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-header h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 16px;
  font-weight: 800;
}

.section-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
}

/* =========================
   Categories Section
========================= */
.categories-section {
  padding: 110px 0;
  background: #f8f8f8;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.category-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 430px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  background: #111111;
}

.category-image {
  width: 100%;
  height: 100%;
}

.category-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.58) 45%,
    rgba(0, 0, 0, 0.88) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.category-overlay h3 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
}

.category-overlay p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
}

.category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 130px;
  height: 46px;
  padding: 0 18px;
  border-radius: 40px;
  background: #d4af37;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-2px);
}

/* =========================
   Responsive Categories
========================= */
@media (max-width: 1199px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .categories-section {
    padding: 90px 0;
  }

  .section-header {
    margin-bottom: 45px;
  }

  .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .categories-section {
    padding: 75px 0;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-image img {
    min-height: 380px;
    height: 380px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 15px;
  }

  .category-overlay h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .category-overlay {
    padding: 22px;
  }

  .category-overlay p {
    font-size: 14px;
  }

  .category-btn {
    min-width: 118px;
    height: 42px;
    font-size: 13px;
  }
}
/* =========================
   Why Choose Us Section
========================= */

.why-section {
  padding: 120px 0;
  background: linear-gradient(160deg, #0d0b07 0%, #1c1508 55%, #0d0b07 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 820px;
  height: 820px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.why-section .section-header h2 { color: #ffffff; }
.why-section .section-header p  { color: rgba(255, 255, 255, 0.55); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
}

.why-card {
  background: rgba(255, 255, 255, 0.035);
  padding: 44px 30px 36px;
  border-radius: 22px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
              background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
  animation: why-card-in 0.6s ease both;
}

.why-card:nth-child(1) { animation-delay: 0.05s; }
.why-card:nth-child(2) { animation-delay: 0.12s; }
.why-card:nth-child(3) { animation-delay: 0.19s; }
.why-card:nth-child(4) { animation-delay: 0.26s; }
.why-card:nth-child(5) { animation-delay: 0.33s; }
.why-card:nth-child(6) { animation-delay: 0.40s; }

@keyframes why-card-in {
  from { opacity: 0; translate: 0 28px; }
  to   { opacity: 1; translate: 0 0;    }
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, #f7e08b, #d4af37, transparent);
}

.why-card::after {
  content: attr(data-number);
  position: absolute;
  top: 14px; right: 18px;
  font-size: 42px;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.07);
  line-height: 1;
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  color: #111111;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: transform 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.38s ease,
              background 0.38s ease;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.28);
}

.why-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  transition: inset 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.38s ease;
  pointer-events: none;
}

.why-card:hover .why-icon {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #c9a227 0%, #f7e08b 100%);
}

.why-card:hover .why-icon::after {
  inset: -9px;
  border-color: rgba(212, 175, 55, 0.18);
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 700;
}

.why-card p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.78;
}

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-section {
    padding: 80px 0;
  }
}
/* =========================
   CTA Banner Section
========================= */

.cta-section {
  position: relative;
  padding: 120px 0;
  background-image: url("../images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.cta-content {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.cta-content h2 {
  font-size: 42px;
  margin: 15px 0 20px;
  font-weight: 800;
  line-height: 1.3;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline-light:hover {
  background: #fff;
  color: #111;
}

/* Responsive */

@media (max-width: 992px) {
  .cta-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 90px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 15px;
  }
}
/* =========================
   Featured Products Section
========================= */
.products-section {
  padding: 110px 0;
  background: #f8f8f8;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border: 1px solid #eeeeee;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #d4af37;
  color: #111111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 30px;
}

.product-content {
  padding: 24px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  color: #d4af37;
  font-size: 14px;
}

.product-content h3 {
  font-size: 22px;
  line-height: 1.3;
  color: #111111;
  margin-bottom: 12px;
  font-weight: 700;
}

.product-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 22px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 24px;
  font-weight: 800;
  color: #111111;
}

.product-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 40px;
  background: #111111;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-cart-btn:hover {
  background: #d4af37;
  color: #111111;
}

/* =========================
   Responsive Products
========================= */
@media (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .products-section {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .products-section {
    padding: 75px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-image img {
    height: 260px;
  }

  .product-content h3 {
    font-size: 20px;
  }

  .product-price {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .product-content {
    padding: 20px;
  }

  .product-content p {
    font-size: 14px;
  }

  .product-cart-btn {
    width: 100%;
  }

  .product-bottom {
    flex-direction: column;
    align-items: stretch;
  }
}
/* =========================
   Testimonials Section
========================= */
.testimonials-section {
  padding: 110px 0;
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 22px;
  padding: 30px;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-user img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d4af37;
}

.testimonial-user-info h3 {
  font-size: 19px;
  color: #111111;
  margin-bottom: 4px;
  font-weight: 700;
}

.testimonial-user-info span {
  font-size: 14px;
  color: #777777;
}

.testimonial-quote {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d4af37;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #d4af37;
  font-size: 14px;
  margin-bottom: 18px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
}

/* =========================
   Responsive Testimonials
========================= */
@media (max-width: 1199px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .testimonials-section {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 75px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-user img {
    width: 58px;
    height: 58px;
  }

  .testimonial-user-info h3 {
    font-size: 17px;
  }

  .testimonial-card p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonial-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================
   Contact Section
========================= */
.contact-section {
  padding: 110px 0;
  background: #f8f8f8;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.contact-info-box,
.contact-form-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #eeeeee;
}

.contact-info-box h3,
.contact-form-box h3 {
  font-size: 30px;
  color: #111111;
  margin-bottom: 14px;
  font-weight: 800;
}

.contact-info-text {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 28px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.38s ease,
              color 0.32s ease,
              transform 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.38s ease,
              border-color 0.32s ease;
}

.contact-info-item:hover .contact-icon {
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  color: #111111;
  border-color: transparent;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.38);
}

.contact-details h4 {
  font-size: 18px;
  color: #111111;
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-details a,
.contact-details p {
  font-size: 15px;
  color: #666666;
  text-decoration: none;
  line-height: 1.7;
}

.contact-details a:hover {
  color: #d4af37;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  width: 100%;
}

.full-width {
  grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #dddddd;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #111111;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-group button {
  border: none;
  cursor: pointer;
}

/* =========================
   Responsive Contact
========================= */
@media (max-width: 1199px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .contact-section {
    padding: 90px 0;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 75px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-box h3,
  .contact-form-box h3 {
    font-size: 26px;
  }

  .contact-info-item {
    padding: 16px;
  }
}

@media (max-width: 575px) {
  .contact-info-box,
  .contact-form-box {
    padding: 22px;
    border-radius: 18px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 18px;
  }

  .contact-details h4 {
    font-size: 16px;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 14px;
  }
}
/* =========================
   Footer Section
========================= */
.site-footer {
  background: #111111;
  color: #ffffff;
  padding-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 55px;
}

.footer-widget h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #ffffff;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
  margin: 22px 0 24px;
  max-width: 360px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  background: #d4af37;
}

.footer-brand span {
  font-size: 24px;
  font-weight: 800;
  color: #d4af37;
  line-height: 1.2;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1d1d1d;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #d4af37;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #d4af37;
  color: #111111;
  transform: translateY(-3px);
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 14px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  color: #d4af37;
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
  padding-left: 4px;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.8;
}

.footer-contact i {
  color: #d4af37;
  margin-top: 4px;
  font-size: 16px;
  min-width: 18px;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.footer-contact a:hover {
  color: #d4af37;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-credit {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.footer-credit a {
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg, #d4af37, #f7e08b, #d4af37);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: brand-shimmer 5s ease-in-out infinite;
  transition: opacity 0.3s ease;
}

.footer-credit a:hover {
  opacity: 0.85;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.68);
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #d4af37;
}

/* =========================
   Responsive Footer
========================= */
@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .site-footer {
    padding-top: 75px;
  }

  .footer-grid {
    gap: 28px;
    padding-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand span {
    font-size: 22px;
  }

  .footer-widget h3 {
    font-size: 20px;
  }

  .footer-bottom-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .site-footer {
    padding-top: 60px;
  }

  .footer-about p,
  .footer-links a,
  .footer-contact li,
  .footer-bottom p,
  .footer-bottom-links a {
    font-size: 14px;
  }

  .footer-brand img {
    width: 46px;
    height: 46px;
  }

  .footer-brand span {
    font-size: 19px;
  }
}
/* =========================
   Floating Contact Buttons
========================= */
.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 55px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 58px;
  height: 58px;
  padding: 0 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  overflow: hidden;
}

.float-btn i {
  font-size: 22px;
  flex-shrink: 0;
}

.float-btn span {
  white-space: nowrap;
}

.whatsapp-btn {
  background: #25d366;
  color: #ffffff;
}

.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
}

.call-btn {
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.call-btn:hover {
  background: #d4af37;
  color: #111111;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 34px rgba(212, 175, 55, 0.28);
}

/* Pulse effect */
.whatsapp-btn,
.call-btn {
  animation: floatingPulse 2.2s infinite;
}

@keyframes floatingPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.18);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .floating-contact {
    right: 14px;
    bottom: 45px;
    gap: 10px;
  }

  .float-btn {
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
  }

  .float-btn span {
    display: none;
  }

  .float-btn i {
    font-size: 20px;
  }
}

/* =========================
   Page Banner
========================= */
.page-banner {
  position: relative;
  padding: 120px 0 100px;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  isolation: isolate;
}

/* Dark layered overlay */
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.50) 50%,
      rgba(0, 0, 0, 0.72) 100%
    );
  z-index: 1;
}

/* Animated gold bottom border */
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #8a6200 8%,
    #d4af37 28%,
    #f7e08b 50%,
    #d4af37 72%,
    #8a6200 92%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: header-line-flow 5s linear infinite;
  z-index: 3;
}

/* Subtle radial gold glow */
.page-banner .banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 60%,
    rgba(212, 175, 55, 0.12) 0%,
    transparent 70%
  );
  z-index: 2;
  pointer-events: none;
}

/* Floating dot particles */
.page-banner .banner-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.page-banner .banner-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.5);
  animation: particle-float linear infinite;
}

.page-banner .banner-particles span:nth-child(1)  { left: 10%; animation-duration: 8s;  animation-delay: 0s;    width: 3px; height: 3px; }
.page-banner .banner-particles span:nth-child(2)  { left: 22%; animation-duration: 11s; animation-delay: 1.5s;  width: 5px; height: 5px; opacity: 0.4; }
.page-banner .banner-particles span:nth-child(3)  { left: 35%; animation-duration: 7s;  animation-delay: 3s;   }
.page-banner .banner-particles span:nth-child(4)  { left: 50%; animation-duration: 13s; animation-delay: 0.8s;  width: 3px; height: 3px; opacity: 0.35; }
.page-banner .banner-particles span:nth-child(5)  { left: 65%; animation-duration: 9s;  animation-delay: 2s;    width: 6px; height: 6px; opacity: 0.3; }
.page-banner .banner-particles span:nth-child(6)  { left: 78%; animation-duration: 10s; animation-delay: 4s;   }
.page-banner .banner-particles span:nth-child(7)  { left: 88%; animation-duration: 6s;  animation-delay: 1s;    width: 3px; height: 3px; }
.page-banner .banner-particles span:nth-child(8)  { left: 42%; animation-duration: 14s; animation-delay: 5s;    opacity: 0.25; }
.page-banner .banner-particles span:nth-child(9)  { left: 58%; animation-duration: 8.5s;animation-delay: 3.5s; width: 4px; height: 4px; }
.page-banner .banner-particles span:nth-child(10) { left: 15%; animation-duration: 12s; animation-delay: 6s;    width: 5px; height: 5px; opacity: 0.3; }

@keyframes particle-float {
  0%   { transform: translateY(120px) scale(0.6); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 0.7; }
  100% { transform: translateY(-320px) scale(1.2); opacity: 0; }
}

/* Content z-index */
.page-banner .container {
  position: relative;
  z-index: 4;
}

/* Heading */
.page-banner h1 {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  animation: banner-text-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* Gold decorator under heading */
.page-banner h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f7e08b);
  border-radius: 4px;
  margin: 14px auto 0;
  animation: banner-line-in 0.9s ease both;
  animation-delay: 0.3s;
}

@keyframes banner-text-in {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

@keyframes banner-line-in {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  animation: banner-text-in 0.7s ease both;
  animation-delay: 0.18s;
}

.breadcrumb li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb li a {
  color: #d4af37;
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb li a:hover {
  opacity: 0.8;
}

.breadcrumb li + li::before {
  content: '/';
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Per-page background images ── */
.banner--about    { background-image: url('../images/about.png'); }
.banner--services { background-image: url('../images/hero2.png'); }
.banner--products { background-image: url('../images/product2.png'); }
.banner--category { background-image: url('../images/category2.png'); }
.banner--gallery  { background-image: url('../images/hero3.png'); }
.banner--contact  { background-image: url('../images/cta-bg.jpg'); }

/* Parallax-like scale warm-up */
.banner--about::before,
.banner--services::before,
.banner--products::before,
.banner--category::before,
.banner--gallery::before,
.banner--contact::before {
  animation: banner-bg-in 1.2s ease both;
}

@keyframes banner-bg-in {
  from { transform: scale(1.06); }
  to   { transform: scale(1);    }
}

@media (max-width: 767px) {
  .page-banner { padding: 90px 0 75px; }
  .page-banner h1 { font-size: 36px; }
}

@media (max-width: 575px) {
  .page-banner { padding: 75px 0 60px; }
  .page-banner h1 { font-size: 28px; }
  .page-banner .banner-particles span:nth-child(n+6) { display: none; }
}

/* =========================
   Stats Section
========================= */
.stats-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #111111 0%, #1c1c1c 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-item {
  text-align: center;
  padding: 44px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.35s ease;
}

.stat-item:hover {
  background: rgba(212, 175, 55, 0.07);
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  width: 62px;
  height: 62px;
  background: rgba(212, 175, 55, 0.14);
  border: 1.5px solid rgba(212, 175, 55, 0.38);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #d4af37;
  transition: background 0.38s ease,
              color 0.32s ease,
              transform 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.38s ease,
              border-color 0.32s ease;
}

.stat-item:hover .stat-icon {
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  color: #111111;
  border-color: transparent;
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.48);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

.stat-item h3 {
  font-size: 54px;
  font-weight: 800;
  color: #d4af37;
  line-height: 1;
}

.stat-plus {
  font-size: 32px;
  font-weight: 800;
  color: #d4af37;
  line-height: 1;
}

.stat-item p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 14px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .stats-section { padding: 70px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item h3 { font-size: 46px; }
}

/* =========================
   Blog Section
========================= */
.blog-section {
  padding: 110px 0;
  background: #f8f8f8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
  border: 1px solid #eeeeee;
  transition: all 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.blog-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.blog-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
  z-index: 0;
}

.blog-card:hover .blog-image img {
  transform: scale(1.07);
}

.blog-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    rgba(0, 0, 0, 0.06) 100%
  );
  z-index: 1;
}

.blog-category {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: #d4af37;
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-content {
  padding: 26px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.blog-meta span {
  font-size: 13px;
  color: #888888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: #d4af37;
  font-size: 13px;
}

.blog-content h3 {
  font-size: 20px;
  line-height: 1.4;
  color: #111111;
  margin-bottom: 12px;
  font-weight: 700;
}

.blog-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 20px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #d4af37;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.blog-link:hover { gap: 14px; }

@media (max-width: 1199px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .blog-section { padding: 75px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-image { height: 200px; }
}

/* =========================
   Partners Section
========================= */
.partners-section {
  padding: 90px 0;
  background: #ffffff;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.partner-item {
  background: #f9f9f9;
  border: 2px solid #eeeeee;
  border-radius: 16px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-item span {
  font-size: 20px;
  font-weight: 800;
  color: #cccccc;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.partner-item:hover {
  border-color: #d4af37;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.14);
  transform: translateY(-4px);
  background: #ffffff;
}

.partner-item:hover span { color: #d4af37; }

@media (max-width: 1199px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .partners-section { padding: 70px 0; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .partner-item { height: 80px; }
  .partner-item span { font-size: 17px; }
}

/* =========================
   Mission Vision Section
========================= */
.mission-section {
  padding: 110px 0;
  background: #f8f8f8;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mission-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
  border: 1px solid #eeeeee;
  border-top: 4px solid #d4af37;
  transition: all 0.35s ease;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.1);
}

.mission-icon {
  width: 66px;
  height: 66px;
  background: rgba(212, 175, 55, 0.1);
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 26px;
  transition: background 0.38s ease,
              color 0.32s ease,
              transform 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.38s ease,
              border-color 0.32s ease;
}

.mission-card:hover .mission-icon {
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  color: #111111;
  border-color: transparent;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4);
}

.mission-card h3 {
  font-size: 30px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 16px;
}

.mission-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 24px;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #333333;
  font-weight: 500;
}

.mission-list li i {
  color: #d4af37;
  font-size: 16px;
  margin-top: 3px;
}

@media (max-width: 991px) {
  .mission-section { padding: 90px 0; }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .mission-card { padding: 30px 24px; }
  .mission-card h3 { font-size: 24px; }
}

/* =========================
   Team Section
========================= */
.team-section {
  padding: 110px 0;
  background: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: #f9f9f9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.team-image {
  height: 260px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img { transform: scale(1.07); }

.team-info {
  padding: 24px 20px;
}

.team-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
}

.team-info span {
  font-size: 13px;
  color: #d4af37;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.team-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.team-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eeeeee;
  color: #666666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.team-socials a:hover {
  background: #d4af37;
  color: #111111;
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .team-section { padding: 75px 0; }
}

@media (max-width: 575px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* =========================
   Product Filter Tabs
========================= */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-tab {
  padding: 12px 28px;
  border-radius: 40px;
  border: 2px solid #eeeeee;
  background: #ffffff;
  color: #555555;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.filter-tab:hover,
.filter-tab.active {
  background: #d4af37;
  border-color: #d4af37;
  color: #111111;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.22);
}

.filter-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.filter-item.hidden {
  display: none;
}

/* =========================
   FAQ Section
========================= */
.faq-section {
  padding: 110px 0;
  background: #f8f8f8;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  border-color: #d4af37;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #444444;
  transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
  background: #d4af37;
  color: #111111;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
}

@media (max-width: 767px) {
  .faq-section { padding: 75px 0; }
  .faq-question { padding: 18px 22px; }
  .faq-question h3 { font-size: 16px; }
  .faq-answer { padding: 0 22px 20px; }
}

@media (max-width: 575px) {
  .faq-icon { width: 36px; height: 36px; min-width: 36px; }
}

/* =========================
   Timeline Section
========================= */
.timeline-section {
  padding: 110px 0;
  background: #ffffff;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #d4af37 0%, rgba(212, 175, 55, 0.2) 100%);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding: 0 0 50px 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -31px;
  top: 6px;
  width: 22px;
  height: 22px;
  background: #d4af37;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 3px #d4af37, 0 6px 16px rgba(212, 175, 55, 0.3);
  z-index: 1;
}

.timeline-content {
  background: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  padding: 28px 30px;
  transition: all 0.35s ease;
  border-left: 4px solid #d4af37;
}

.timeline-content:hover {
  transform: translateX(6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.timeline-year {
  display: inline-block;
  background: #d4af37;
  color: #111111;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.timeline-content h3 {
  font-size: 22px;
  color: #111111;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
}

@media (max-width: 767px) {
  .timeline-section { padding: 75px 0; }
  .timeline { padding-left: 30px; }
  .timeline::before { left: 12px; }
  .timeline-dot { left: -27px; width: 18px; height: 18px; }
  .timeline-item { padding-left: 30px; padding-bottom: 36px; }
  .timeline-content { padding: 22px 24px; }
  .timeline-content h3 { font-size: 19px; }
}

@media (max-width: 575px) {
  .timeline-content { padding: 18px 20px; border-radius: 14px; }
  .timeline-content h3 { font-size: 17px; }
  .timeline-content p { font-size: 14px; }
}

/* =========================
   Core Values Section
========================= */
.values-section {
  padding: 110px 0;
  background: #f8f8f8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 30px 36px;
  border: 1px solid #eeeeee;
  text-align: center;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.value-number {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 64px;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
  pointer-events: none;
}

.value-icon {
  width: 66px;
  height: 66px;
  background: rgba(212, 175, 55, 0.1);
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 26px;
  color: #d4af37;
  position: relative;
  z-index: 1;
  transition: background 0.38s ease,
              color 0.32s ease,
              transform 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.38s ease,
              border-color 0.32s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  color: #111111;
  border-color: transparent;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4);
}

.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
}

@media (max-width: 1199px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .values-section { padding: 75px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 32px 24px 28px; }
}

/* =========================
   Quick Connect Section
========================= */
.quick-connect-section {
  padding: 80px 0;
  background: #ffffff;
}

.quick-connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quick-connect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background: #f9f9f9;
  border: 2px solid #eeeeee;
  border-radius: 22px;
  padding: 36px 24px;
  transition: all 0.35s ease;
  cursor: pointer;
}

.quick-connect-card:hover {
  border-color: #d4af37;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.14);
  background: #ffffff;
}

.qc-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #d4af37;
  margin-bottom: 22px;
  transition: background 0.38s ease,
              color 0.32s ease,
              transform 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.38s ease,
              border-color 0.32s ease;
}

.quick-connect-card:hover .qc-icon {
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  color: #111111;
  border-color: transparent;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4);
}

.quick-connect-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.quick-connect-card p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 18px;
}

.qc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #d4af37;
  transition: gap 0.3s ease;
}

.quick-connect-card:hover .qc-link { gap: 14px; }

@media (max-width: 1199px) {
  .quick-connect-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .quick-connect-section { padding: 60px 0; }
  .quick-connect-grid { grid-template-columns: 1fr; }
  .quick-connect-card { padding: 28px 20px; }
}

/* =========================
   Branches Section
========================= */
.branches-section {
  padding: 110px 0;
  background: #f8f8f8;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.branch-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #d4af37;
}

.branch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.branch-icon {
  width: 62px;
  height: 62px;
  background: rgba(212, 175, 55, 0.1);
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #d4af37;
  margin: 0 auto 22px;
  transition: background 0.38s ease,
              color 0.32s ease,
              transform 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.38s ease,
              border-color 0.32s ease;
}

.branch-card:hover .branch-icon {
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  color: #111111;
  border-color: transparent;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.38);
}

.branch-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.branch-card > p {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.branch-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.branch-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888888;
}

.branch-meta span i {
  color: #d4af37;
  font-size: 13px;
}

@media (max-width: 1199px) {
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .branches-section { padding: 75px 0; }
  .branches-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .branch-card { padding: 28px 22px; }
}

/* =========================
   SERVICES PAGE
========================= */

.services-main-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 55px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 38px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f7e08b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.15);
}

.service-icon {
  width: 62px;
  height: 62px;
  background: rgba(212, 175, 55, 0.1);
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #d4af37;
  flex-shrink: 0;
  position: relative;
  transition: background 0.38s ease,
              color 0.32s ease,
              transform 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.38s ease,
              border-color 0.32s ease;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 20px;
  border: 2px solid rgba(212, 175, 55, 0);
  transition: border-color 0.38s ease,
              inset 0.44s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  color: #111111;
  border-color: transparent;
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.42);
}

.service-card:hover .service-icon::after {
  border-color: rgba(212, 175, 55, 0.22);
  inset: -9px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.service-card p {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #555;
}

.service-list li i {
  color: #d4af37;
  font-size: 12px;
  flex-shrink: 0;
}

.service-btn {
  display: inline-block;
  margin-top: auto;
  padding: 10px 22px;
  background: transparent;
  border: 2px solid #d4af37;
  color: #111111;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  text-align: center;
}

.service-btn:hover {
  background: #d4af37;
  color: #111111;
}

@media (max-width: 1199px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .services-main-section { padding: 75px 0; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .service-card { padding: 28px 22px; }
}

/* =========================
   PROCESS SECTION (HOW WE WORK)
========================= */

.process-section {
  padding: 100px 0;
  background: #fff;
}

.process-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 55px;
}

.process-card {
  flex: 1;
  background: #f8f8f8;
  border-radius: 14px;
  padding: 36px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(212,175,55,0.12);
  background: #fff;
}

.process-step {
  font-size: 48px;
  font-weight: 800;
  color: rgba(212,175,55,0.15);
  line-height: 1;
  margin-bottom: 6px;
}

.process-icon {
  width: 58px;
  height: 58px;
  background: rgba(212, 175, 55, 0.1);
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #d4af37;
  margin: 0 auto 16px;
  transition: background 0.38s ease,
              color 0.32s ease,
              transform 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.38s ease,
              border-color 0.32s ease;
}

.process-card:hover .process-icon {
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  color: #111111;
  border-color: transparent;
  transform: scale(1.14);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.42);
}

.process-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
}

.process-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.process-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: #d4af37;
  font-size: 22px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .process-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  .process-card { flex: 0 0 calc(50% - 10px); }
  .process-arrow { display: none; }
}

@media (max-width: 575px) {
  .process-section { padding: 75px 0; }
  .process-card { flex: 0 0 100%; padding: 28px 22px; }
}

/* =========================
   GALLERY PAGE
========================= */

.gallery-section {
  padding: 100px 0;
  background: #fff;
}

.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 40px 0 40px;
}

.gallery-tab {
  padding: 10px 24px;
  border: 2px solid #e0e0e0;
  background: transparent;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.gallery-tab:hover,
.gallery-tab.active {
  background: #d4af37;
  border-color: #d4af37;
  color: #111;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  text-align: center;
  color: #fff;
  padding: 16px;
}

.gallery-overlay-content i {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 10px;
  display: block;
}

.gallery-overlay-content span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.gallery-item.hidden {
  display: none;
}

@media (max-width: 1199px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .gallery-section { padding: 75px 0; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item--wide { grid-column: span 2; }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall { grid-row: span 1; }
}

/* =========================
   LIGHTBOX
========================= */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 860px;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 10px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

#lightboxCaption {
  color: #ccc;
  font-size: 15px;
  margin-top: 14px;
  font-style: italic;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1;
}

.lightbox-close:hover { color: #d4af37; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212,175,55,0.15);
  border: 2px solid #d4af37;
  border-radius: 50%;
  color: #d4af37;
  font-size: 18px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #d4af37;
  color: #111;
}

@media (max-width: 575px) {
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; font-size: 15px; }
}

/* =========================
   GALLERY HIGHLIGHT SECTION
========================= */

.gallery-highlight-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.highlight-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 55px;
}

.highlight-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 26px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(212,175,55,0.12);
}

.highlight-icon {
  width: 62px;
  height: 62px;
  background: rgba(212, 175, 55, 0.1);
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #d4af37;
  margin: 0 auto 18px;
  transition: background 0.38s ease,
              color 0.32s ease,
              transform 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.38s ease,
              border-color 0.32s ease;
}

.highlight-card:hover .highlight-icon {
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  color: #111111;
  border-color: transparent;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.42);
}

.highlight-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
}

.highlight-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1199px) {
  .highlight-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .gallery-highlight-section { padding: 75px 0; }
}

@media (max-width: 575px) {
  .highlight-cards-grid { grid-template-columns: 1fr; }
  .highlight-card { padding: 28px 22px; }
}

/* =========================
   GLOBAL ICON KEYFRAMES
========================= */

@keyframes icon-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  70%  { transform: scale(0.96); }
  100% { transform: scale(1); }
}

@keyframes icon-spin-in {
  from { transform: rotate(-20deg) scale(0.7); opacity: 0; }
  to   { transform: rotate(0deg)  scale(1);   opacity: 1; }
}

@keyframes icon-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
  50%       { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.18); }
}

/* Reusable utility icon class — use alongside any icon div */
.fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  color: #d4af37;
  transition: background 0.38s ease,
              color 0.32s ease,
              transform 0.44s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.38s ease,
              border-color 0.32s ease;
}

.fi:hover,
*:hover > .fi {
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  color: #111111;
  border-color: transparent;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4);
}

/* Size modifiers */
.fi-sm  { width: 44px; height: 44px; font-size: 18px; }
.fi-md  { width: 58px; height: 58px; font-size: 23px; }
.fi-lg  { width: 68px; height: 68px; font-size: 27px; }
.fi-xl  { width: 80px; height: 80px; font-size: 32px; }

/* Shape modifiers */
.fi-round  { border-radius: 50%; }
.fi-square { border-radius: 10px; }

/* Pop animation on mount */
.fi-animated { animation: icon-spin-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both; }

/* Dark background variant */
.fi-dark {
  background: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.4);
  color: #d4af37;
}

.fi-dark:hover,
*:hover > .fi-dark {
  background: linear-gradient(135deg, #d4af37 0%, #f0c840 100%);
  color: #111111;
  border-color: transparent;
}