/* =========================================================
   Arrow Tools Pvt. Ltd. — Global Stylesheet
   Design Tokens extracted from reference arrowtoolspvtltd.co.in
   ========================================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  --primary:        #e91e8c;
  --primary-dark:   #c2185b;
  --primary-light:  #f48fb1;
  --secondary:      #1a1a2e;
  --secondary-mid:  #222244;
  --body-text:      #444444;
  --heading-text:   #1a1a2e;
  --light-gray:     #f5f5f5;
  --mid-gray:       #e0e0e0;
  --white:          #ffffff;
  --border:         #dddddd;
  --card-shadow:    0 4px 24px rgba(0,0,0,0.09);
  --card-hover:     0 8px 36px rgba(233,30,140,0.18);
  --font-heading:   'Rajdhani', sans-serif;
  --font-body:      'Open Sans', sans-serif;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-pill:    30px;
  --transition:     all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--body-text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

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

p { margin-bottom: 1rem; }

ul, ol { padding-left: 1.25rem; }

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--secondary);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  z-index: 1050;
}

.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--primary-light); }

.top-bar .top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar .contact-info { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar .contact-info span { display: flex; align-items: center; gap: 5px; }
.top-bar i { color: var(--primary); }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  background: var(--white) !important;
  padding: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  position: sticky !important;
  top: 0;
  z-index: 1040;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.navbar-brand { padding: 10px 0; }
.navbar-brand img { height: 58px; width: auto; }

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--heading-text) !important;
  padding: 24px 14px !important;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  left: 14px; right: 14px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: var(--primary) !important;
}

/* Dropdown */
.dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  padding: 10px 0;
  min-width: 200px;
  animation: dropFade 0.2s ease;
}

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

.dropdown-item {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--heading-text);
  padding: 10px 20px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--primary);
  color: var(--white);
  padding-left: 26px;
}

/* PDF Button */
.btn-pdf {
  background: var(--secondary);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-pdf:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.navbar-toggler {
  border: 2px solid var(--primary);
  padding: 4px 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e91e8c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, #b5005e 60%, #7b0038 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-pattern.svg') center/cover no-repeat;
  opacity: 0.07;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: #7CFC00;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-content h1 span {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  opacity: 0.9;
  margin-top: 4px;
}

.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

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

.btn-hero-primary {
  background: var(--white);
  color: var(--primary) !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: var(--secondary);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.6);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-secondary:hover {
  background: var(--white);
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

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

.hero-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.hero-stat .stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.8;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-card-float {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  color: var(--white);
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

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

.hero-card-float .iso-badge {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.hero-card-float .iso-badge span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  text-align: center;
}

/* =========================================================
   SECTION UTILITIES
   ========================================================= */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

.section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--heading-text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span { color: var(--primary); }

.section-subtitle {
  font-size: 15.5px;
  color: #666;
  max-width: 640px;
  line-height: 1.75;
}

.divider-line {
  width: 56px; height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.divider-line.center { margin-left: auto; margin-right: auto; }

.bg-light-section { background: var(--light-gray); }
.bg-primary-section { background: var(--primary); }
.bg-dark-section { background: var(--secondary); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--primary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,30,140,0.35);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-white-custom {
  background: var(--white);
  color: var(--primary) !important;
  border: 2px solid var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white-custom:hover {
  background: var(--secondary);
  color: var(--white) !important;
  border-color: var(--secondary);
  transform: translateY(-2px);
}

/* =========================================================
   ABOUT WELCOME SECTION
   ========================================================= */
.about-welcome .welcome-text { color: var(--primary); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; }
.about-welcome .company-name { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--primary); font-family: var(--font-heading); }
.about-welcome p { text-align: justify; max-width: 760px; margin-left: auto; margin-right: auto; }
.about-welcome .iso-badge-inline { display: inline-block; background: var(--light-gray); border: 2px solid var(--primary); padding: 6px 16px; border-radius: var(--radius-pill); font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--primary); margin-top: 8px; }

/* =========================================================
   PRODUCT CARDS
   ========================================================= */
.products-grid-section { background: var(--white); }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.product-card:hover { box-shadow: var(--card-hover); transform: translateY(-4px); border-color: rgba(233,30,140,0.2); }
.product-card:hover::before { transform: scaleX(1); }

.product-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(233,30,140,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}

.product-card:hover .product-card-icon {
  background: var(--primary);
}

.product-card-icon i {
  font-size: 24px;
  color: var(--primary);
  transition: var(--transition);
}

.product-card:hover .product-card-icon i { color: var(--white); }

.product-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
}

.product-card p { font-size: 14px; color: #666; margin-bottom: 0; line-height: 1.65; }

.product-card .card-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  transition: var(--transition);
}

.product-card .card-link:hover { gap: 10px; }

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

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

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

.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, #b5005e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: rgba(255,255,255,0.5);
}

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

.service-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.service-card-body p { font-size: 14px; color: #666; margin-bottom: 0; }

/* =========================================================
   TECHNICAL SUPPORT CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, #b5005e 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.cta-band h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-band .cta-taglines p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-bottom: 4px;
}

.cta-band .cta-taglines p strong { color: var(--white); font-style: italic; }

/* =========================================================
   STATS COUNTER SECTION
   ========================================================= */
.stats-section { background: var(--light-gray); }

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.stat-card:hover { transform: translateY(-4px); border-bottom-color: var(--primary); }

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.stat-card .stat-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-top: 8px;
  display: block;
}

.stat-card .stat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(233,30,140,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--primary);
}

/* =========================================================
   MISSION CARDS (About page)
   ========================================================= */
.mission-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  height: 100%;
}

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

.mission-icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(233,30,140,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
}

.mission-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mission-content p { font-size: 14px; color: #666; margin-bottom: 0; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-choose-section { background: var(--light-gray); }

.why-choose-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.why-choose-img-wrap img { width: 100%; height: 460px; object-fit: cover; }

.check-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: #555; }
.check-list li i { color: var(--primary); font-size: 15px; margin-top: 3px; flex-shrink: 0; }

/* =========================================================
   HISTORY / TIMELINE
   ========================================================= */
.history-item {
  padding: 24px 28px;
  border-left: 4px solid var(--primary);
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.history-item:hover { transform: translateX(4px); box-shadow: var(--card-hover); }

.history-item h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.history-item p { font-size: 14px; color: #666; margin-bottom: 0; text-align: justify; }

/* =========================================================
   DIRECTOR CARDS
   ========================================================= */
.director-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.director-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(233,30,140,0.2);
  margin: 32px auto 20px;
  overflow: hidden;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.director-avatar i { font-size: 56px; color: #bbb; }
.director-avatar img { width: 100%; height: 100%; object-fit: cover; }

.director-body { padding: 0 24px 28px; }

.director-body h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.director-body .role { font-size: 13px; color: #888; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 14px; }

.director-body .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: #555;
  margin-bottom: 8px;
}

.director-body .contact-item i { color: var(--primary); }
.director-body .contact-item a { color: #555; }
.director-body .contact-item a:hover { color: var(--primary); }

/* =========================================================
   PRODUCT PAGE TEMPLATES
   ========================================================= */
.product-intro-section .product-intro-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.product-intro-section .product-intro-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.product-intro-section .product-intro-img-placeholder {
  width: 100%;
  height: 320px;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 14px;
  gap: 12px;
  border-radius: var(--radius-md);
}

.product-intro-section .product-intro-img-placeholder i { font-size: 64px; color: var(--mid-gray); }

.available-types {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.type-badge {
  background: rgba(233,30,140,0.1);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(233,30,140,0.3);
}

.sub-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  height: 100%;
}

.sub-product-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover); }

.sub-product-card .sub-product-img {
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-product-card .sub-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.sub-product-card:hover .sub-product-img img { transform: scale(1.06); }
.sub-product-card .sub-product-img i { font-size: 56px; color: var(--mid-gray); }

.sub-product-card .sub-product-body { padding: 20px; }
.sub-product-card .sub-product-body h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.sub-product-card .sub-product-body p { font-size: 13.5px; color: #666; margin-bottom: 0; }

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.value-list { list-style: none; padding: 0; }
.value-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--mid-gray); font-size: 15px; color: #555; }
.value-list li:last-child { border-bottom: none; }
.value-list li i { color: var(--primary); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

/* =========================================================
   CLIENTS PAGE
   ========================================================= */
.client-name-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
}

.client-name-card:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(233,30,140,0.25);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-info-box {
  background: var(--secondary);
  border-radius: var(--radius-md);
  padding: 36px;
  color: var(--white);
  height: 100%;
}

.contact-info-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-item .icon-wrap {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(233,30,140,0.2);
  border: 1px solid rgba(233,30,140,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-light);
}

.contact-info-item .info-text { color: rgba(255,255,255,0.85); font-size: 14.5px; line-height: 1.6; }
.contact-info-item .info-text a { color: rgba(255,255,255,0.85); }
.contact-info-item .info-text a:hover { color: var(--primary-light); }
.contact-info-item .info-text strong { display: block; color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  padding: 40px;
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--heading-text);
  margin-bottom: 28px;
}

.form-control-custom {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--body-text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.12);
}

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

select.form-control-custom { cursor: pointer; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-family: var(--font-heading); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #666; }

.form-submit-msg {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  margin-top: 16px;
  display: none;
}

.form-submit-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; display: block; }
.form-submit-msg.error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; display: block; }

/* =========================================================
   BREADCRUMB HERO
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #b5005e 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 50px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 12px;
}

.page-hero .breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 13px; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item.active { color: var(--white); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.5); }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.page-hero .page-description {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  border-left: 3px solid rgba(255,255,255,0.5);
  padding-left: 16px;
  max-width: 520px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.main-footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.footer-about-text { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.7); text-align: justify; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-links a i { font-size: 12px; color: var(--primary); flex-shrink: 0; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
}

.footer-contact-item i { color: var(--primary); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--primary-light); }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 16px 0;
  margin-top: 48px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.55); }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.12); }
}

.whatsapp-float:hover {
  background: #128c4e;
  color: var(--white);
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 9998;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(233,30,140,0.35);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-3px); }

/* =========================================================
   MAP EMBED
   ========================================================= */
.map-embed { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--card-shadow); height: 320px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE — TABLET (≤768px)
   ========================================================= */
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }

  .top-bar .top-bar-inner { flex-direction: column; align-items: flex-start; gap: 4px; }

  .navbar-nav .nav-link { padding: 12px 16px !important; }
  .navbar-nav .nav-link::after { display: none; }

  .hero-section { min-height: 70vh; }
  .hero-content h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }

  .check-list { grid-template-columns: 1fr; }

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

  .contact-form-card { padding: 24px; }
  .contact-info-box { padding: 28px; }

  .footer-col-title { font-size: 13px; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤480px)
   ========================================================= */
@media (max-width: 480px) {
  .section-pad { padding: 44px 0; }

  .hero-section { min-height: 60vh; padding: 60px 0 80px; }
  .hero-content h1 { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; }

  .page-hero h1 { font-size: 1.6rem; }

  .stat-card { padding: 28px 16px; }
  .stat-card .stat-number { font-size: 2.2rem; }

  .whatsapp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; font-size: 24px; }
  .back-to-top { bottom: 80px; right: 18px; }

  .footer-bottom .d-flex { flex-direction: column; gap: 8px; }

  .product-card { padding: 20px 16px; }

  .contact-form-card { padding: 20px; }

  .director-avatar { width: 100px; height: 100px; }
}
