/* ============================================
   IT ADVERTISING AGENCY - LANDING PAGE STYLES
   Updated Version with all improvements
   ============================================ */

/* ---------- FONTS ---------- */
@font-face {
  font-family: 'Archive';
  src: url('https://fonts.cdnfonts.com/s/15800/Archive.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* ---------- CSS VARIABLES ---------- */
:root {
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-red: #ff0033;
  --color-red-dark: #cc0029;
  --color-gray-dark: #1a1a1a;
  --color-gray: #2a2a2a;
  --color-gray-light: #888888;
  --color-gray-lighter: #cccccc;
  
  --font-display: 'Orbitron', sans-serif;
  --font-logo: 'Archive', 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  
  --section-padding: 100px 0;
  --container-width: 1200px;
  
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --glow-red: 0 0 20px rgba(255, 0, 51, 0.5);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

/* Scanline effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.1) 0px,
    rgba(0, 0, 0, 0.1) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

/* Grid pattern */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 0, 51, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 51, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

/* Global floating gradient - covers entire page, 7% less transparent */
.global-bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.global-bg-gradient::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(ellipse at center, rgba(255, 0, 51, 0.22) 0%, transparent 50%);
  animation: float-global-gradient 30s ease-in-out infinite;
}

@keyframes float-global-gradient {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10%, 5%) rotate(90deg); }
  50% { transform: translate(-5%, 10%) rotate(180deg); }
  75% { transform: translate(-10%, -5%) rotate(270deg); }
}

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

a:hover {
  color: var(--color-red);
}

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

ul {
  list-style: none;
}

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

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* Section title - moved up 20px, line spacing 15px */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  margin-top: -20px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-red);
  margin: 15px auto 0;
  box-shadow: var(--glow-red);
}

/* ---------- SECTION BACKGROUNDS - 50% more dots, 50% less transparent ---------- */
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* 50% more dots = ~11 dots, 50% less transparent = opacity 0.225 */
.bg-dots span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-red);
  border-radius: 50%;
  opacity: 0.225;
  animation: float-dot 20s infinite ease-in-out;
}

.bg-dots span:nth-child(1) { left: 5%; top: 15%; animation-delay: 0s; }
.bg-dots span:nth-child(2) { left: 15%; top: 45%; animation-delay: 1.5s; }
.bg-dots span:nth-child(3) { left: 25%; top: 25%; animation-delay: 3s; }
.bg-dots span:nth-child(4) { left: 35%; top: 70%; animation-delay: 4.5s; }
.bg-dots span:nth-child(5) { left: 45%; top: 35%; animation-delay: 6s; }
.bg-dots span:nth-child(6) { left: 55%; top: 85%; animation-delay: 7.5s; }
.bg-dots span:nth-child(7) { left: 65%; top: 20%; animation-delay: 9s; }
.bg-dots span:nth-child(8) { left: 75%; top: 55%; animation-delay: 10.5s; }
.bg-dots span:nth-child(9) { left: 85%; top: 40%; animation-delay: 12s; }
.bg-dots span:nth-child(10) { left: 92%; top: 75%; animation-delay: 13.5s; }
.bg-dots span:nth-child(11) { left: 10%; top: 80%; animation-delay: 15s; }


@keyframes float-dot {
  0%, 100% { transform: translate(0, 0); opacity: 0.225; }
  25% { transform: translate(10px, -15px); opacity: 0.35; }
  50% { transform: translate(-5px, 10px); opacity: 0.15; }
  75% { transform: translate(15px, 5px); opacity: 0.3; }
}

/* Divider line */
.divider-line {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-red), transparent);
  margin: 0;
  overflow: hidden;
}

.divider-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: shimmer-line 3s infinite;
}

@keyframes shimmer-line {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 15px 40px;
  border: 2px solid var(--color-red);
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-red);
  transition: var(--transition-medium);
  z-index: -1;
}

.btn:hover {
  color: var(--color-white);
  box-shadow: var(--glow-red);
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: var(--color-red);
}

.btn-primary::before {
  background: var(--color-red-dark);
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-medium);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 0, 51, 0.2);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.95);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo with icon - moved left with 40px padding\/ ALSO YOU SHOULD MARGIN -50PX!!!*/
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: -150px;
}

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

.logo {
  font-family: var(--font-logo);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 3px;
}

.logo span {
  color: var(--color-red);
  text-shadow: var(--glow-red);
}

/* Navigation\/ ALSO YOU SHOULD ADD MARGIN-RIGHT: -135PX; */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: -135px;  
  margin-right: -50px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: var(--transition-fast);
  box-shadow: var(--glow-red);
}

.nav-link:hover::after {
  width: 100%;
}

/* Contact button styled red */
.nav-link.nav-contact {
  background: none;
  padding: 8px 20px;
  color: var(--color-red);
  font-weight: 900;  
}

.nav-link.nav-contact::after {
  display: none;
}

.nav-link.nav-contact:hover {
  background: var(--color-red-dark);
  box-shadow: var(--glow-red);
}

/* Social Icons with custom images */
.social-icons {
  display: flex;
  gap: 12px;                           /* ###############REMOVED PADDING RIGHT: 15px; #####################*/
}

.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  opacity: 0.8;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-icon:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* Language Switcher\/ ALSO YOU SHOULD - PADDING LEFT = 0; MARGIN-LEFT = 0!!!!!  */
.lang-switcher {
  position: relative;
  padding-left: 0;
  margin-left: 0;
  right: -120px; 
}

.lang-btn-main {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  background: transparent;
  border: 1px solid var(--color-gray);
  color: var(--color-gray-light);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-btn-main::after {
  content: '▾';
  font-size: 10px;
  transition: var(--transition-fast);
}

.lang-btn-main:hover {
  border-color: var(--color-red);
  color: var(--color-white);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background: var(--color-gray-dark);
  border: 1px solid var(--color-gray);
  padding: 5px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-fast);
  min-width: 100px;
  z-index: 100;
}

.lang-switcher.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher.active .lang-btn-main::after {
  transform: rotate(180deg);
}

.lang-btn {
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  padding: 8px 15px;
  background: transparent;
  border: none;
  color: var(--color-gray-light);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
}

.lang-btn:hover {
  background: rgba(255, 0, 51, 0.1);
  color: var(--color-white);
}

.lang-btn.active {
  color: var(--color-red);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-fast);
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 0, 51, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Hero particles - 50% more (15 instead of 10), 50% less transparent */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-red);
  box-shadow: var(--glow-red);
  opacity: 0.75;
  animation: float 15s infinite linear;
}

.particle:nth-child(1) { left: 5%; animation-delay: 0s; }
.particle:nth-child(2) { left: 12%; animation-delay: 1s; }
.particle:nth-child(3) { left: 20%; animation-delay: 2s; }
.particle:nth-child(4) { left: 28%; animation-delay: 3s; }
.particle:nth-child(5) { left: 36%; animation-delay: 4s; }
.particle:nth-child(6) { left: 44%; animation-delay: 5s; }
.particle:nth-child(7) { left: 52%; animation-delay: 6s; }
.particle:nth-child(8) { left: 60%; animation-delay: 7s; }
.particle:nth-child(9) { left: 68%; animation-delay: 8s; }
.particle:nth-child(10) { left: 76%; animation-delay: 9s; }
.particle:nth-child(11) { left: 84%; animation-delay: 10s; }
.particle:nth-child(12) { left: 90%; animation-delay: 11s; }
.particle:nth-child(13) { left: 95%; animation-delay: 12s; }
.particle:nth-child(14) { left: 8%; animation-delay: 13s; }
.particle:nth-child(15) { left: 48%; animation-delay: 14s; }

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.75; }
  90% { opacity: 0.75; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--color-red);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 30px;
}

.hero-title .highlight {
  color: var(--color-red);
  text-shadow: var(--glow-red);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--color-gray-lighter);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Glitch effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 2s infinite linear alternate-reverse;
  color: var(--color-red);
  z-index: -1;
}

.glitch::after {
  animation: glitch-2 3s infinite linear alternate-reverse;
  color: rgba(255, 255, 255, 0.5);
  z-index: -2;
}

@keyframes glitch-1 {
  0%, 100% { clip-path: inset(0 0 95% 0); transform: translate(-2px, 2px); }
  20% { clip-path: inset(30% 0 50% 0); transform: translate(2px, -2px); }
  40% { clip-path: inset(60% 0 20% 0); transform: translate(-2px, 2px); }
  60% { clip-path: inset(80% 0 5% 0); transform: translate(2px, -2px); }
  80% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 2px); }
}

@keyframes glitch-2 {
  0%, 100% { clip-path: inset(95% 0 0 0); transform: translate(2px, -2px); }
  20% { clip-path: inset(50% 0 30% 0); transform: translate(-2px, 2px); }
  40% { clip-path: inset(20% 0 60% 0); transform: translate(2px, -2px); }
  60% { clip-path: inset(5% 0 80% 0); transform: translate(-2px, 2px); }
  80% { clip-path: inset(70% 0 10% 0); transform: translate(2px, -2px); }
}

/* ---------- ABOUT SECTION ---------- */
.about {
  padding: var(--section-padding);
  background: var(--color-gray-dark);
  position: relative;
  overflow: hidden;
}

/* About - text left, 6 stats right */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--color-gray-lighter);
}

.about-text p:first-of-type {
  font-size: 1.3rem;
  color: var(--color-white);
}

/* 6 Stats on the right side */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 25px 15px;
  border: 1px solid var(--color-gray);
  transition: var(--transition-medium);
  background: rgba(0, 0, 0, 0.3);
}

.stat-item:hover {
  border-color: var(--color-red);
  box-shadow: var(--glow-red);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-red);
  text-shadow: var(--glow-red);
}

.stat-label {
  font-size: 13px;
  color: var(--color-gray-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* ---------- SERVICES SECTION - 6 cards ---------- */
.services {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--color-gray-dark);
  border: 1px solid var(--color-gray);
  padding: 35px 25px;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-red);
  transform: scaleX(0);
  transition: var(--transition-medium);
}

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

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

/* Service icon - placeholder for PNG */
.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-red);
  border: 2px solid var(--color-red);
  background: rgba(255, 0, 51, 0.1);
}

.service-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.service-card p {
  color: var(--color-gray-light);
  font-size: 15px;
}

/* ---------- ADVANTAGES SECTION ---------- */
.advantages {
  padding: var(--section-padding);
  background: var(--color-gray-dark);
  position: relative;
  overflow: hidden;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.advantage-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--color-red);
  transition: var(--transition-medium);
}

.advantage-item:hover {
  background: rgba(255, 0, 51, 0.05);
  transform: translateX(10px);
}

.advantage-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-red);
  text-shadow: var(--glow-red);
  line-height: 1;
  opacity: 0.5;
}

.advantage-content h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.advantage-content p {
  color: var(--color-gray-light);
  font-size: 15px;
}

/* ---------- PARTNERS SECTION - 3 large partners ---------- */
.partners {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-logo {
  width: 150px;
  height: 150px;
  background: var(--color-gray-dark);
  border: 2px solid var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-medium);
  margin-bottom: 15px;
  border-radius: 10px;
}

.partner-logo:hover {
  border-color: var(--color-red);
  box-shadow: 0 0 30px rgba(255, 0, 51, 0.3);
}

.partner-logo img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
}

.partner-logo span {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--color-gray-light);
  text-transform: uppercase;
}

.partner-name {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- NEWS SECTION - Vertical layout ---------- */
.news {
  padding: var(--section-padding);
  background: var(--color-gray-dark);
  position: relative;
  overflow: hidden;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  gap: 25px;
  padding: 25px;
  background: var(--color-black);
  border: 1px solid var(--color-gray);
  transition: var(--transition-medium);
}

.news-item:hover {
  border-color: var(--color-red);
}

.news-date {
  background: var(--color-red);
  color: var(--color-white);
  padding: 10px 15px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  min-width: 80px;
  height: fit-content;
}

.news-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Larger text, white color */
.news-content p {
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.6;
}

/* ---------- CONTACT SECTION ---------- */
.contact {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--color-gray-lighter);
  margin-bottom: 30px;
}

/* Social contact items with icons */
.contact-socials {
  margin-top: 30px;
}

.contact-social-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--color-red);
  transition: var(--transition-fast);
}

.contact-social-item:hover {
  background: rgba(255, 0, 51, 0.1);
}

.contact-social-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-social-item span {
  color: var(--color-gray-lighter);
  font-size: 16px;
}

/* Form */
.contact-form {
  background: var(--color-gray-dark);
  padding: 40px;
  border: 1px solid var(--color-gray);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-red);
}

.form-header {
  margin-bottom: 25px;
  text-align: center;
}

.form-header p {
  font-size: 18px;
  color: var(--color-red)
}
form-header .required-note {
  color: var(--color-red);
}

.form-header .underline {
  text-decoration: underline;
  font-weight: 600;
}

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--color-gray-lighter);
}

.form-group label .required {
  color: var(--color-red);
  margin-left: 3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  background: var(--color-black);
  border: 1px solid var(--color-gray);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 10px rgba(255, 0, 51, 0.2);
}

/* Message field - 1.5x height of input */
.form-group textarea {
  min-height: 70px;
  max-height: 150px;
  resize: vertical;
}

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

/* Checkbox with Privacy tooltip */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-checkbox input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--color-red);
}

.form-checkbox span {
  font-size: 14px;
  color: var(--color-gray-light);
}

/* Privacy tooltip */
.privacy-tooltip {
  position: relative;
  color: var(--color-red);
  cursor: pointer;
}

.privacy-tooltip .tooltip-content {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 300px;
  padding: 15px;
  background: var(--color-black);
  border: 1px solid var(--color-red);
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-gray-lighter);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  text-align: left;
}

.privacy-tooltip .tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--color-red);
}

.privacy-tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.privacy-tooltip .tooltip-content strong {
  color: var(--color-white);
  font-weight: 700;
}

.form-submit {
  margin-top: 25px;
}

.form-submit .btn {
  width: 100%;
}

/* Hide empty form messages by default */
.form-message {
  display: none;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 40px 0;
  background: var(--color-gray-dark);
  border-top: 1px solid var(--color-gray);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 14px;
  color: var(--color-gray-light);
}

/* Footer privacy with tooltip */
.footer-privacy {
  position: relative;
}

.footer-privacy a {
  font-size: 14px;
  color: var(--color-gray-light);
}

.footer-privacy a:hover {
  color: var(--color-red);
}

.footer-privacy .tooltip-content {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 300px;
  padding: 15px;
  background: var(--color-black);
  border: 1px solid var(--color-red);
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-gray-lighter);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  text-align: left;
}

.footer-privacy .tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 20px;
  border: 8px solid transparent;
  border-top-color: var(--color-red);
}

.footer-privacy:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

.footer-privacy .tooltip-content strong {
  color: var(--color-white);
  font-weight: 700;
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    gap: 30px;
  }
  
  .partner-logo {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .social-icons {
    display: none;
  }
  
  .logo-wrapper {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-gray-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition-medium);
    border-left: 1px solid var(--color-red);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .partner-logo {
    width: 150px;
    height: 150px;
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .news-item {
    flex-direction: column;
  }
  
  .privacy-tooltip .tooltip-content,
  .footer-privacy .tooltip-content {
    width: 250px;
    left: auto;
    right: 0;
    transform: translateY(10px);
  }
  
  .privacy-tooltip:hover .tooltip-content {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .advantage-item {
    flex-direction: column;
    gap: 15px;
  }
}
