
/* ========================================
   SHIV SECURITY - Professional Hero Section
   ======================================== */

/* === CSS Variables === */
:root {
  /* Dark Premium Palette */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  
  /* Blues - Calm & Vigilant */
  --blue-deep: #1a2a3a;
  --blue-calm: #2d4a5e;
  --blue-steel: #4a6a7a;
  --blue-ash: #6a8a9a;
  
  /* Saffron Accents */
  --saffron: #E85D24;
  --saffron-light: #F4A261;
  --saffron-glow: rgba(232, 93, 36, 0.3);
  
  /* Neutrals */
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e0e0e0;
  --gray-300: #b0b0b0;
  --gray-400: #808080;
  --gray-500: #606060;
  --gray-600: #404040;
  --gray-700: #2a2a2a;
  
  /* Typography */
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --nav-height: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

/* === Hero Section === */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

/* Background Base */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #1a2a3a 0%,
    #0d1a24 40%,
    #0a0a0a 100%
  );
  z-index: 1;
}

/* === Layers (PNG Positioning) === */
.layer {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
}

/* Background Mountains */
.layer-bg-mountains {
  z-index: 2;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bg-mountains-img {
  width: 120%;
  max-width: none;
  height: auto;
  min-height: 60%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.6;
  filter: brightness(0.5) saturate(0.7);
}

/* Clouds Layer */
.layer-clouds {
  z-index: 3;
  top: 0%;
  height: 40%;
  overflow: hidden;
}

.clouds-track {
  display: flex;
  width: 200%;
  height: 100%;
  animation: cloudsMove 60s linear infinite;
}

.clouds-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: brightness(0.8) saturate(0.5);
}

@keyframes cloudsMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Shiva Face (Guardian) */
.layer-shiva {
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 29%;
}

.shiva-img {
  height: 110%;
  width: auto;
  max-width: 110%;
  min-height: 500px;
  object-fit: contain;
  object-position: center;
  filter: 
    brightness(0.85) 
    saturate(0.8) 
    contrast(1.1);
  opacity: 0;
  transform: translateX(90px);
  animation: shivaReveal 1.5s ease-out 0.5s forwards;
}

@keyframes shivaReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Front Mountains */
.layer-front-mountains {
  z-index: 7;
  top: 24%;
  left: 1%;
  width: 110%;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.front-mountains-img {
  width: 110%;
  max-width: none;
  height: auto;
  object-fit: cover;
  object-position: center bottom;
  filter: brightness(0.4) saturate(0.6);
}

/* === Gradient Overlays === */
.overlay {
  position: absolute;
  pointer-events: none;
}

.overlay-left {
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.8) 25%,
    rgba(10, 10, 10, 0.4) 45%,
    transparent 60%
  );
  z-index: 7;
}

.overlay-bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(
    0deg,
    rgba(10, 10, 10, 1) 0%,
    rgba(10, 10, 10, 0.8) 40%,
    transparent 100%
  );
  z-index: 8;
}

.overlay-vignette {
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(10, 10, 10, 0.5) 100%
  );
  z-index: 9;
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 100;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.9) 0%,
    transparent 100%
  );
  opacity: 0;
  transform: translateY(-20px);
  animation: navReveal 0.8s ease-out 0.3s forwards;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-300);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  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-cta {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gray-500);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  box-shadow: 0 4px 20px var(--saffron-glow);
}

/* === Hero Content === */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 60px;
  z-index: 50;
}

.content-inner {
  max-width: 560px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(232, 93, 36, 0.1);
  border: 1px solid rgba(232, 93, 36, 0.3);
  border-radius: 30px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out 0.6s forwards;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--saffron-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.7s;
  color: var(--white);
}

.title-line.title-accent {
  animation-delay: 0.85s;
  color: var(--saffron);
  text-shadow: 0 0 60px var(--saffron-glow);
}

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

/* Subtitle */
.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gray-200);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out 1s forwards;
}

/* Description */
.hero-description {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out 1.1s forwards;
}

/* Action Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out 1.2s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 25px var(--saffron-glow);
}

.btn-primary:hover {
  background: #d54d14;
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--saffron-glow);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray-500);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gray-300);
  transform: translateY(-3px);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out 1.35s forwards;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-600);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 50;
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards;
}

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

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(
    180deg,
    var(--saffron) 0%,
    transparent 100%
  );
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { 
    opacity: 1;
    transform: scaleY(1);
  }
  50% { 
    opacity: 0.5;
    transform: scaleY(0.7);
  }
}

.scroll-text {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* === Responsive === */
@media (max-width: 1200px) {
  .hero-content {
    width: 55%;
  }
  
  .shiva-img {
    max-width: 70%;
    min-height: 450px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 0 40px;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-content {
    width: 60%;
    padding-left: 40px;
  }
  
  .hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
  }
  
  .shiva-img {
    max-width: 75%;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }
  
  .navbar {
    padding: 0 24px;
    height: 64px;
  }
  
  .logo-img {
    width: 50px;
    height: 50px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .nav-cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .hero-content {
    width: 100%;
    padding: 0 24px;
    padding-top: 80px;
    padding-bottom: 100px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  
  .content-inner {
    max-width: 100%;
  }
  
  .badge {
    margin: 0 auto 20px;
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  
  .badge-text {
    font-size: 0.65rem;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    max-width: 100%;
    font-size: 0.95rem;
  }
  
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
  
  .trust-indicators {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .layer-shiva {
    justify-content: center;
    padding-right: 0;
  }
  
  .shiva-img {
    max-width: 130%;
    height: 90%;
    min-height: 420px;
    opacity: 0.75;
  }
  
  .layer-front-mountains {
    z-index: 8;
    top: 35%;
    left: 0;
    width: 100%;
  }
  
  .front-mountains-img {
    width: 120%;
    height: auto;
    min-height: 200px;
    opacity: 0.8;
    filter: brightness(0.5) saturate(0.7);
  }
  
  .overlay-left {
    background: linear-gradient(
      0deg,
      rgba(10, 10, 10, 0.85) 0%,
      rgba(10, 10, 10, 0.7) 25%,
      rgba(10, 10, 10, 0.3) 50%,
      transparent 100%
    );
  }
  
  .scroll-indicator {
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
  }
  
  .scroll-text {
    writing-mode: horizontal-tb;
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  
  .badge {
    padding: 5px 10px;
    gap: 6px;
  }
  
  .badge-text {
    font-size: 0.6rem;
    letter-spacing: 0.02em;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
  
  .trust-indicators {
    gap: 16px;
  }
  
  .trust-number {
    font-size: 1.4rem;
  }
  
  .trust-divider {
    display: none;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .shiva-img {
    max-width: 120%;
    min-height: 380px;
    height: 85%;
    opacity: 0.7;
  }
  
  .front-mountains-img {
    width: 110%;
    min-height: 180px;
    opacity: 0.7;
  }
}

/* === Tablet Portrait - Better Shiva visibility === */
@media (max-width: 1024px) and (min-width: 769px) {
  .shiva-img {
    max-width: 90%;
    min-height: 480px;
    opacity: 0.85;
  }
}

/* === Large Mobile Landscape - Special handling === */
@media (max-width: 926px) and (orientation: landscape) and (max-height: 428px) {
  .shiva-img {
    max-width: 110%;
    height: 95%;
    min-height: 300px;
    opacity: 0.6;
  }
}

/* ========================================
   ADDITIONAL SECTIONS
   ======================================== */

/* === Mobile Menu === */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin: 20px 0;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: var(--saffron);
}

/* === Nav Logo Link === */
.nav-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

/* === Section Base === */
.section {
  padding: 100px 0;
  background: var(--bg-primary);
}

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

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* === Services Section === */
.services {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-700);
  border-radius: 12px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--saffron);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(232, 93, 36, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--saffron);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--saffron);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--saffron-light);
}

/* === About Section === */
.about {
  background: var(--bg-secondary);
}

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

.about-content .section-tag {
  margin-bottom: 12px;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-text {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-700);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--saffron);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-tertiary);
  border-radius: 12px;
  border: 1px solid var(--gray-700);
  transition: border-color 0.3s ease;
}

.feature-item:hover {
  border-color: var(--saffron);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* === Clients Section === */
.clients {
  background: var(--bg-primary);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.client-card {
  background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-secondary));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.client-card:hover {
  border-color: var(--saffron);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(232, 93, 36, 0.15);
}

.client-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* === Careers Section === */
.careers {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.career-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-700);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.career-card:hover {
  border-color: var(--saffron);
  transform: translateY(-5px);
}

.career-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--saffron);
  background: rgba(232, 93, 36, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.career-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.career-location {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.career-requirements {
  list-style: none;
  margin-bottom: 20px;
}

.career-requirements li {
  font-size: 0.9rem;
  color: var(--gray-300);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.career-requirements li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--saffron);
}

.career-salary {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--saffron);
  margin-bottom: 20px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.careers-cta {
  text-align: center;
  padding: 40px;
  background: var(--bg-tertiary);
  border-radius: 12px;
  border: 1px dashed var(--gray-600);
}

.careers-cta p {
  font-size: 1rem;
  color: var(--gray-300);
  margin-bottom: 20px;
}

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

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

.contact-info .section-tag {
  margin-bottom: 12px;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.contact-text {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(232, 93, 36, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--saffron);
}

.contact-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin: 2px 0;
}

.contact-item a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--saffron);
}

/* === Contact Form === */
.contact-form-wrapper {
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-700);
  border-radius: 16px;
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--gray-600);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23808080' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

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

/* === Footer === */
.footer {
  background: var(--bg-secondary);
  padding: 80px 0 30px;
  border-top: 1px solid var(--gray-700);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-600);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--saffron);
  border-color: var(--saffron);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--gray-300);
}

.footer-social a:hover svg {
  color: var(--white);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--gray-700);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

/* === Modal === */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-600);
  border-radius: 16px;
  padding: 50px;
  text-align: center;
  max-width: 400px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-icon {
  width: 70px;
  height: 70px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 24px;
}

.modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.modal-content p {
  font-size: 0.95rem;
  color: var(--gray-400);
  margin-bottom: 30px;
}

/* === Responsive - Additional Sections === */
@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-cta {
    display: none;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
    scroll-margin-top: 64px;
  }
  
  .services-grid,
  .careers-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card,
  .career-card,
  .contact-form-wrapper {
    padding: 24px;
  }
  
  .about-stats {
    justify-content: center;
  }
  
  .stat-item {
    flex: 1;
    min-width: 100px;
  }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.whatsapp-float:hover svg {
  transform: rotate(-10deg) scale(1.1);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #333;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Pulse animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
