/* ============================================
   VS PRINTS - COMPLETE STYLESHEET
   Design System + All Page Styles
   ============================================ */

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

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  /* Colors */
  --primary: #f9ac0c;
  --primary-dark: #E55A2B;
  --primary-light: #FF8C5A;
  --secondary: #1A1A2E;
  --secondary-light: #16213E;
  --accent: #F5A623;
  --accent-light: #FFD93D;
  --dark: #0F0F1A;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #EEEEEE;
  --border: #E0E0E0;
  --success: #28A745;
  --gradient-primary: linear-gradient(135deg, #f9ac0c 0%, #F5A623 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  --gradient-hero: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(22,33,62,0.7) 100%);

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --gap: 30px;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 5px 25px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 35px rgba(255,107,53,0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-cubic: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Header */
  --topbar-height: 44px;
  --header-height: 80px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
  outline: none;
  border: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
}

.section-dark {
  background: var(--secondary);
  color: var(--white);
}

.section-light {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #f9ac0c;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  position: relative;
  padding: 6px 20px;
  background: rgba(255,107,53,0.08);
  border-radius: var(--radius-xl);
}

.section-title {
  margin-bottom: 18px;
}

.section-title span {
  color: #f9ac0c;
  position: relative;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-light);
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-primary { color: #f9ac0c !important; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }

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

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255,107,53,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,107,53,0.45);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26,26,46,0.25);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--secondary-light);
}

.btn-outline {
  background: transparent;
  color: #f9ac0c;
  border: 2px solid #f9ac0c;
}

.btn-outline:hover {
  background: #f9ac0c;
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: #f9ac0c;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn i, .btn svg {
  font-size: 1.1em;
  transition: transform var(--transition);
}

.btn:hover i, .btn:hover svg {
  transform: translateX(4px);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  display: flex;
  gap: 8px;
}

.preloader-spinner span {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: #f9ac0c;
  animation: preloaderBounce 1.4s ease-in-out infinite both;
}

.preloader-spinner span:nth-child(1) { animation-delay: -0.32s; }
.preloader-spinner span:nth-child(2) { animation-delay: -0.16s; }
.preloader-spinner span:nth-child(3) { animation-delay: 0s; }

@keyframes preloaderBounce {
  0%, 80%, 100% { transform: scale(0.4); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--secondary);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.topbar-left a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
}

.topbar-left a:hover {
  color: #f9ac0c;
}

.topbar-left a svg {
  width: 14px;
  height: 14px;
  fill: #f9ac0c;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
  background: rgba(255,255,255,0.05);
}

.topbar-social a:hover {
  background: #f9ac0c;
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Header / Navbar ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--secondary);
}

.logo img {
  height: 50px;
}

.logo span {
  color: #f9ac0c;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu a {
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #f9ac0c;
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #f9ac0c;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 60%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.book-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 15px rgba(255,107,53,0.35);
  transition: var(--transition);
}

.book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1002;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 1001;
  transition: var(--transition-slow);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  padding: 80px 30px 30px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: #f9ac0c;
  padding-left: 10px;
}

.mobile-menu .btn {
  margin-top: 25px;
  width: 100%;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.hero-text {
  max-width: 700px;
}

.hero-text .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255,107,53,0.3);
  animation: fadeInDown 0.8s ease forwards;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-text h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 35px;
  max-width: 550px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: #f9ac0c;
  width: 35px;
  border-radius: 6px;
}

/* ---------- Process Section ---------- */
.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0,
    var(--border) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.process-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  border-radius: var(--radius-full);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #f9ac0c;
  border: 3px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
}

.process-icon::after {
  content: attr(data-step);
  position: absolute;
  top: -5px;
  right: -5px;
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
}

.process-card:hover .process-icon {
  background: #f9ac0c;
  color: var(--white);
  border-color: #f9ac0c;
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.process-card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.process-card p {
  font-size: 0.93rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- Services Section ---------- */
.services-section {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

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

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-img .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(26,26,46,0.8));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-card-img .service-overlay {
  opacity: 1;
}

.service-card-body {
  padding: 25px;
}

.service-card-icon {
  width: 55px;
  height: 55px;
  background: rgba(255,107,53,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  color: #f9ac0c;
  border: 3px solid var(--white);
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: #f9ac0c;
  color: var(--white);
}

.service-card-body h4 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f9ac0c;
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-card:hover .service-card-link svg {
  transform: translateX(5px);
}

/* ---------- About Preview Section ---------- */
.about-preview {
  background: var(--white);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-preview-img img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-preview-img .experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .label {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-preview-content .section-subtitle {
  text-align: left;
}

.about-preview-content h2 {
  margin-bottom: 20px;
}

.about-preview-content p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0 30px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text);
}

.about-feature-item svg {
  width: 22px;
  height: 22px;
  fill: #f9ac0c;
  flex-shrink: 0;
}

/* ---------- Why Choose Us ---------- */
.why-section {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: rgba(255,107,53,0.05);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.why-card {
  text-align: center;
  padding: 40px 25px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-8px);
  border-color: #f9ac0c;
}

.why-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255,107,53,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #f9ac0c;
  transition: var(--transition);
}

.why-card:hover .why-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.why-card h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* ---------- Stats / Counter Section ---------- */
.stats-section {
  background: var(--gradient-primary);
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 500;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: var(--off-white);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-quote {
  font-size: 3rem;
  color: #f9ac0c;
  line-height: 1;
  margin-bottom: 15px;
  font-family: serif;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 25px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-info h5 {
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-nav button {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.1rem;
  transition: var(--transition);
}

.testimonial-nav button:hover {
  background: #f9ac0c;
  color: var(--white);
}

/* ---------- CTA Banner Section ---------- */
.cta-section {
  background: var(--secondary);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #f9ac0c;
  border-radius: 3px;
}

.footer-about p {
  margin-bottom: 20px;
  font-size: 0.93rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: #f9ac0c;
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  color: #f9ac0c;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-links a:hover {
  color: #f9ac0c;
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.93rem;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255,107,53,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9ac0c;
}

.footer-bottom {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: #f9ac0c;
}

/* ---------- WhatsApp Float Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 25px rgba(37,211,102,0.6); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #f9ac0c;
  transform: translateY(-3px);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-section {
  background: var(--secondary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.breadcrumb-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.breadcrumb-content h1 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.breadcrumb-nav a {
  color: #f9ac0c;
}

.breadcrumb-nav span {
  color: rgba(255,255,255,0.4);
}

/* ---------- Products Page ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: #f9ac0c;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,107,53,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #f9ac0c;
  transition: var(--transition);
}

.product-card:hover .product-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.05) rotate(5deg);
}

.product-card h4 {
  margin-bottom: 12px;
}

.product-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ---------- Shop Page ---------- */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  background: var(--off-white);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: #f9ac0c;
  color: var(--white);
  border-color: #f9ac0c;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.shop-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.shop-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.shop-item-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #f9ac0c;
}

.shop-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.shop-item-body {
  padding: 20px;
}

.shop-item-body h5 {
  margin-bottom: 8px;
}

.shop-item-body p {
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #f9ac0c;
  font-size: 1.1rem;
}

/* ---------- About Page ---------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-story-img img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.mv-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-top: 4px solid #f9ac0c;
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mv-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,107,53,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #f9ac0c;
  margin-bottom: 20px;
}

.mv-card h3 {
  margin-bottom: 12px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h5 {
  margin-bottom: 4px;
}

.team-card .role {
  color: #f9ac0c;
  font-size: 0.88rem;
  font-weight: 500;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: var(--light-gray);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  padding: 20px 0;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  padding-right: 50px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: 50px;
  margin-left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 28px;
  width: 18px;
  height: 18px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -9px;
}

.timeline-content {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.timeline-year {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ---------- Careers Page ---------- */
.careers-hero-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.job-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.job-card:hover {
  border-left-color: #f9ac0c;
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

.job-info h4 {
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.job-meta span svg {
  width: 14px;
  height: 14px;
  fill: #f9ac0c;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.benefit-card {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  background: rgba(255,107,53,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #f9ac0c;
}

/* Application Form */
.application-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--off-white);
  transition: var(--transition);
  color: var(--text);
}

.form-control:focus {
  border-color: #f9ac0c;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

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

/* ---------- Blog Page ---------- */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}

.blog-card-meta span {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-meta span svg {
  width: 14px;
  height: 14px;
  fill: #f9ac0c;
}

.blog-card-body h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.blog-card-body h4 a:hover {
  color: #f9ac0c;
}

.blog-card-body p {
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}

.read-more {
  color: #f9ac0c;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more:hover svg {
  transform: translateX(5px);
}

.read-more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 25px;
}

.sidebar-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--text);
  transition: var(--transition);
}

.category-list a:hover {
  background: rgba(255,107,53,0.06);
  color: #f9ac0c;
}

.category-count {
  background: var(--off-white);
  padding: 2px 10px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
}

.recent-post {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-gray);
}

.recent-post:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-post-img {
  width: 70px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--off-white);
}

.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-info h6 {
  font-size: 0.88rem;
  line-height: 1.4;
  margin-bottom: 4px;
}

.recent-post-info h6 a:hover {
  color: #f9ac0c;
}

.recent-post-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-cards {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
}

.contact-info-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background: rgba(255,107,53,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #f9ac0c;
  transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.contact-info-text h5 {
  margin-bottom: 5px;
}

.contact-info-text p {
  font-size: 0.9rem;
  margin: 0;
}

.contact-info-text a {
  color: var(--text-light);
}

.contact-info-text a:hover {
  color: #f9ac0c;
}

.contact-form {
  background: var(--white);
  padding: 45px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  margin-bottom: 25px;
}

.map-section {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.45s; }
.stagger-children > *:nth-child(10) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(11) { transition-delay: 0.55s; }
.stagger-children > *:nth-child(12) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(13) { transition-delay: 0.65s; }
.stagger-children > *:nth-child(14) { transition-delay: 0.7s; }
.stagger-children > *:nth-child(15) { transition-delay: 0.75s; }

/* ---------- Keyframe Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---------- Responsive: Tablet (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 70px 0;
    --header-height: 70px;
  }

  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .hero { height: 70vh; min-height: 450px; }

  .about-preview-grid,
  .about-story,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .process-grid { gap: 25px; }
  .process-grid::before { display: none; }

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

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

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

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

  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }

  .timeline::before { left: 30px; }
  .timeline-item { width: 100%; padding-left: 60px !important; padding-right: 0 !important; margin-left: 0 !important; text-align: left !important; }
  .timeline-dot { left: 21px !important; right: auto !important; }
}

/* ---------- Responsive: Mobile (max-width: 768px) ---------- */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --header-height: 65px;
  }

  .container { padding: 0 15px; }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .section-header { margin-bottom: 40px; }

  .hero { height: 60vh; min-height: 400px; }
  .hero-text h1 { font-size: 1.6rem; }
  .hero-text p { font-size: 1rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }

  .process-grid { grid-template-columns: 1fr; gap: 30px; }

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

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

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

  .benefits-grid,
  .mission-vision-grid { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .topbar-left { gap: 15px; }
  .topbar-left span { display: none; }

  .application-form,
  .contact-form { padding: 30px 20px; }

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

  .cta-section { padding: 60px 0; }

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

  .job-card { flex-direction: column; align-items: flex-start; }
}

/* ---------- Responsive: Small Mobile (max-width: 576px) ---------- */
@media (max-width: 576px) {
  .hero { height: 55vh; min-height: 350px; }

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

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

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

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

  .topbar { display: none; }

  .breadcrumb-section { padding: 40px 0; }

  .shop-filters { justify-content: flex-start; }
}

/* ---------- Portfolio / Products Gallery ---------- */
.portfolio-filter {
  margin-bottom: 40px;
  text-align: center;
}

.filter-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-categories a {
  font-weight: 600;
  padding: 8px 20px;
  color: var(--secondary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.filter-categories a:hover,
.filter-categories a.active {
  background: #f9ac0c;
  color: var(--white);
  border-color: #f9ac0c;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.portfolio-item-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-item-inner:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.portfolio-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-img-placeholder {
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: var(--transition);
}

.portfolio-item-inner:hover .portfolio-img-placeholder {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 25, 38, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item-inner:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-link {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 24px;
  border: 2px solid var(--white);
  border-radius: var(--radius-sm);
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.portfolio-link:hover {
  background: #f9ac0c;
  border-color: #f9ac0c;
  color: var(--white);
}

.portfolio-item-inner:hover .portfolio-link {
  transform: translateY(0);
}

.portfolio-info {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--secondary);
}

.portfolio-info h4 a {
  color: inherit;
}

.portfolio-info h4 a:hover {
  color: #f9ac0c;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
}

/* Project Filters */
.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  background-color: #f8f8f8;
  padding: 15px 20px;
  border-radius: 4px;
}
.filter-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 3px;
  background: transparent;
  color: #333;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  box-shadow: none;
  font-family: var(--font-heading);
  white-space: nowrap;
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: #fe7333; /* Matching the yellow/orange from the screenshot */
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(255,165,0,0.3);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  min-height: 400px;
  align-content: start;
}
.project-item {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform-origin: center;
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 991px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/* Custom Breadcrumb Banner (Plus Pattern) */
.breadcrumb-banner {
  background-color: #1b1b28;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 15 v10 M15 20 h10' stroke='rgba(255,255,255,0.06)' stroke-width='1' /%3E%3C/svg%3E");
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.breadcrumb-banner h1 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.breadcrumb-banner .breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #a1a1aa; 
  font-weight: 500;
}
.breadcrumb-banner .breadcrumb-nav a {
  color: #f9ac0c; 
  transition: opacity 0.3s ease;
}
.breadcrumb-banner .breadcrumb-nav a:hover {
  opacity: 0.8;
}
.breadcrumb-banner .breadcrumb-nav span {
  color: #52525b;
}

/* Why We Are The Best */
.why-best-section {
  background-color: var(--white);
  padding: 80px 0;
}
.why-best-section .section-title {
  text-transform: uppercase;
  margin-bottom: 50px;
}
.why-best-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.why-best-img img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.why-best-accordion {
  display: flex;
  flex-direction: column;
}
.accordion-item {
  border: 1px solid var(--border);
  margin-bottom: -1px; /* collapse borders */
  overflow: hidden;
  background: var(--white);
}
.accordion-header {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  background: var(--white);
  transition: all 0.3s ease;
}
.accordion-header h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  transition: color 0.3s ease;
}
.accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 1.2rem;
  font-weight: 400;
  margin-right: 15px;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.accordion-content {
  max-height: 0;
  padding: 0 24px;
  opacity: 0;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
  background: var(--off-white);
}
.accordion-content p {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Active State */
.accordion-item.active .accordion-header h4 {
  color: #f9ac0c;
}
.accordion-item.active .accordion-icon {
  color: #f9ac0c;
  border-color: #f9ac0c;
}
.accordion-item.active .accordion-content {
  opacity: 1;
  padding-top: 5px;
}

@media (max-width: 991px) {
  .why-best-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Service Cards Grid (Services Page) */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sc-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  padding: 35px 24px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 260px;
  text-decoration: none;
}
.sc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #fc7c30; /* purple-blue matching image */
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.sc-card:hover {
  border-color: #fe7133;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgb(255, 184, 119);
}
.sc-card:hover::before {
  opacity: 1;
}
.sc-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f1f2e;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.sc-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.sc-card:hover .sc-title,
.sc-card:hover .sc-desc {
  color: #fff;
}
.sc-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}
.sc-card:hover .sc-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1200px) {
  .service-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .service-cards-grid { grid-template-columns: 1fr; }
}

/* Why Choose Us - Staggered Grid (About Page) */
.wcu-pill {
  background: #fff;
  color: #fd7532;
  padding: 8px 24px;
  border-radius: 30px;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 59, 129, 0.1);
}
.wcu-staggered-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-items: flex-start;
  padding: 20px 0 60px;
}
.wcu-card {
  background: #fff;
  border-radius: 8px;
  padding: 45px 30px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
}
.wcu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}
.wcu-card:nth-child(even) {
  margin-top: 40px;
}
.wcu-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(113, 85, 232, 0.08);
  position: absolute;
  top: 35px;
  left: 15px;
  z-index: 0;
}
.wcu-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.wcu-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .wcu-staggered-grid { grid-template-columns: repeat(2, 1fr); }
  .wcu-card:nth-child(even) { margin-top: 0; }
  .wcu-card:nth-child(2), .wcu-card:nth-child(4) { margin-top: 40px; }
}
@media (max-width: 600px) {
  .wcu-staggered-grid { grid-template-columns: 1fr; }
  .wcu-card:nth-child(even), .wcu-card:nth-child(2), .wcu-card:nth-child(4) { margin-top: 0; }
}

/* Achievements Section */
.achievements-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}
.achievements-images {
  position: relative;
  height: 400px;
  width: 100%;
}
.collage-main, .collage-sub1, .collage-sub2 {
  position: absolute;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 4px solid #fff;
  transition: transform 0.4s ease;
  background: #f8f9fa;
}
.achievements-images:hover .collage-main { transform: scale(1.02); }
.achievements-images:hover .collage-sub1 { transform: scale(1.05) translate(-5px, -5px); }
.achievements-images:hover .collage-sub2 { transform: scale(1.05) translate(5px, 5px); }

.collage-main {
  width: 60%;
  top: 0;
  left: 0;
  z-index: 1;
}
.collage-main img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }

.collage-sub1 {
  width: 55%;
  top: 25%;
  right: 0;
  z-index: 2;
}
.collage-sub1 img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }

.collage-sub2 {
  width: 65%;
  bottom: 0;
  left: 10%;
  z-index: 3;
}
.collage-sub2 img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16/9; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 35px;
}
.stat-box {
  padding-right: 20px;
}
.stat-box:not(:last-child) {
  border-right: 1px solid #eaeaea;
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fd7632;
  margin-bottom: 10px;
}
.stat-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.stat-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

.features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.5;
}
.features-list .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #fd7632;
  margin-top: 2px;
  flex-shrink: 0;
}
.features-list .check-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 3;
}

@media (max-width: 1024px) {
  .achievements-grid { grid-template-columns: 1fr; gap: 40px; }
  .achievements-images { height: 450px; max-width: 600px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .stats-row { grid-template-columns: 1fr; gap: 30px; padding-bottom: 25px; }
  .stat-box { padding-right: 0; }
  .stat-box:not(:last-child) { border-right: none; border-bottom: 1px solid #eaeaea; padding-bottom: 25px; }
  .features-list ul { grid-template-columns: 1fr; gap: 15px; }
  .achievements-images { height: 350px; }
}


/* Hero Banner Perfectly Responsive */
@media (max-width: 991px) {
  .hero {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    aspect-ratio: 1920 / 922; /* match the exact aspect ratio of the slider images */
  }
  .hero-slide-bg {
    background-size: cover;
    background-position: center;
    /* remove the scale effect on mobile so text doesn't get clipped during animation */
    transform: none !important;
    transition: opacity 1s ease-in-out !important;
  }
  .hero-slide.active .hero-slide-bg {
    transform: none !important;
  }
  .hero-dots {
    bottom: 10px;
  }
  .hero-dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}

@media (max-width: 576px) {
  .hero {
    aspect-ratio: 1920 / 922;
  }
  .hero-dots {
    bottom: 5px;
  }
}


/* Product Grid Section */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.product-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1; /* square image area */
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
}
.product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FFA500;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  z-index: 2;
}
.product-info {
  padding: 20px 15px;
  text-align: center;
}
.product-cat {
  display: block;
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-title {
  font-size: 13px;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  /* truncate to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}
.product-rating {
  font-size: 12px;
  margin-bottom: 10px;
}
.product-rating .stars {
  color: #333; /* screenshot has black stars */
  letter-spacing: 1px;
}
.product-rating .rating-count {
  color: #888;
}
.product-price {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile Header Fix --- */
@media (max-width: 768px) {
  .logo img {
    height: 36px !important;
  }
  .book-now-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .header-actions {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 30px !important;
  }
  .book-now-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
    white-space: nowrap;
    gap: 4px;
  }
  .book-now-btn svg {
    display: none; /* Hide icon to save space on very small screens */
  }
  .header-actions {
    gap: 8px;
  }
}

/* Mobile Menu Close Button and Button Fixes */
.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  z-index: 1002;
}
.mobile-menu-close:hover {
  color: #f9ac0c;
  transform: rotate(90deg);
}

/* Fix the Book Now button inside the mobile menu */
.mobile-menu a.btn {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  border-bottom: none;
  padding: 14px 32px !important;
  width: 100%;
  color: var(--white) !important;
  text-align: center;
  margin-top: 25px;
}
.mobile-menu a.btn:hover, .mobile-menu a.btn.active {
  padding-left: 32px !important;
  color: var(--white) !important;
}

/* --- Mobile Grid Fixes --- */
@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- VI Header Styles ---------- */
.vi-topbar {
  background-color: #f9ac0c;
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  font-family: var(--font-body);
}
.vi-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vi-topbar-left {
  display: flex;
  gap: 15px;
}
.vi-topbar-left a {
  color: #fff;
  display: flex;
  align-items: center;
}
.vi-topbar-left a:hover {
  opacity: 0.8;
}
.vi-topbar-right {
  font-weight: 500;
}
.vi-middlebar {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}
.vi-middlebar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vi-middle-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}
.vi-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vi-contact-info {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
.vi-contact-info strong {
  color: #333;
}
.vi-middle-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}
.vi-middle-logo img {
  max-height: 60px;
}
.vi-middle-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  flex: 1;
}
.vi-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #333;
  font-size: 12px;
  font-weight: 500;
}
.vi-action-item:hover {
  color: #f9ac0c;
}
.vi-wishlist-icon {
  position: relative;
}
.vi-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: #f9ac0c;
  color: #fff;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.vi-bottombar {
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
}
.vi-nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 15px 0;
}
.vi-nav-menu a {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-transform: capitalize;
  position: relative;
  font-family: var(--font-heading);
}
.vi-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #f9ac0c;
  transition: var(--transition);
  transform: translateX(-50%);
}
.vi-nav-menu a:hover, .vi-nav-menu a.active {
  color: #f9ac0c;
}
.vi-nav-menu a:hover::after, .vi-nav-menu a.active::after {
  width: 100%;
}
@media (max-width: 991px) {
  .vi-middle-contact, .vi-middle-actions, .vi-bottombar {
    display: none;
  }
  .vi-middle-logo {
    justify-content: flex-start;
  }
  .vi-middlebar .hamburger {
    display: flex;
  }
}

/* Custom Banner for Slide 4 */
.custom-banner-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #071c50; /* Dark navy base */
  overflow: hidden;
}

/* Layer 1: Yellow chevron covering the left side */
.banner-yellow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f7a800; /* Yellow */
  clip-path: polygon(0 0, 48% 0, 58% 50%, 48% 100%, 0 100%);
}

/* Layer 2: Light gray chevron covering the left side slightly less */
.banner-gray {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e5e5e5; /* Light gray */
  clip-path: polygon(0 0, 45% 0, 55% 50%, 45% 100%, 0 100%);
  display: flex;
  align-items: center;
}

.banner-img-wrap {
  width: 45%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-img-wrap img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  mix-blend-mode: multiply; /* Blends white bg of jpeg seamlessly with gray */
}

/* Right side content */
.banner-text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Let clicks pass to slider */
}

.banner-badge {
  position: absolute;
  top: 65%;
  left: 65%;
  color: #f7a800;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
}

.banner-heading {
  position: absolute;
  top: 50%;
  left: 60%;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

/* Accents */
.custom-banner-wrap .shape-line {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 80px;
  height: 4px;
  background-color: #ffffff;
}

.custom-banner-wrap .shape-triangle {
  position: absolute;
  bottom: 30%;
  left: 50%;
  width: 25px;
  height: 25px;
  /* background: transparent;
  border: 3px solid #f7a800; */
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.custom-banner-wrap .shape-rect {
  position: absolute;
  bottom: 15%;
  right: 15%;
  width: 60px;
  height: 20px;
  background-color: #f7a800;
  transform: skew(-25deg);
}

.custom-banner-wrap .shape-bottom-accent {
  position: absolute;
  bottom: 0;
  left: 35%;
  width: 5%;
  height: 20%;
  /* background-color: #f7a800;
  clip-path: polygon(100% 0, 100% 100%, 0 100%); */
}

@media (max-width: 991px) {
  .banner-gray {
    clip-path: polygon(0 0, 100% 0, 100% 55%, 50% 60%, 0 55%);
    align-items: center;
    justify-content: center;
  }
  .banner-yellow {
    clip-path: polygon(0 0, 100% 0, 100% 58%, 50% 63%, 0 58%);
  }
  .banner-img-wrap {
    width: 100%;
    height: 55%;
    padding: 10px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .banner-img-wrap img {
    max-width: 95%;
    max-height: 100%;
    mix-blend-mode: darken;
    transform: scale(1.7);
    transform-origin: center bottom;
  }
  .banner-badge {
    top: 65%;
    left: 0;
    width: 100%;
    font-size: 16px;
    text-align: center;
  }
  .banner-heading {
    top: 75%;
    left: 0;
    width: 100%;
    font-size: 26px;
    text-align: center;
  }
  .custom-banner-wrap .shape-line, .custom-banner-wrap .shape-triangle, .custom-banner-wrap .shape-rect, .custom-banner-wrap .shape-bottom-accent {
    display: none;
  }
}

/* ---------- Auto Popup Modal ---------- */
.enquiry-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.enquiry-modal.show {
  opacity: 1;
  visibility: visible;
}

.enquiry-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scale(0.8) translateY(50px) rotate(-5deg);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-xl);
}

.enquiry-modal.show .enquiry-modal-content {
  transform: scale(1) translateY(0) rotate(0);
  opacity: 1;
}

.enquiry-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--white);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.enquiry-modal-close:hover {
  background: #f1f1f1;
  transform: rotate(90deg) scale(1.1);
}

.enquiry-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.enquiry-modal-left {
  background-color: #010717;
  color: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.enquiry-modal-left h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
}

.enquiry-modal-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
}

.highlight-icon {
  background: var(--primary);
  color: var(--dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
}

.enquiry-modal-highlight h3 {
  font-size: 28px;
  margin: 0;
  line-height: 1.1;
  font-weight: 800;
}

.enquiry-modal-sub {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.enquiry-modal-right {
  background-color:#dfdfdf;
  padding: 40px;
  color: #292929;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enquiry-modal-right h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.enquiry-modal-right p {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 15px;
}

#enquiry-whatsapp-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#enquiry-whatsapp-form input[type="text"],
#enquiry-whatsapp-form input[type="tel"],
#enquiry-whatsapp-form textarea {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  background: var(--white);
  transition: var(--transition-fast);
}

#enquiry-whatsapp-form input:focus,
#enquiry-whatsapp-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

#enquiry-whatsapp-form textarea {
  border-radius: 15px;
  resize: vertical;
}

.wa-submit-btn {
  background-color: #f9ac0c;
  color: var(--white);
  border: none;
  padding: 14px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  margin-top: 5px;
}

.wa-submit-btn:hover {
  background-color: #db9704;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.wa-dont-show {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 14px;
}

.wa-dont-show input {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .enquiry-modal-grid {
    grid-template-columns: 1fr;
  }
  .enquiry-modal-content {
    max-height: 95vh;
    overflow-y: auto;
  }
  .enquiry-modal-left {
    padding: 30px 20px;
    text-align: center;
  }
  .enquiry-modal-highlight {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .enquiry-modal-left h2 { font-size: 28px; }
  .enquiry-modal-highlight h3 { font-size: 24px; }
  .enquiry-modal-sub { font-size: 18px; flex-direction: column; text-align:center;}
  .enquiry-modal-right { padding: 30px 20px; }
  .enquiry-modal-right h3 { font-size: 24px; }
}

/* ---------- Features & About Section ---------- */
.features-about-section {
  background: var(--white);
  position: relative;
}

.feature-bar-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 50px;
}

.feature-bar-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 220px;
  transition: transform 0.3s ease;
}

.feature-bar-item:hover {
  transform: translateY(-5px);
}

.fb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-content h4 {
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: var(--secondary);
  font-weight: 700;
}

.fb-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

.about-inline-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 20px 0;
}

.about-inline-content {
  flex: 1;
  max-width: 600px;
}

.about-inline-content h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--secondary);
  font-weight: 700;
}

.about-inline-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-inline-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-inline-img img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 991px) {
  .about-inline-block {
    flex-direction: column;
    text-align: center;
  }
  
  .about-inline-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .feature-bar-item {
    min-width: 100%;
    margin-bottom: 20px;
  }
  .feature-bar-item:last-child {
    margin-bottom: 0;
  }
}
