/* ============================================
   Apeksha Stationery & Printers - Main Stylesheet
   CMYK Inspired Professional Theme
============================================ */

/* ---------- ROOT VARIABLES ---------- */
:root {
  /* CMYK Brand Colors (from logo) */
  --cmyk-cyan: #00AEEF;
  --cmyk-magenta: #EC008C;
  --cmyk-yellow: #FFF200;
  --cmyk-black: #1a1a1a;

  /* Supporting Palette */
  --primary: #00AEEF;
  --secondary: #EC008C;
  --accent: #FFF200;
  --dark: #1a1a1a;
  --dark-soft: #2c2c2c;
  --gray-900: #212529;
  --gray-700: #495057;
  --gray-500: #adb5bd;
  --gray-300: #dee2e6;
  --gray-100: #f8f9fa;
  --white: #ffffff;

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-brand: 0 10px 30px rgba(0, 174, 239, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ---------- GLOBAL RESETS ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background-color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: 88px;
  /* offset for fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

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

a:hover {
  color: var(--secondary);
}

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

section {
  padding: 80px 0;
}

@media (max-width: 767px) {
  section {
    padding: 56px 0;
  }

  body {
    padding-top: 72px;
  }
}

/* ---------- UTILITY ---------- */
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

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

.section-header p {
  color: var(--gray-700);
  max-width: 640px;
  margin: 16px auto 0;
}

.divider-bar {
  display: inline-block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--cmyk-cyan), var(--cmyk-magenta), var(--cmyk-yellow));
  border-radius: 4px;
  margin-top: 12px;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.bg-soft {
  background-color: var(--gray-100);
}

.bg-dark-soft {
  background-color: var(--dark);
  color: var(--white);
}

/* ---------- BUTTONS ---------- */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  letter-spacing: 0.3px;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-brand {
  background: linear-gradient(135deg, var(--cmyk-cyan), var(--cmyk-magenta));
  color: var(--white);
  box-shadow: var(--shadow-brand);
}

.btn-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(236, 0, 140, 0.35);
  color: var(--white);
}

.btn-outline-brand {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

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

.btn-light-on-dark {
  background: var(--white);
  color: var(--dark);
}

.btn-light-on-dark:hover {
  background: var(--cmyk-yellow);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ============================================
   NAVBAR
============================================ */
.navbar-custom {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar-custom.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--dark) !important;
  font-size: 1.15rem;
  line-height: 1.1;
}

.navbar-brand img {
  height: 90px;
  width: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text small {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--secondary);
  text-transform: uppercase;
}

.navbar-custom .nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  position: relative;
  font-size: 0.95rem;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cmyk-cyan), var(--cmyk-magenta));
  transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: calc(100% - 32px);
}

.navbar-custom .nav-link.active {
  color: var(--secondary) !important;
}

/* Mega Menu */
.mega-menu {
  position: static;
}

.mega-menu .dropdown-menu {
  width: 100%;
  max-width: 1140px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 32px;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: block;
}

.mega-menu:hover .dropdown-menu,
.mega-menu .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-100);
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-list li a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
  transition: var(--transition);
}

.mega-menu-list li a:hover {
  color: var(--secondary);
  padding-left: 8px;
}

.mega-menu-list li a i {
  font-size: 0.7rem;
  margin-right: 6px;
  color: var(--primary);
}

@media (max-width: 991px) {
  .mega-menu .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 16px 0;
    display: none;
  }

  .mega-menu .dropdown-menu.show {
    display: block;
    transform: none;
  }
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Top contact strip */
.top-strip {
  background: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 500;
}

.top-strip a {
  color: var(--white);
}

.top-strip .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  margin-left: 6px;
  transition: var(--transition);
}

.top-strip .social-icons a:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .top-strip {
    display: none;
  }
}

/* ============================================
   HERO / CAROUSEL
============================================ */

.hero-carousel {
  position: relative;
}

.hero-carousel .carousel-item {
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-item .container {
  height: 600px;
  display: flex;
  align-items: center;
}

/* Slides */
.hero-slide-1 {
  background: linear-gradient(135deg, #fef9e7 0%, #fff5d6 100%);
  color: #fff;
}

.hero-slide-2 {
  background: linear-gradient(135deg, #fef9e7 0%, #fff5d6 100%);
}

.hero-slide-3 {
  background: linear-gradient(135deg, #fde8f1 0%, #fcd5e5 100%);
}

/* Content */
.hero-tagline {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.08);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #111;
}

.hero-title span {
  background: linear-gradient(120deg, #00bfff, #ff00aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-brand {
  background: linear-gradient(45deg, #009dff, #ff00aa);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
}

.btn-brand:hover {
  color: #fff;
}

.btn-outline-brand {
  border: 2px solid #111;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  color: #111;
  background: transparent;
}

/* Image */
.hero-image {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}

/* Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 18px;
  height: 18px;
}

/* Indicators */
.carousel-indicators {
  margin-bottom: 20px;
}

.carousel-indicators button {
  width: 30px !important;
  height: 4px !important;
  border-radius: 10px;
  border: none !important;
  background: rgba(0, 0, 0, 0.2) !important;
}

.carousel-indicators .active {
  width: 55px !important;
  background: #ff00aa !important;
}

/* Mobile */
@media (max-width: 991px) {

  .hero-carousel .carousel-item {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-carousel .carousel-item .container {
    height: auto;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    justify-content: center;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .hero-slide {
    text-align: center;
  }
}

@media (max-width: 576px) {

  .hero-title {
    font-size: 34px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-tagline {
    font-size: 11px;
    letter-spacing: 2px;
  }
}

/* ============================================
   FEATURES / TRUST BAR
============================================ */
.trust-bar {
  background: var(--dark);
  padding: 48px 0;
  color: var(--white);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--cmyk-cyan), var(--cmyk-magenta));
  color: var(--white);
}

.trust-item h5 {
  color: var(--white);
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-size: 0.85rem;
}

/* ============================================
   CATEGORIES (Continuous Auto Scroll Marquee)
============================================ */
.categories-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0 10px;
  /* Soft fade on left & right edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.categories-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: categoriesScroll 30s linear infinite;
}

.categories-marquee:hover .categories-track {
  animation-play-state: paused;
}

@keyframes categoriesScroll {
  0% {
    transform: translateX(0);
  }

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

  /* exactly one full set */
}

/* Card — small fixed width, rounded, light background */
.category-card {
  flex: 0 0 150px;
  background: #f5f6f8;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--cmyk-cyan);
}

/* Image — square, padded so product photo sits cleanly inside */
.category-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: transparent;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.category-card:hover .category-img img {
  transform: scale(1.06);
}

/* Name only — no description */
.category-card h5 {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  padding: 0 10px 14px;
  text-align: center;
  color: var(--secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive sizing */
@media (max-width: 991px) {
  .category-card {
    flex: 0 0 135px;
  }

  .categories-track {
    gap: 14px;
    animation-duration: 28s;
  }
}

@media (max-width: 575px) {
  .category-card {
    flex: 0 0 120px;
  }

  .categories-track {
    gap: 12px;
    animation-duration: 24s;
  }

  .category-card h5 {
    font-size: 0.78rem;
    padding: 0 6px 10px;
  }

  .category-img {
    padding: 10px;
  }
}

/* ============================================
   PRODUCTS / SERVICES
============================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product-thumb {
  height: 220px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.product-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 174, 239, 0.08));
}

.product-thumb i {
  background: linear-gradient(135deg, var(--cmyk-cyan), var(--cmyk-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.product-card:hover .product-thumb i {
  transform: scale(1.15);
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-body h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.product-body p {
  color: var(--gray-700);
  font-size: 0.88rem;
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gray-300);
}

.product-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-cta i {
  transition: var(--transition);
}

.product-card:hover .product-cta i {
  transform: translateX(4px);
}

.product-tag {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ============================================
   ABOUT SECTION
============================================ */

.about-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

/* About Image */
.about-visual img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Overlay */
.about-visual-overlay {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);

  padding: 20px 24px;
  border-radius: var(--radius-md);

  color: var(--white);
}

/* Number */
.about-visual-overlay .number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

/* Label */
.about-visual-overlay .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.95;
}

/* Features */
.about-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: 0.3s ease;
}

.about-feature:hover {
  background: var(--gray-100);
  transform: translateX(6px);
}

/* Feature Icon */
.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);

  background: linear-gradient(135deg,
      rgba(0, 174, 239, 0.15),
      rgba(236, 0, 140, 0.15));

  color: var(--secondary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Feature Heading */
.about-feature h6 {
  margin: 0 0 4px;
  font-weight: 700;
}

/* Feature Text */
.about-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-700);
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */

@media (max-width: 768px) {

  .about-visual {
    aspect-ratio: 1/1;
  }

  .about-visual-overlay {
    left: 15px;
    bottom: 15px;
    padding: 14px 18px;
  }

  .about-visual-overlay .number {
    font-size: 2.4rem;
  }

  .about-feature {
    padding: 12px;
  }

}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.cta-section::before {
  background: var(--cmyk-cyan);
  width: 320px;
  height: 320px;
  top: -80px;
  left: -80px;
}

.cta-section::after {
  background: var(--cmyk-magenta);
  width: 320px;
  height: 320px;
  bottom: -80px;
  right: -80px;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
  height: 100%;
  position: relative;
  transition: var(--transition);
}

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

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--gray-300);
  line-height: 1;
}

.testimonial-rating {
  color: #ffb400;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 22px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cmyk-cyan), var(--cmyk-magenta));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author h6 {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ============================================
   PAGE HEADER (inner pages)
============================================ */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2942 100%);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 174, 239, 0.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 0, 140, 0.25), transparent 50%);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-header .breadcrumb {
  justify-content: center;
  background: transparent;
  margin: 0;
  padding: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.page-header .breadcrumb-item.active {
  color: var(--cmyk-yellow);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CONTACT
============================================ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-300);
  transition: var(--transition);
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cmyk-cyan), var(--cmyk-magenta));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
}

.contact-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  color: var(--gray-700);
  font-size: 0.92rem;
  margin: 0;
}

.contact-card a:hover {
  color: var(--secondary);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-300);
}

.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-control,
.form-select {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12);
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cmyk-cyan), var(--cmyk-magenta), var(--cmyk-yellow), var(--cmyk-black));
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.footer-brand h5 {
  color: var(--white);
  margin: 0;
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-brand small {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--cmyk-magenta);
  text-transform: uppercase;
}

.site-footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-heading {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--cmyk-cyan), var(--cmyk-magenta));
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--cmyk-yellow);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--cmyk-magenta);
  margin-top: 3px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--cmyk-cyan), var(--cmyk-magenta));
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--cmyk-yellow);
  font-weight: 600;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.anim-delay-1 {
  animation-delay: 0.15s;
}

.anim-delay-2 {
  animation-delay: 0.3s;
}

.anim-delay-3 {
  animation-delay: 0.45s;
}

.anim-delay-4 {
  animation-delay: 0.6s;
}

.floating {
  animation: float 4s ease-in-out infinite;
}

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

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

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cmyk-cyan), var(--cmyk-magenta));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-brand);
  border: none;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

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

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(236, 0, 140, 0.4);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

/* ============================================
   RESPONSIVE TWEAKS
============================================ */
@media (max-width: 767px) {
  .navbar-brand {
    font-size: 1rem;
  }

  .navbar-brand img {
    height: 66px;
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .back-to-top,
  .whatsapp-float {
    right: 18px;
  }

  .whatsapp-float {
    bottom: 86px;
  }

  .back-to-top {
    bottom: 24px;
  }
}

@media (max-width: 575px) {
  section {
    padding: 48px 0;
  }

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

  .about-visual::before {
    font-size: 9rem;
  }
}