/*
 * Fortress Security - Main Stylesheet
 * Version: 1.0.0
 */

/* Base Typography */
body {
  font-family: 'DM Sans', sans-serif;
  background-color: #ffffff;
  color: #212529;
}

h1, h2, h3, h4, h5 {
  font-family: 'Rajdhani', sans-serif;
}

/* Gradient Text */
.gold-gradient {
  background: linear-gradient(135deg, #a8872e, #c8a84b, #a8872e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blue-gradient {
  background: linear-gradient(135deg, #1a6ef5, #4d9ef7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card Backgrounds */
.card-bg {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,249,250,0.95));
  border: 1px solid rgba(200,168,75,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Hero Background */
.hero-bg {
  background: radial-gradient(ellipse at 20% 50%, rgba(200,168,75,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(200,168,75,0.05) 0%, transparent 50%),
              linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

/* Grid Overlay */
.grid-overlay {
  background-image: linear-gradient(rgba(200,168,75,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(200,168,75,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hex Pattern */
.hex-pattern {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34zm0-18l-18-10V22l18-10 18 10v16z' fill='none' stroke='rgba(200,168,75,0.08)' stroke-width='1'/%3E%3C/svg%3E");
}

/* Navigation */
.nav-blur {
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(200,168,75,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, #c8a84b, #e5c458);
  color: #ffffff;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #a8872e, #c8a84b);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,168,75,0.4);
}

.btn-outline {
  border: 1.5px solid rgba(200,168,75,0.6);
  color: #a8872e;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: #c8a84b;
  background: rgba(200,168,75,0.08);
  transform: translateY(-2px);
}

/* Service Cards */
.service-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,249,250,0.95));
  border: 1px solid rgba(200,168,75,0.15);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.service-card:hover {
  border-color: rgba(200,168,75,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 0 40px rgba(200,168,75,0.1);
}

/* Stats Divider */
.stat-divider {
  border-left: 1px solid rgba(200,168,75,0.3);
}

/* Scan Line Animation */
@keyframes scan {
  0% { top: -2px; }
  100% { top: calc(100% + 2px); }
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.6), transparent);
  animation: scan 3s linear infinite;
  pointer-events: none;
}

/* Ticker Animation */
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker {
  animation: ticker 30s linear infinite;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Logo Gold */
.logo-gold path,
.logo-gold g {
  fill: #c8a84b !important;
}

/* Value Cards */
.value-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,249,250,0.95));
  border: 1px solid rgba(200,168,75,0.15);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.value-card:hover {
  border-color: rgba(200,168,75,0.5);
  transform: translateY(-4px);
}

/* Timeline */
.timeline-line {
  border-left: 2px solid rgba(200,168,75,0.3);
}

/* Service Sections */
.service-section {
  border-left: 3px solid rgba(200,168,75,0.4);
  padding-left: 2rem;
}

.service-section:hover {
  border-left-color: rgba(200,168,75,0.8);
}

/* Feature Items */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,168,75,0.1);
}

.feature-item:last-child {
  border-bottom: none;
}

/* Form Inputs */
.input-field {
  background: rgba(248,249,250,0.8);
  border: 1px solid rgba(200,168,75,0.25);
  color: #212529;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
}

.input-field:focus {
  border-color: rgba(200,168,75,0.6);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.1);
}

.input-field::placeholder {
  color: #6b87a3;
}

.input-label {
  color: #445f7a;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}