/* =============================================
   Nexvora HR Consultancy — Complete Stylesheet
   ============================================= */

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

/* === CSS Custom Properties === */
:root {
  /* Primary Colors */
  --navy: #0f1b2d;
  --navy-dark: #0a1220;
  --navy-light: #1a2d47;
  --navy-medium: #152238;

  /* Accent Colors */
  --gold: #c89530;
  --gold-light: #daa84a;
  --gold-dark: #a87a1f;
  --gold-hover: #e0b84d;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fb;
  --light-gray: #f0f2f5;
  --gray: #e2e5ea;
  --text-dark: #1a1a2e;
  --text-body: #4a5568;
  --text-muted: #718096;
  --text-light: #a0aec0;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1240px;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
  background: rgba(15, 27, 45, 0.85);
  backdrop-filter: blur(8px);
}

.navbar.scrolled {
  background: rgba(10, 18, 32, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.nav-logo:hover .nav-logo-img {
  filter: brightness(1.1);
  transform: scale(1.03);
}

.footer-logo-img {
  height: 80px;
  max-width: 220px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: var(--transition);
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

.btn-get-started {
  padding: 0.65rem 1.6rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-get-started:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 149, 48, 0.35);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

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

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 27, 45, 0.92) 0%,
    rgba(15, 27, 45, 0.75) 50%,
    rgba(15, 27, 45, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-left {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  background: rgba(200, 149, 48, 0.15);
  border: 1px solid rgba(200, 149, 48, 0.35);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  letter-spacing: 0.03em;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-title .gold {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 149, 48, 0.35);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
}

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

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Right - Floating Card */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: perspective(800px) rotateY(-5deg);
  transition: var(--transition);
}

.hero-image-card:hover {
  transform: perspective(800px) rotateY(0deg);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* Floating badge on hero image */
.hero-float-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}

.hero-float-badge .badge-icon {
  width: 42px;
  height: 42px;
  background: rgba(200, 149, 48, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-badge .badge-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
}

.hero-float-badge .badge-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.hero-float-badge .badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* === Section Common === */
.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === Clients Section === */
.clients {
  background: var(--white);
  border-bottom: 1px solid var(--gray);
  padding: 4rem 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.client-logo-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 120px;
}

.client-logo-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.client-industry {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  display: block;
}

.client-logo-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .client-logo-card {
    height: 110px;
    padding: 1.2rem 1rem;
  }
  .client-logo-card h3 {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* === Services Section === */
.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(200, 149, 48, 0.15);
}

/* Featured card styles */
.service-card.featured {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(200, 149, 48, 0.3);
}

.service-card.featured::before {
  display: none;
}

.service-card.featured .service-card-icon {
  background: rgba(255,255,255,0.2);
}

.service-card.featured .service-card-icon svg {
  stroke: var(--white);
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card.featured p {
  color: rgba(255,255,255,0.85);
}

.service-card.featured-dark {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(15, 27, 45, 0.3);
}

.service-card.featured-dark::before {
  display: none;
}

.service-card.featured-dark .service-card-icon {
  background: rgba(200, 149, 48, 0.15);
}

.service-card.featured-dark .service-card-icon svg {
  stroke: var(--gold);
}

.service-card.featured-dark h3 {
  color: var(--white);
}

.service-card.featured-dark p {
  color: rgba(255,255,255,0.7);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 149, 48, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Row layout for services: 2 on top, 3 on bottom */
.services-row-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 620px;
  margin: 0 auto 1.5rem;
}

.services-row-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

/* === Sectors We Serve === */
.sectors {
  background: var(--off-white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.sector-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.sector-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-card-hover);
}

.sector-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(200, 149, 48, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.sector-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.sector-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.sector-roles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sector-roles li {
  font-size: 0.82rem;
  color: var(--text-body);
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sector-roles li::before {
  content: '•';
  color: var(--gold);
  font-weight: bold;
}

.sector-roles li:last-child {
  border-bottom: none;
}

/* === Team Section === */
.team {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(200, 149, 48, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(26, 45, 71, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.team .section-title {
  color: var(--white);
}

.team .section-header {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.team .section-header .left {
  max-width: 500px;
}

.team .section-subtitle {
  color: rgba(255,255,255,0.6);
  text-align: left;
  margin: 0;
}

.view-team-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}

.view-team-link:hover {
  gap: 0.8rem;
  color: var(--gold-light);
}

.view-team-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--navy-medium);
  transition: var(--transition);
  cursor: pointer;
  group: true;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.team-card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}

.team-card:hover .team-card-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 18, 32, 0.9), transparent);
  pointer-events: none;
}

.team-card-info {
  padding: 1.2rem 1.5rem;
  text-align: center;
  position: relative;
}

.team-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.team-card-info span {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Gold line accent under active/middle card */
.team-card.featured .team-card-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* === Contact Section === */
.contact {
  background: var(--off-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-left {
  max-width: 500px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.contact-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.contact-info-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.contact-info-text p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

.contact-right {
  position: relative;
}

.contact-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Office Hours Badge */
.office-hours-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 2;
}

.office-hours-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Visit HQ Card */
.visit-hq {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray);
}

.visit-hq h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-directions:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 27, 45, 0.25);
}

.btn-directions svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

/* === Footer === */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding-top: 3.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-brand .nav-logo {
  margin-bottom: 0.5rem;
}

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

/* Footer Values Bar */
.footer-values {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 1rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-value {
  padding: 0.5rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
}

.footer-value:nth-child(1) { color: #4a90d9; }
.footer-value:nth-child(2) { color: var(--gold); }
.footer-value:nth-child(3) { color: #e07c3f; }
.footer-value:nth-child(4) { color: #4CAF50; }

.footer-value:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.15);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

/* === Vision & Mission Section === */
.about-us {
  background: var(--white);
  padding: var(--section-padding) 0;
  border-bottom: 1px solid var(--gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 149, 48, 0.2);
  box-shadow: var(--shadow-card-hover);
  background: var(--white);
}

.about-card:hover::before {
  opacity: 1;
}

.about-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(200, 149, 48, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.about-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
}


/* === Why Choose Nexvora Section === */
.why-choose {
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 149, 48, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.why-choose .section-title {
  color: var(--white);
}

.why-choose .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.why-card {
  background: var(--navy-medium);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(200, 149, 48, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.why-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

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

.why-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* --- Responsive Additions --- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .about-card {
    padding: 2.2rem 1.8rem;
  }
}

/* === Scroll Animations === */
.fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(35px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === Responsive === */

/* --- Large Tablets & Small Laptops (1280px) --- */
@media (max-width: 1280px) {
  .nav-inner {
    padding: 0.75rem 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero-content {
    padding: 8rem 2rem 4rem;
    gap: 2rem;
  }

  .hero-image-card {
    max-width: 380px;
  }
}

/* --- Tablets (1024px) --- */
@media (max-width: 1024px) {
  .nav-logo-img {
    height: 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-right {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
  }

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

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .team-card-image {
    height: 260px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-right {
    max-width: 550px;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
  }

  .stat-card {
    padding: 2rem 1.2rem;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Small Tablets / Large Phones (768px) --- */
@media (max-width: 768px) {
  /* Navbar */
  .nav-inner {
    padding: 0.6rem 1.2rem;
  }

  .nav-logo-img {
    height: 52px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 18, 32, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.4rem;
    color: var(--white);
  }

  .nav-links a::after {
    bottom: -4px;
    height: 3px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .btn-get-started {
    padding: 0.55rem 1.2rem;
    font-size: 0.8rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 7rem 1.5rem 3.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.4rem 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    margin-bottom: 2.5rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .hero-stat-label {
    font-size: 0.7rem;
  }

  /* Sections */
  .section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

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

  .service-card {
    padding: 1.8rem;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .team-card-image {
    height: 240px;
  }

  .team-card-info h3 {
    font-size: 1rem;
  }

  .team-card-info span {
    font-size: 0.72rem;
  }

  .team .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Contact */
  .contact-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .contact-image-wrapper img {
    height: 300px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo-img {
    height: 60px;
  }

  .footer-values {
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
  }

  .footer-value {
    padding: 0.5rem 1.2rem;
    font-size: 0.68rem;
  }

  .footer-value::after {
    display: none;
  }

  /* WhatsApp */
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }

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

/* --- Phones (480px) --- */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .nav-inner {
    padding: 0.5rem 1rem;
  }

  .nav-logo-img {
    height: 44px;
  }

  .btn-get-started {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .hero-content {
    padding: 6rem 1rem 3rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .hero-stats {
    gap: 1rem;
    justify-content: flex-start;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stat-label {
    font-size: 0.65rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 0.95rem;
  }

  .service-card p {
    font-size: 0.82rem;
  }

  .service-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    margin-bottom: 1rem;
  }

  .service-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-card-image {
    height: 280px;
  }

  .team-card-info {
    padding: 1rem;
  }

  .contact-info-item {
    gap: 0.8rem;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
  }

  .contact-info-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-info-text h4 {
    font-size: 0.88rem;
  }

  .contact-info-text p {
    font-size: 0.8rem;
  }

  .contact-image-wrapper img {
    height: 250px;
  }

  .visit-hq {
    padding: 1.2rem;
  }

  .visit-hq h4 {
    font-size: 1rem;
  }

  .footer-logo-img {
    height: 50px;
  }

  .footer-brand p {
    font-size: 0.82rem;
  }

  .footer-column h4 {
    font-size: 0.78rem;
    margin-bottom: 1rem;
  }

  .footer-column ul li a {
    font-size: 0.82rem;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .footer-bottom p {
    font-size: 0.72rem;
  }

  .whatsapp-btn {
    width: 46px;
    height: 46px;
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .whatsapp-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* --- Small Phones (360px) --- */
@media (max-width: 360px) {
  .nav-logo-img {
    height: 38px;
  }

  .btn-get-started {
    padding: 0.45rem 0.8rem;
    font-size: 0.7rem;
    border-radius: 6px;
  }

  .hero-content {
    padding: 5.5rem 0.8rem 2.5rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.82rem;
  }

  .hero-stat-number {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.82rem;
  }

  .service-card {
    padding: 1.2rem;
  }

  .team-grid {
    max-width: 100%;
  }

  .team-card-image {
    height: 240px;
  }

  .contact-title {
    font-size: 1.3rem;
  }

  .footer-values {
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
  }
}
