@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES - PREMIUM LIGHT THEME
   ============================================= */
:root {
  /* Core Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f7f4;
  --bg-card: #ffffff;
  --bg-card-hover: #faf9f6;
  --bg-glass: rgba(0, 0, 0, 0.02);
  --bg-glass-hover: rgba(0, 0, 0, 0.04);

  /* Gold Accent System */
  --gold: #b8862e;
  --gold-light: #d4a44e;
  --gold-dark: #8a6020;
  --gold-glow: rgba(184, 134, 46, 0.2);
  --gold-subtle: rgba(184, 134, 46, 0.07);

  /* Text */
  --text-primary: #111118;
  --text-secondary: #4a4a5a;
  --text-muted: #9090a8;
  --text-gold: #b8862e;

  /* Borders */
  --border: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(184, 134, 46, 0.3);
  --border-gold-hover: rgba(184, 134, 46, 0.6);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 0 40px rgba(184, 134, 46, 0.12);
  --brand-blue: #0f4c81;
  --brand-blue-glow: rgba(15, 76, 129, 0.15);
  --shadow-blue: 0 8px 24px rgba(15, 76, 129, 0.08), 0 2px 6px rgba(15, 76, 129, 0.04);
  --shadow-blue-lg: 0 20px 45px rgba(15, 76, 129, 0.12), 0 4px 12px rgba(15, 76, 129, 0.06);


  /* Nav */
  --nav-height: 72px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Legacy compat vars for tailwind */
  --background: 0 0% 100%;
  --foreground: 240 8% 7%;
  --card: 0 0% 100%;
  --card-foreground: 240 8% 7%;
  --primary: 36 60% 45%;
  --primary-foreground: 0 0% 100%;
  --secondary: 40 15% 96%;
  --secondary-foreground: 240 8% 7%;
  --muted: 40 10% 95%;
  --muted-foreground: 240 5% 52%;
  --accent: 36 60% 52%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 40 10% 90%;
  --input: 40 10% 90%;
  --ring: 36 60% 45%;
  --radius: 0.5rem;
  --nav-bg: 0 0% 100%;
  --nav-foreground: 240 8% 7%;
  --section-alt: 40 15% 97%;
  --stat-bg: 40 15% 96%;
  --footer-bg: 240 8% 7%;
  --footer-foreground: 240 5% 70%;
}

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

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

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

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-gold);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  box-shadow: 0 1px 0 var(--border);
  position: relative;
  z-index: 1001;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-contact-strip {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.header-contact-item:hover {
  color: var(--gold);
}

.header-contact-item i {
  color: var(--gold);
  width: 14px;
  height: 14px;
}

/* NAV */
.site-nav {
  background: #ffffff;
  border-bottom: 2px solid var(--border-gold);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  transform: translateY(0);
  opacity: 1;
  will-change: transform;
  box-shadow: var(--shadow-sm)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: var(--nav-height);

}

.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1.1rem;
  height: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-header {
  display: block;
  padding: 0.85rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  background: var(--gold-subtle);
}

.nav-dropdown-item {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  border-left: 2px solid transparent;
}

.nav-dropdown-item:hover {
  color: var(--gold);
  background: var(--gold-subtle);
  border-left-color: var(--gold);
  padding-left: 1.5rem;
}

/* HAMBURGER */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background: rgba(184, 134, 46, 0.12);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 2px solid var(--border-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-menu>a {
  padding: 0.9rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-fast);
  display: block;
}

.mobile-menu>a:hover {
  color: var(--gold);
  background: var(--gold-subtle);
  padding-left: 2rem;
}

.mobile-submenu {
  background: var(--bg-secondary);
  padding: 0.5rem 0;
}

.mobile-submenu a {
  padding-left: 2.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f0ece4;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(0.7);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-section:hover .hero-bg {
  transform: scale(1.0);
}

/* Light warm overlays */
.hero-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(255, 252, 245, 0.97) 0%,
      rgba(255, 252, 245, 0.88) 40%,
      rgba(255, 252, 245, 0.5) 65%,
      transparent 100%);
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(248, 247, 244, 0.85) 0%,
      transparent 50%);
}

/* Decorative gold line */
.hero-gold-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 5rem;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeInDown 0.6s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title-accent {
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 5rem;
  display: flex;
  gap: 1.5rem;
  z-index: 10;
  animation: fadeInUp 0.7s ease 0.5s both;
}

.hero-stat {
  text-align: center;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.hero-stat-number {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  background: var(--gold);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border-gold);
  transition: all var(--transition-base);
}

.btn-outline-light:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* =============================================
   SECTION COMMONS
   ============================================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 640px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.25rem 0;
}

/* =============================================
   CATEGORY CARDS (Product Grid)
   ============================================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-gold);
}

.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 280px;
  background: var(--bg-secondary);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: saturate(0.8);
  transition: opacity var(--transition-slow), filter var(--transition-slow), transform var(--transition-slow);
}

.category-card:hover img {
  opacity: 1;
  filter: saturate(1.1);
  transform: scale(1.06);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 24, 0.75) 0%, rgba(17, 17, 24, 0.15) 60%, transparent 100%);
  transition: background var(--transition-base);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(17, 17, 24, 0.6) 0%, rgba(17, 17, 24, 0.05) 60%, transparent 100%);
}

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category-card-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card-border {
  transform: scaleX(1);
}

.category-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.category-card-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-base);
}

.category-card:hover .category-card-explore {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   PROJECTS SECTION
   ============================================= */
.projects-section {
  padding: 6rem 5rem;
  background: var(--bg-secondary);
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-sm);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: all 0.6s ease;
}

.project-card:hover img {
  filter: saturate(1.1);
  transform: scale(1.04);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 24, 0.88) 0%, rgba(17, 17, 24, 0.2) 55%, transparent 100%);
}

.project-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.project-card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.project-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  transform: translateX(0);
  transition: all var(--transition-base);
}

.project-card:hover .project-card-link {
  gap: 0.75rem;
}

.project-card-border {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.project-card:hover .project-card-border {
  transform: scaleY(1);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  padding: 6rem 5rem;
  background: var(--bg-primary);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color var(--transition-base);
  pointer-events: none;
  z-index: 2;
}

.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.service-card:hover::before {
  border-color: var(--border-gold);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: all 0.6s ease;
}

.service-card:hover .service-card-img img {
  filter: saturate(1.1);
  transform: scale(1.05);
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 252, 245, 0.5), transparent);
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--transition-fast);
}

.service-card:hover .service-card-link {
  gap: 0.7rem;
}

.service-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover .service-card-line {
  transform: scaleX(1);
}

/* =============================================
   ABOUT / STATS SECTION
   ============================================= */
.about-section {
  padding: 6rem 5rem;
  background: var(--bg-secondary);
}

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

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: saturate(0.8);
}

.about-image-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--border-gold);
  pointer-events: none;
}

.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  min-width: 120px;
  box-shadow: var(--shadow-md);
}

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

.about-image-badge-text {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

.about-feature:hover {
  border-color: var(--border-gold);
  background: var(--gold-subtle);
}

.about-feature-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.about-feature-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* STATS BAR */
.stats-bar {
  background: var(--gold);
  padding: 4rem 5rem;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   CLIENTS SECTION
   ============================================= */
.clients-section {
  padding: 5rem 0;
  background: var(--bg-primary);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 5rem;
}

.clients-track {
  display: flex;
  gap: 0;
  width: max-content;
}

.animate-scroll-left {
  animation: scroll-left 35s linear infinite;
}

.client-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 72px;
  margin: 0 12px;
  padding: 0 2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  cursor: default;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.client-card:hover {
  border-color: var(--border-gold);
  background: var(--gold-subtle);
  box-shadow: var(--shadow-md);
}

.client-card span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color var(--transition-base);
  white-space: nowrap;
}

.client-card:hover span {
  color: var(--gold);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  padding: 6rem 5rem;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-info-item:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-info-icon i {
  width: 18px;
  height: 18px;
}

.contact-info-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-info-value {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-textarea {
  resize: none;
  min-height: 140px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #111118;
  border-top: 3px solid var(--gold);
}

.footer-main {
  padding: 5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1.25rem;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(184, 134, 46, 0.3);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.footer-link:hover {
  color: var(--gold);
  padding-left: 0.25rem;
}

.footer-link:hover::before {
  width: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-contact-item i {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-link {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
  color: var(--gold);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .hero-content {
    padding: 5rem 3.5rem;
  }

  .hero-stats {
    right: 3.5rem;
  }

  .projects-section,
  .services-section,
  .about-section,
  .stats-bar,
  .contact-section {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .footer-main {
    padding: 4rem 3rem;
    gap: 2.5rem;
  }

  .footer-bottom {
    padding: 1.5rem 3rem;
  }
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrapper {
    max-width: 580px;
  }

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

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

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

  .header-contact-strip {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Hide the desktop nav bar entirely on mobile (hamburger is in header-topbar) */
  .site-nav {
    display: none;
  }

  /* Ensure header-topbar is the sticky container for mobile menu dropdown */
  .hero-content {
    padding: 3rem 1.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    display: none;
  }

  .projects-section,
  .services-section,
  .about-section,
  .stats-bar,
  .contact-section {
    padding: 4rem 1.5rem;
  }

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

  .stat-item::after {
    display: none;
  }

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

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

  .footer-main {
    padding: 3rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .header-topbar {
    padding: 0 1.5rem;
    height: 70px;
  }

  .header-topbar img {
    height: 52px !important;
  }

  .clients-header {
    padding: 0 1.5rem;
  }

  /* Index homepage about: heading first, image second on mobile */
  .about-grid {
    display: flex;
    flex-direction: column;
  }

  .about-content {
    display: contents;
  }

  .about-intro-heading {
    order: 1;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .about-image-wrapper {
    order: 2;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .about-content>p,
  .about-features,
  .about-content>.reveal:last-child {
    order: 3;
  }

  .about-image-main {
    height: 280px;
  }

  .about-image-badge {
    bottom: -1rem;
    right: -0.5rem;
    padding: 1rem;
    min-width: 90px;
  }

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

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.9rem;
  }
}

/* =============================================
   PREMIUM CLIENTS SECTION (MOCKUP STYLE)
   ============================================= */
.clients-premium-section {
  padding: 6rem 2rem;
  background: radial-gradient(circle at center, #fafaf9 0%, #f4f3f0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.clients-premium-subtitle {
  color: #8b5cf6;
  /* Modern lavender/purple */
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.clients-premium-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}

.clients-premium-deck {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  padding: 2rem 0;
  flex-wrap: wrap;
  /* wrap on mobile, but keep inline structure on desktop */
}

.client-premium-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

/* Base scale/translate offsets for the perspective arc on desktop */
@media (min-width: 1024px) {

  /* Curved flow: cards translate vertically downwards as they go outward, and scale down */
  .client-premium-card:nth-child(1),
  .client-premium-card:nth-child(9) {
    transform: scale(0.82) translateY(16px);
  }

  .client-premium-card:nth-child(2),
  .client-premium-card:nth-child(8) {
    transform: scale(0.88) translateY(10px);
  }

  .client-premium-card:nth-child(3),
  .client-premium-card:nth-child(7) {
    transform: scale(0.94) translateY(5px);
  }

  .client-premium-card:nth-child(4),
  .client-premium-card:nth-child(6) {
    transform: scale(0.98) translateY(1px);
  }

  .client-premium-card:nth-child(5).highlighted {
    transform: scale(1.08) translateY(-6px);
    z-index: 10;
  }

  /* Hover states that preserve the curve baseline but lift up slightly */
  .client-premium-card:nth-child(1):hover,
  .client-premium-card:nth-child(9):hover {
    transform: scale(0.88) translateY(8px);
  }

  .client-premium-card:nth-child(2):hover,
  .client-premium-card:nth-child(8):hover {
    transform: scale(0.94) translateY(2px);
  }

  .client-premium-card:nth-child(3):hover,
  .client-premium-card:nth-child(7):hover {
    transform: scale(1.0) translateY(-3px);
  }

  .client-premium-card:nth-child(4):hover,
  .client-premium-card:nth-child(6):hover {
    transform: scale(1.04) translateY(-7px);
  }

  .client-premium-card:nth-child(5).highlighted:hover {
    transform: scale(1.14) translateY(-14px);
  }
}

/* Center Highlight Card (Squarespace) */
.client-premium-card.highlighted {
  background: #111111;
  border-color: #111111;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.client-premium-card:hover {
  border-color: rgba(15, 76, 129, 0.25);
  box-shadow: var(--shadow-blue);
}

.client-premium-card.highlighted:hover {
  box-shadow: 0 24px 45px rgba(15, 76, 129, 0.25), 0 8px 16px rgba(0, 0, 0, 0.15);
}

.client-premium-card svg {
  transition: transform 0.3s ease;
}

.client-premium-card:hover svg {
  transform: scale(1.08);
}

.clients-premium-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.6;
  margin: 0 auto;
  opacity: 0.85;
}

/* Adjustments for tablets/mobiles */
@media (max-width: 1023px) {
  .clients-premium-deck {
    gap: 16px;
    padding: 1rem;
  }

  .client-premium-card {
    width: 80px;
    height: 80px;
  }

  .client-premium-card svg {
    transform: scale(0.85);
  }
}

/* =============================================
   BRAND BLUE ACCENTS
   ============================================= */
.header-contact-item i {
  color: var(--brand-blue) !important;
}

.footer-contact-item i {
  color: var(--brand-blue) !important;
}

.clients-premium-subtitle {
  color: var(--brand-blue) !important;
}

/* =============================================
   RESPONSIVE LAYOUT CLASSES & OPTIMIZATIONS
   ============================================= */
.homepage-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.homepage-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-who-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4.5rem;
}

.about-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

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

.about-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-gold);
  margin-top: 2.5rem;
}

.services-strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .homepage-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-who-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
  }

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

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

@media (max-width: 768px) {
  .about-vision-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  /* About Us page: reorder Who We Are section on mobile */
  .about-intro-wrap {
    display: flex;
    flex-direction: column;
  }

  /* 1. Heading + label comes first */
  .about-intro-heading {
    order: 1;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  /* 2. Image collage comes second */
  .about-premium-collage {
    order: 2;
    transform: scale(0.82);
    transform-origin: top center;
    margin-bottom: -1rem;
    margin-top: 0;
  }

  /* 3. Content grid comes last */
  .about-who-grid {
    order: 3;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .homepage-projects-grid {
    grid-template-columns: 1fr;
  }

  .homepage-services-grid {
    grid-template-columns: 1fr;
  }

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

  .services-strengths-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .clients-premium-deck {
    gap: 10px !important;
  }

  .client-premium-card {
    width: 72px !important;
    height: 72px !important;
  }

  .client-premium-card svg {
    transform: scale(0.75) !important;
  }
}

/* =============================================
   MOBILE MENU DRAWER & COLLAPSIBLE SUBMENU STYLE
   ============================================= */
.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  padding: 0;
}

.mobile-nav-row a {
  border-bottom: none !important;
  flex: 1;
  padding: 0.9rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  display: block;
}

.mobile-nav-row a:hover {
  color: var(--gold);
  background: var(--gold-subtle);
}

.mobile-expand-btn {
  background: none;
  border: none;
  color: var(--gold);
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-expand-btn.open i {
  transform: rotate(180deg);
}

.mobile-menu .mobile-submenu {
  background: #f8f7f4;
  padding: 0.4rem 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.mobile-menu .mobile-submenu a {
  padding: 0.6rem 1.5rem 0.6rem 2.5rem !important;
  font-size: 0.77rem !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0.04em !important;
  color: var(--text-secondary) !important;
  border-bottom: none !important;
  transition: all var(--transition-fast) !important;
  display: block !important;
}

.mobile-menu .mobile-submenu a:hover {
  color: var(--gold) !important;
  background: var(--gold-subtle) !important;
  padding-left: 3rem !important;
}

/* Mobile menu active link indicator */
.mobile-menu>a.active-mobile {
  color: var(--gold);
  border-left: 3px solid var(--gold);
}

/* =============================================
   FEATURED PRODUCTS GALLERY
   ============================================= */
.featured-products-section {
  padding: 5rem 2rem;
  background: var(--bg-primary);
}

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

.featured-product-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-base);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.featured-product-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold), var(--shadow-md);
  transform: translateY(-4px);
}

.fp-image-wrapper {
  width: 100%;
  height: 220px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
}

.fp-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition-base);
  z-index: 2;
  position: relative;
}

.featured-product-card:hover .fp-image-wrapper img {
  transform: scale(1.08);
}

.fp-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 3;
}

.featured-product-card:hover .fp-image-wrapper::before {
  opacity: 1;
}

.fp-hover-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: all var(--transition-base);
  z-index: 4;
}

.fp-hover-arrow i {
  width: 22px;
  height: 22px;
}

.featured-product-card:hover .fp-hover-arrow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.fp-info {
  padding: 1.25rem 1rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-info h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .featured-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .featured-products-section {
    padding: 3.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .featured-products-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   ABOUT PREMIUM CARD
   ============================================= */
.about-premium-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  max-width: 900px;
  margin: 4rem auto 0 auto;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  position: relative;
}

.about-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.about-premium-card p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.about-premium-card p:last-of-type {
  margin-bottom: 2.5rem;
}

.about-premium-card strong {
  color: var(--text-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .about-premium-card {
    padding: 2.5rem 1.5rem;
    margin-top: 2rem;
  }
}