/* ========================================
   VISHWAS TRADING CONSULTANCY
   Premium Corporate Stylesheet
   ======================================== */

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

/* ---- CSS Variables ---- */
:root {
  --navy:        #0B2341;
  --navy-mid:    #1F4E79;
  --gold:        #C9A24D;
  --gold-soft:   #E6D2A2;
  --gold-light:  #F5EFE0;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --warm-gray:   #F3F4F6;
  --text-dark:   #0B2341;
  --text-body:   #4B5563;
  --text-muted:  #6B7280;
  --card-bg:     #FCFCFC;
  --shadow-sm:   0 2px 8px rgba(11,35,65,0.08);
  --shadow-md:   0 8px 24px rgba(11,35,65,0.12);
  --shadow-lg:   0 16px 48px rgba(11,35,65,0.16);
  --shadow-gold: 0 8px 24px rgba(201,162,77,0.25);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body:   'Inter', sans-serif;
  --font-display:'Playfair Display', serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,77,0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid rgba(201,162,77,0.25);
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header-left { text-align: left; margin-bottom: 28px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(11,35,65,0.35);
}
.btn-primary:hover {
  background: var(--navy-mid);
  box-shadow: 0 10px 28px rgba(11,35,65,0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: #b8902e;
  box-shadow: 0 12px 32px rgba(201,162,77,0.4);
}

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

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(11,35,65,0.08);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 30px rgba(11,35,65,0.14);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.logo-wrap:hover .logo-icon { transform: rotate(-5deg) scale(1.05); }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.logo-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  position: relative;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--gold-light);
}
.nav-link:hover::after, .nav-link.active::after { width: 24px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 8px 6px;
  cursor: pointer;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.hamburger:hover { background: var(--gold-light); }
.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 74px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,35,65,0.88) 0%,
    rgba(11,35,65,0.75) 40%,
    rgba(31,78,121,0.65) 100%
  );
}

/* Floating elements */
.hero-float {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
  animation: floatDrift 8s ease-in-out infinite;
}
.hero-float-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-float-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  bottom: 10%; left: -60px;
  animation-delay: -3s;
}
.hero-float-3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,162,77,0.6), transparent 70%);
  top: 35%; right: 12%;
  animation-delay: -5s;
}
@keyframes floatDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -25px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,77,0.18);
  border: 1px solid rgba(201,162,77,0.4);
  color: var(--gold-soft);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-line-1, .hero-line-2 {
  display: block;
}
.hero-line-2 {
  color: var(--gold-soft);
}
.hero-accent {
  font-style: italic;
  color: var(--gold);
  position: relative;
}
.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Contact cards on hero */
.hero-contacts {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  color: var(--white);
  transition: var(--transition);
  min-width: 240px;
}
.contact-card:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(201,162,77,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,162,77,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 2px;
}
.contact-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  background: rgba(201,162,77,0.2);
  border: 1px solid rgba(201,162,77,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  animation: scrollBounce 2.2s ease-in-out infinite;
  transition: var(--transition);
}
.hero-scroll:hover {
  background: var(--gold);
  color: var(--white);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--navy);
  padding: 36px 0;
  position: relative;
  z-index: 1;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 48px;
  position: relative;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* ============================================
   SERVICES GATEWAY
   ============================================ */
.services {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
}
.services-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(1px);
}
.services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(248,250,252,0.97) 0%,
    rgba(245,239,224,0.96) 50%,
    rgba(248,250,252,0.97) 100%
  );
}
.services-content {
  position: relative;
  z-index: 1;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.service-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--card-bg);
  border: 1px solid rgba(201,162,77,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px) translateX(6px);
  border-color: rgba(201,162,77,0.45);
}
.service-card:hover .service-icon-wrap {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.1) rotate(-5deg);
}
.service-card:hover .service-arrow {
  transform: translateX(6px);
  color: var(--gold);
}
.service-icon-wrap {
  width: 64px; height: 64px;
  background: var(--gold-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: var(--transition);
}
.service-text {
  flex: 1;
}
.service-text h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.service-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-arrow {
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}

/* ============================================
   INDUSTRY CAROUSEL
   ============================================ */
.industries {
  padding: 80px 0;
  background: var(--off-white);
  overflow: hidden;
}
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  /* Fade edges */
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.carousel-wrapper:hover .carousel-track { animation-play-state: paused; }
.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: carouselScroll 24s linear infinite;
}
@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.carousel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(201,162,77,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  min-width: 180px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
  user-select: none;
  flex-shrink: 0;
}
.carousel-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
  border-color: rgba(201,162,77,0.4);
  background: var(--card-bg);
}
.carousel-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--gold-light), rgba(201,162,77,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-card span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  text-align: center;
}

/* ============================================
   ABOUT US
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 520px;
}
.about-img-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--white);
  border: 2px solid var(--gold-soft);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  max-width: 240px;
}
.about-img-badge .badge-icon {
  width: 42px; height: 42px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-img-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 700;
}
.about-img-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.about-para {
  font-size: 0.97rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--card-bg);
  border: 1px solid rgba(201,162,77,0.18);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  border-color: rgba(201,162,77,0.4);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--navy);
}
.feature-card:hover .feature-icon svg { stroke: var(--gold); }
.feature-body h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-size: 0.97rem;
}
.feature-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* ============================================
   CANDIDATES CTA SECTION
   ============================================ */
.candidates-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.candidates-bg {
  position: absolute;
  inset: 0;
}
.candidates-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.candidates-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,35,65,0.9) 0%,
    rgba(31,78,121,0.82) 100%
  );
}
.candidates-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.cta-box {
  text-align: center;
  max-width: 680px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.75;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(201,162,77,0.15);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-detail-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,77,0.4);
  transform: translateX(4px);
}
.detail-icon {
  width: 46px; height: 46px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.detail-value {
  display: block;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.25s;
}
a.detail-value:hover { color: var(--gold); }
.contact-side-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  height: 240px;
}

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid rgba(201,162,77,0.12);
  border-radius: var(--radius-xl);
  padding: 48px 42px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.req { color: var(--gold); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(11,35,65,0.15);
  border-radius: var(--radius-md);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,162,77,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { min-height: 130px; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
}
.form-success p { color: var(--text-body); font-weight: 500; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}
.footer-top { padding: 72px 0 48px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.footer-logo { margin-bottom: 18px; }
.footer-brand-desc {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
}
.footer-contact-link:hover { color: var(--gold); }

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-link::before {
  content: '';
  width: 6px; height: 1.5px;
  background: var(--gold);
  opacity: 0;
  transition: var(--transition);
}
.footer-link:hover {
  color: var(--gold-soft);
  padding-left: 8px;
}
.footer-link:hover::before { opacity: 1; }
.footer-sector {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 24px;
}
.footer-bottom { padding: 28px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.45s; }
.delay-3 { animation-delay: 0.65s; }
.delay-4 { animation-delay: 0.85s; }

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

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image { max-width: 560px; margin: 0 auto; }
  .about-img { height: 420px; }
  .about-img-badge { right: 0; bottom: -20px; }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .stat-item { padding: 12px 28px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  /* Header — always visible on mobile */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1100;
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 2px 20px rgba(11,35,65,0.12);
  }
  .header-inner { height: 64px; }
  .logo-wrap {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 1;
    min-width: 0;
  }
  .logo-name { font-size: 0.95rem; white-space: nowrap; }
  .logo-sub { font-size: 0.65rem; }
  .logo-icon svg { width: 36px; height: 36px; }

  /* Hamburger */
  .hamburger { display: flex; }

  /* Nav dropdown — hidden by default, shows when open */
  .nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(11,35,65,0.12);
    padding: 16px 24px 24px;
    z-index: 1099;
    border-top: 1px solid rgba(201,162,77,0.15);
  }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; gap: 6px; }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
  }

  /* Hero — adjusted for 64px mobile header */
  .hero { padding-top: 64px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-contacts { flex-direction: column; align-items: center; }
  .contact-card { min-width: 280px; }

  /* Stats */
  .stats-inner { gap: 0; }
  .stat-item { padding: 14px 20px; }
  .stat-divider { display: none; }

  /* Services */
  .service-card { padding: 22px 20px; gap: 16px; }
  .service-icon-wrap { width: 52px; height: 52px; }

  /* About */
  .about-img { height: 320px; }
  .about-img-badge { position: relative; bottom: auto; right: auto; margin-top: 16px; max-width: 100%; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-tagline { font-size: 0.9rem; }

  /* Form */
  .form-card { padding: 32px 24px; }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 2rem; }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
  .section-title { font-size: 1.75rem; }
  .stat-num, .stat-suffix { font-size: 2rem; }
  .service-text h3 { font-size: 1.05rem; }
  .form-card { padding: 28px 18px; }
  .cta-title { font-size: 1.75rem; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md, 10px);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ============================================
   WHATSAPP MODAL
   ============================================ */
.wa-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 35, 65, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
  animation: waFadeIn 0.2s ease;
}
.wa-modal-overlay[hidden] { display: none; }

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

.wa-modal-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  padding: 44px 40px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(11,35,65,0.18);
  animation: waSlideUp 0.25s cubic-bezier(0.4,0,0.2,1);
  text-align: center;
}
@keyframes waSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wa-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: none;
  background: rgba(11,35,65,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #0B2341;
  transition: background 0.2s;
}
.wa-modal-close:hover { background: rgba(11,35,65,0.15); }

.wa-modal-icon {
  width: 72px; height: 72px;
  background: rgba(37,211,102,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

.wa-modal-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B2341;
  margin-bottom: 8px;
}

.wa-modal-sub {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 28px;
  line-height: 1.6;
}

.wa-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wa-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid rgba(37,211,102,0.25);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: left;
}
.wa-link-card:hover {
  border-color: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.15);
  transform: translateY(-2px);
}

.wa-link-icon {
  width: 44px; height: 44px;
  background: rgba(37,211,102,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.wa-link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.wa-link-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0B2341;
}
.wa-link-url {
  font-size: 0.78rem;
  color: #25D366;
}
.wa-link-arrow {
  color: #25D366;
  flex-shrink: 0;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
  padding: 80px 0 60px;
  background: var(--off-white);
  overflow: hidden;
}
.reviews .section-header { margin-bottom: 48px; }

.reviews-wrapper {
  position: relative;
  overflow: hidden;
  padding: 12px 0 28px;
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.reviews-wrapper:hover .reviews-track { animation-play-state: paused; }

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewsScroll 40s linear infinite;
}
@keyframes reviewsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(201,162,77,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  width: 340px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
  user-select: none;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(201,162,77,0.35);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-google-icon {
  flex-shrink: 0;
  opacity: 0.8;
}

.review-stars {
  font-size: 1.1rem;
  color: #FBBC05;
  letter-spacing: 2px;
  line-height: 1;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  flex: 1;
}
