/* ============================================================
   WINS – Corporate Website Stylesheet
   Premium Office Solutions | v1.0
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --navy:        #0A2540;
  --navy-light:  #0d3060;
  --navy-dark:   #061a2e;
  --gold:        #D4AF37;
  --gold-light:  #e8c94a;
  --gold-dark:   #b8962e;
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --light-grey:  #f0f2f7;
  --mid-grey:    #9aa3b2;
  --dark-grey:   #4a5568;
  --text-main:   #1a202c;
  --text-muted:  #6b7280;
  --border:      #e2e8f0;
  --shadow-sm:   0 1px 3px rgba(10,37,64,.08), 0 1px 2px rgba(10,37,64,.06);
  --shadow-md:   0 4px 16px rgba(10,37,64,.12), 0 2px 8px rgba(10,37,64,.08);
  --shadow-lg:   0 10px 40px rgba(10,37,64,.18), 0 4px 16px rgba(10,37,64,.10);
  --shadow-xl:   0 20px 60px rgba(10,37,64,.22), 0 8px 24px rgba(10,37,64,.14);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.5s cubic-bezier(0.4,0,0.2,1);
  --font-main:   'Inter', 'Poppins', sans-serif;
  --font-heading:'Poppins', 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--gold); color: var(--navy); }

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

.gold-text { color: var(--gold); }

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(212,175,55,.06));
  border: 1px solid rgba(212,175,55,.35);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 60px;
  line-height: 1.8;
}

/* Center alignment helper for section headers */
.services-section .section-label,
.services-section .section-title,
.services-section .section-subtitle,
.why-section .section-label,
.why-section .section-title,
.why-section .section-subtitle,
.testimonials-section .section-label,
.testimonials-section .section-title,
.clients-section .section-label,
.clients-section .section-title,
.rental-section .section-label,
.rental-section .section-title,
.rental-section .section-subtitle,
.sales-section .section-label,
.sales-section .section-title,
.sales-section .section-subtitle,
.amc-section .section-label,
.amc-section .section-title,
.amc-section .section-subtitle,
.contact-section .section-label,
.contact-section .section-title,
.contact-section .section-subtitle {
  display: block;
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* ── Scroll Reveal Animations ── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}


/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: var(--navy-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
}

#navbar.scrolled {
  background: var(--navy-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 100%;
  margin: 0;
  padding: 0 16px 0 0; /* padding-left: 0 to place logo to extreme left */
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 106px;
  position: relative;
  z-index: 10;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { width: 38px; height: 38px; flex-shrink: 0; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  transition: var(--transition);
}

#navbar.scrolled .logo-text { color: var(--white); }

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

.nav-link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

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

#navbar.scrolled .nav-link {
  color: rgba(255,255,255,0.85);
}

#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
  color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.btn-quote {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(212,175,55,.4);
}

.btn-quote:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,.5);
}

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

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

#navbar.scrolled .hamburger span { background: var(--white); }

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero_office.png');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,86,179,.88) 0%,
    rgba(0,86,179,.76) 50%,
    rgba(0,86,179,.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 800px;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 40px;
}

.desktop-br { display: block; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(212,175,55,.45);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(212,175,55,.55);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  width: fit-content;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { padding-right: 0; }

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.2);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

.hero-scroll-indicator span:nth-child(2) { animation-delay: 0.2s; }
.hero-scroll-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollBounce {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.5); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 20px;
}

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

.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
}

.about-badge-float i {
  color: var(--gold);
  font-size: 1.3rem;
}

.about-info { padding-top: 20px; }

.about-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.counter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.counter-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.counter-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.counter-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 8px;
}

.mv-cards { display: flex; flex-direction: column; gap: 16px; }

.mv-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.mv-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.mv-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.mv-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   CORE SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--white);
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(10,37,64,.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

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

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

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

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

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

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(10,37,64,.25);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: scale(1.08) rotate(-3deg);
}

.service-icon-wrap i {
  color: var(--gold);
  font-size: 1.4rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap i { color: var(--navy); }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.service-link:hover {
  color: var(--gold-dark);
  gap: 10px;
}

.service-link i { font-size: 0.75rem; }

/* ============================================================
   RENTAL SOLUTIONS SECTION
   ============================================================ */
.rental-section { background: var(--off-white); }

.rental-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.rental-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.rental-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.rf-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(10,37,64,.08), rgba(10,37,64,.04));
  border: 1px solid rgba(10,37,64,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.rental-feature:hover .rf-icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.rf-icon i {
  color: var(--navy);
  font-size: 1.2rem;
  transition: var(--transition);
}

.rental-feature:hover .rf-icon i { color: var(--gold); }

.rental-feature h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.rental-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}

.pricing-card:not(.featured):hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--gold-dark);
}

.pricing-card.featured .pricing-badge {
  background: rgba(212,175,55,.2);
  color: var(--gold-light);
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.pricing-card.featured .pricing-name { color: var(--white); }

.pricing-price {
  margin-bottom: 28px;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.pricing-card.featured .price-amount { color: var(--white); }

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: inline-block;
  margin-left: 4px;
}

.pricing-card.featured .price-period { color: rgba(255,255,255,.6); }

.pricing-features {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--dark-grey);
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.8); }

.pricing-features li i { font-size: 0.8rem; color: var(--gold); flex-shrink: 0; }

.pricing-features li.disabled { opacity: 0.4; }
.pricing-features li.disabled i { color: var(--mid-grey); }

.btn-pricing {
  display: block;
  text-align: center;
  padding: 13px 24px;
  background: var(--light-grey);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.btn-pricing:hover {
  background: var(--navy);
  color: var(--white);
}

.featured-btn {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(212,175,55,.4);
}

.featured-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,.5);
}

/* ============================================================
   SALES SOLUTIONS SECTION
   ============================================================ */
.sales-section { background: var(--white); overflow: hidden; }

.sales-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--off-white), var(--light-grey));
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.sales-carousel-wrap { position: relative; }

.sales-carousel { overflow: hidden; border-radius: var(--radius-xl); }

.sales-slide { display: none; animation: slideIn 0.5s ease; }
.sales-slide.active { display: block; }

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

.sales-slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  min-height: 480px;
}

.sales-slide-img-wrap {
  position: relative;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.sales-slide-img-wrap img {
  max-height: 360px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.sales-slide-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.sales-slide-info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sales-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.sales-slide-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.sales-slide-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.sales-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.sales-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--dark-grey);
}

.sales-specs li i { color: var(--gold); font-size: 0.85rem; width: 16px; }

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

.carousel-prev,
.carousel-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
}

.dot.active {
  background: var(--navy);
  transform: scale(1.3);
}

/* ============================================================
   AMC SUPPORT SECTION
   ============================================================ */
.amc-section { background: var(--off-white); }

.amc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 70px;
}

.amc-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.amc-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.amc-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.amc-feature:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--gold);
}

.amc-feat-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amc-feat-icon i { color: var(--gold); font-size: 1rem; }

.amc-feat-text h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.amc-feat-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* AMC Timeline */
.amc-timeline {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
}

.timeline-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.timeline-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  position: relative;
}

.ts-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
}

.ts-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 16px rgba(10,37,64,.25);
}

.ts-icon i { color: var(--gold); font-size: 1.2rem; }

.timeline-step h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline-step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.timeline-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  margin-bottom: 60px;
}

/* ============================================================
   WHY CHOOSE WINS SECTION
   ============================================================ */
.why-section { background: var(--navy); overflow: hidden; }

.why-section .section-label {
  background: rgba(212,175,55,.15);
  border-color: rgba(212,175,55,.4);
  color: var(--gold-light);
}

.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,.65); }

.why-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(212,175,55,.06) 0%, transparent 60%),
                    radial-gradient(circle at 80% 50%, rgba(212,175,55,.04) 0%, transparent 60%);
  pointer-events: none;
}

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

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.why-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(212,175,55,.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gold);
}

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

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

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

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

.testimonials-wrap { max-width: 800px; margin: 0 auto; }

.testimonials-carousel { overflow: hidden; }

.testi-slide { display: none; }
.testi-slide.active {
  display: block;
  animation: fadeSlide 0.5s ease;
}

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

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.testi-quote {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 4px;
}

.testi-text {
  font-size: 1.05rem;
  color: var(--dark-grey);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.testi-author span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testi-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.testi-prev, .testi-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
}

.testi-prev:hover, .testi-next:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

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

.tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
}

.tdot.active {
  background: var(--navy);
  transform: scale(1.4);
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.clients-section { background: var(--white); padding: 80px 0; }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.client-logo {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  filter: grayscale(1) opacity(0.45);
  cursor: default;
}

.client-logo:hover {
  filter: grayscale(0) opacity(1);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.client-logo-inner { color: var(--navy); }

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

.contact-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,37,64,.04), transparent);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.ci-text h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.ci-text a {
  color: var(--text-muted);
  font-size: 0.87rem;
  transition: var(--transition);
}

.ci-text a:hover { color: var(--navy); }

.ci-text p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 30px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-grey);
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,37,64,.08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.08);
}

.field-error {
  font-size: 0.78rem;
  color: #e53e3e;
  font-weight: 500;
  min-height: 16px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-submit:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--radius-sm);
  color: #059669;
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}

/* Map */
.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); }

.footer-top { padding: 70px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-brand { }

.footer-logo { margin-bottom: 16px; }

.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

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

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.87rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}

.footer-contact-list li i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list li a {
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}

.footer-contact-list li a:hover { color: var(--gold-light); }

.footer-contact-list li span { line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

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

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

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

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

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  cursor: pointer;
}

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

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-4px);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Large tablets */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .rental-features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablets */
@media (max-width: 900px) {
  .section { padding: 72px 0; }

  .nav-container {
    height: 80px;
    padding: 0 16px;
  }
  
  .nav-logo img {
    height: 60px !important;
    margin-left: 0 !important;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,37,64,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    
    /* Hide state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }

  .nav-link {
    color: rgba(255,255,255,.85);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
  }

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

  .btn-quote {
    text-align: center;
    padding: 13px 20px;
    margin-top: 8px;
  }

  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-float { right: 0; }

  .amc-layout { grid-template-columns: 1fr; gap: 40px; }

  .sales-slide-content { grid-template-columns: 1fr; }
  .sales-slide-img-wrap { min-height: 240px; }

  .contact-layout { grid-template-columns: 1fr; gap: 36px; }

  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .timeline-steps { flex-direction: column; gap: 24px; }
  .timeline-connector { width: 2px; height: 32px; margin-bottom: 0; }

  .hero-stats { padding: 20px 24px; }
  .hero-stat { padding: 0 20px; }

  .desktop-br { display: none; }

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

/* Mobile */
@media (max-width: 600px) {
  .section { padding: 56px 0; }

  .hero-section { padding: 100px 20px 60px; }
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 20px;
    gap: 16px;
  }
  .hero-stat { padding: 0; }
  .hero-stat-divider { width: 100%; height: 1px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .rental-features { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .about-counters { grid-template-columns: 1fr 1fr; }

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

  .contact-form { padding: 28px 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .testi-card { padding: 28px 24px; }

  .pricing-cards { gap: 16px; }

  .sales-slide-info { padding: 28px 24px; }
  .sales-slide-info h3 { font-size: 1.25rem; }

  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 0.85rem; }
}

/* ── Floating Contact Buttons ── */
.floating-ctas {
  position: fixed;
  bottom: 90px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.floating-btn.whatsapp {
  background: #25D366;
}

.floating-btn.phone {
  background: #007bff;
}

.floating-btn .tooltip-text {
  position: absolute;
  right: 70px;
  background: rgba(10, 37, 64, 0.95);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.02em;
}

.floating-btn:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
  right: 66px;
}

@media(max-width: 600px) {
  .floating-ctas {
    bottom: 80px;
    right: 20px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}
