/* ============================================================
   INTELIN NETSOL – Corporate Website Stylesheet
   Version: 1.0
   Author: Antigravity AI
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --orange:        #F4A000;
  --orange-light:  #FFB830;
  --orange-dark:   #C97F00;
  --orange-glow:   rgba(244, 160, 0, 0.18);
  --black:         #0A0A0A;
  --dark:          #111111;
  --dark-2:        #1A1A1A;
  --dark-3:        #222222;
  --white:         #FFFFFF;
  --gray-light:    #F4F4F4;
  --gray-mid:      #E8E8E8;
  --gray-text:     #6B6B6B;
  --gray-muted:    #9CA3AF;
  --border:        rgba(244, 160, 0, 0.15);
  --border-light:  rgba(0, 0, 0, 0.08);
  --shadow-sm:     0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md:     0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg:     0 20px 60px rgba(0, 0, 0, 0.16);
  --shadow-orange: 0 8px 32px rgba(244, 160, 0, 0.25);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;
  --font:          'Poppins', sans-serif;
  --nav-height:    72px;
}

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

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── Utility Classes ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.text-orange { color: var(--orange); }
.text-gray   { color: var(--gray-text); }
.text-white  { color: var(--white); }
.fw-600      { font-weight: 600; }
.fw-700      { font-weight: 700; }

/* ── Section Labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* ── Section Titles ── */
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}

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

.section-sub {
  font-size: 1rem;
  color: var(--gray-text);
  max-width: 560px;
  line-height: 1.75;
}

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

.section-header.center {
  text-align: center;
}

.section-header.center .section-label {
  justify-content: center;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

/* ── Orange Accent Divider ── */
.divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 4px;
  margin-top: 18px;
}

.divider.center {
  margin: 18px auto 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#navbar.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

/* Logo – image only, no text */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-3);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: var(--orange-glow);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-text);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-phone:hover { color: var(--orange); }

.nav-phone i {
  color: var(--orange);
  font-size: 0.9rem;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--orange);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
}

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

.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}

.mobile-menu a:hover {
  color: var(--orange);
  background: var(--orange-glow);
  border-left-color: var(--orange);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(244, 160, 0, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--border-light);
}

.btn-outline-dark:hover {
  background: var(--orange-glow);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #080808 0%, #0F0F0F 40%, #151515 70%, #1A1008 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Background orbs */
#hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 160, 0, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 160, 0, 0.07) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

/* Hero Left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 160, 0, 0.12);
  border: 1px solid rgba(244, 160, 0, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.7s ease both;
}

.hero-badge i { font-size: 0.7rem; }

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 22px;
  animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-title span {
  color: var(--orange);
  position: relative;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 500px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--orange);
  font-size: 1rem;
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Right */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.9s 0.2s ease both;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(244, 160, 0, 0.15);
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,160,0,0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Floating stat badges on hero */
.hero-badge-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-badge-float.top-left {
  top: -18px;
  left: -22px;
  animation: floatUpDown 3s ease-in-out infinite;
}

.hero-badge-float.bottom-right {
  bottom: -18px;
  right: -22px;
  animation: floatUpDown 3.5s 0.5s ease-in-out infinite;
}

.hbf-icon {
  width: 36px;
  height: 36px;
  background: var(--orange-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hbf-icon i {
  color: var(--orange);
  font-size: 1rem;
}

.hbf-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.hbf-text span {
  font-size: 0.72rem;
  color: var(--gray-text);
  font-weight: 500;
}

/* ============================================================
   STATS BAR
   ============================================================ */
#stats {
  background: var(--dark);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

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

.stat-item {
  text-align: center;
  padding: 20px 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat-number .suffix {
  color: var(--orange);
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ============================================================
   PRODUCTS & SERVICES
   ============================================================ */
#products {
  background: var(--gray-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

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

.product-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

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

.product-icon i {
  font-size: 1.6rem;
  color: var(--orange);
  transition: var(--transition);
}

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

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.product-card p {
  font-size: 0.87rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 18px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange-dark);
  background: rgba(244, 160, 0, 0.1);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why {
  background: var(--white);
}

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

.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-glow) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

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

.why-card:hover::after {
  opacity: 1;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.why-card:hover .why-icon {
  background: var(--orange);
  box-shadow: 0 6px 20px rgba(244, 160, 0, 0.4);
}

.why-icon i {
  font-size: 1.3rem;
  color: var(--orange);
  transition: var(--transition);
}

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

.why-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

/* ============================================================
   BRANDS SECTION
   ============================================================ */
#brands {
  background: var(--gray-light);
  padding: 80px 0;
}

.brands-track-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 50px;
}

.brands-track-wrapper::before,
.brands-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}

.brands-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--gray-light), transparent);
}

.brands-track-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--gray-light), transparent);
}

.brands-track {
  display: flex;
  gap: 28px;
  animation: scrollBrands 30s linear infinite;
  width: max-content;
}

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

.brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 64px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-muted);
  filter: grayscale(1);
  transition: var(--transition);
  white-space: nowrap;
  cursor: default;
}

.brand-chip:hover {
  filter: grayscale(0);
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-3px);
}

/* ============================================================
   INDUSTRIES SERVED
   ============================================================ */
#industries {
  background: var(--white);
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 50px;
}

.industry-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  cursor: default;
}

.industry-pill i {
  color: var(--orange);
  font-size: 1rem;
}

.industry-pill:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
  transform: translateY(-3px);
}

.industry-pill:hover i {
  color: var(--white);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,160,0,0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-feature-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.about-feature-card .big-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.about-feature-card .big-label {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
}

/* About Text */
.about-text .section-title { color: var(--white); }
.about-text .section-sub { color: rgba(255,255,255,0.6); max-width: 100%; }

.about-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-point-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(244,160,0,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-point-icon i {
  color: var(--orange);
  font-size: 0.9rem;
}

.about-point p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  padding-top: 6px;
}

/* ============================================================
   MISSION & VISION
   ============================================================ */
#mv {
  background: var(--white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.mv-card.mission {
  background: var(--dark);
  color: var(--white);
}

.mv-card.vision {
  background: var(--orange);
  color: var(--white);
}

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

.mv-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mv-icon i {
  font-size: 1.7rem;
  color: var(--white);
}

.mv-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.82;
}

.mv-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--gray-light);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(33.333% - 19px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  flex-shrink: 0;
}

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

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.stars i {
  color: var(--orange);
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--dark-3);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--gray-text);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-mid);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--orange-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--orange);
  font-size: 1.1rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-text);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
}

.contact-detail a:hover { color: var(--orange); }

.business-hours {
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,0.06);
}

.business-hours strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.business-hours p {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}

.business-hours span {
  font-size: 0.83rem;
  color: var(--orange);
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.contact-form-wrap p {
  font-size: 0.87rem;
  color: var(--gray-text);
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-3);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--gray-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: var(--transition-fast);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(244, 160, 0, 0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
}

.field-error {
  font-size: 0.75rem;
  color: #e53e3e;
  margin-top: 5px;
  display: none;
}

.field-error.show { display: block; }

.form-group textarea { min-height: 110px; }

.form-submit-wrap { margin-top: 8px; }

.form-submit-wrap .btn {
  width: 100%;
  justify-content: center;
}

/* Success Banner */
.form-success {
  display: none;
  background: linear-gradient(135deg, #1A2F1A, #0F1F0F);
  border: 1px solid rgba(72, 199, 116, 0.3);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  text-align: center;
  color: #48C774;
  font-weight: 600;
  margin-top: 20px;
  animation: fadeIn 0.4s ease;
}

.form-success.show { display: block; }

/* Map */
.map-wrap {
  margin-top: 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  margin-bottom: 24px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--orange);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-contact-item span {
  display: block;
  line-height: 1.6;
}

.footer-contact-item i {
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.fab-group {
  position: fixed;
  bottom: 32px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

.fab:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.fab-whatsapp { background: #25D366; }
.fab-call     { background: var(--orange); }

.fab-tooltip {
  position: absolute;
  right: 60px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.fab:hover .fab-tooltip {
  opacity: 1;
}

/* Back to Top */
#back-to-top {
  position: fixed;
  bottom: 32px;
  left: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
}

#back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

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

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

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

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes scrollBrands {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,160,0,0.5); }
  50%       { box-shadow: 0 0 0 12px rgba(244,160,0,0); }
}

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0;
  }

  .hero-visual { order: -1; }

  .hero-img-wrap img { height: 340px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-main img { height: 320px; }

  .about-feature-card {
    bottom: -16px;
    right: -16px;
  }

  .mv-grid      { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Nav: hide phone number text at mid-sizes to save space */
  .nav-phone { display: none; }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  /* ── Global spacing ── */
  .section-pad    { padding: 56px 0; }
  .section-pad-sm { padding: 40px 0; }
  .container      { padding: 0 16px; }

  /* ── Section headers ── */
  .section-title  { font-size: 1.65rem; }
  .section-sub    { font-size: 0.875rem; }
  .section-header { margin-bottom: 40px; }

  /* ── Navbar ── */
  .nav-links,
  .nav-cta        { display: none; }
  .hamburger      { display: flex; }

  /* Logo slightly smaller on mobile */
  .nav-logo img   { height: 40px; }

  /* ── Mobile menu wider padding ── */
  .mobile-menu { padding: 16px 16px 24px; }

  /* ── Hero ── */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 36px;
  }

  .hero-visual   { order: -1; }
  .hero-badge    { font-size: 0.7rem; padding: 5px 13px; }
  .hero-title    { font-size: 1.75rem; line-height: 1.18; }
  .hero-sub      { font-size: 0.88rem; }
  .hero-img-wrap img { height: 220px; }

  .hero-badge-float { padding: 9px 13px; }
  .hbf-text strong  { font-size: 0.88rem; }
  .hbf-text span    { font-size: 0.65rem; }
  .hbf-icon         { width: 30px; height: 30px; }

  .hero-badge-float.top-left    { top: -10px; left: 6px; }
  .hero-badge-float.bottom-right{ bottom: -10px; right: 6px; }

  .hero-btns { gap: 10px; }
  .hero-btns .btn { font-size: 0.88rem; padding: 12px 22px; }
  .hero-trust { flex-wrap: wrap; gap: 10px; }
  .trust-sep  { display: none; }
  .trust-item { font-size: 0.78rem; }

  /* ── Stats ── */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after { display: none; }
  .stat-number  { font-size: 2rem; }
  .stat-label   { font-size: 0.72rem; }
  .stat-item    { padding: 18px 12px; }

  /* ── Products ── */
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-card  { padding: 28px 22px; }

  /* ── Why choose us ── */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-card { padding: 22px 16px; }

  /* ── Brands ── */
  .brand-chip { min-width: 110px; height: 52px; font-size: 0.8rem; padding: 0 16px; }

  /* ── Industries ── */
  .industries-grid { gap: 10px; }
  .industry-pill   { font-size: 0.82rem; padding: 10px 16px; }

  /* ── About ── */
  .about-grid        { grid-template-columns: 1fr; gap: 56px; }
  .about-img-main img{ height: 240px; }
  .about-feature-card{ bottom: -20px; right: 12px; padding: 16px 18px; }
  .about-feature-card .big-num { font-size: 1.8rem; }
  .about-points      { gap: 12px; }

  /* ── Mission/Vision ── */
  .mv-grid { grid-template-columns: 1fr; gap: 20px; }
  .mv-card { padding: 32px 26px; }

  /* ── Testimonials ── */
  .testimonials-track { gap: 16px; }
  .testimonial-card   { min-width: calc(90vw - 32px); padding: 28px 22px; }

  /* ── Contact ── */
  .contact-grid      { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 26px 18px; }
  .form-row          { grid-template-columns: 1fr; gap: 0; }
  .map-wrap          { margin-top: 40px; }
  .map-wrap iframe   { height: 280px; }

  /* ── Footer ── */
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom-links { justify-content: center; gap: 14px; }
  #footer { padding: 52px 0 0; }

  /* ── FABs ── */
  .fab-group    { bottom: 18px; right: 16px; gap: 10px; }
  .fab          { width: 46px; height: 46px; font-size: 1.1rem; }
  #back-to-top  { left: 16px; bottom: 18px; width: 42px; height: 42px; }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .why-grid          { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-btns         { flex-direction: column; }
  .hero-btns .btn    { width: 100%; justify-content: center; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 20px 14px; }
  .hero-badge-float  { display: none; }  /* hide floating badges on tiny screens */
  .mv-card           { padding: 28px 20px; }
  .section-title     { font-size: 1.45rem; }
}

/* ============================================================
   RESPONSIVE – EXTRA SMALL (≤ 360px)
   ============================================================ */
@media (max-width: 360px) {
  .container     { padding: 0 12px; }
  .hero-title    { font-size: 1.5rem; }
  .nav-logo img  { height: 34px; }
  .product-card  { padding: 22px 16px; }
  .stat-number   { font-size: 1.7rem; }
  .why-card      { padding: 18px 10px; }
  .why-icon      { width: 46px; height: 46px; }
  .why-card h4   { font-size: 0.78rem; }
}
