/* ========================================
   BLACKHAWK - Military Theme CSS
   Pure HTML/CSS Design (No Images)
   ======================================== */

/* CSS Variables */
:root {
  --primary: #F05A28;
  --primary-dark: #d44a1c;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-card: #111111;
  --bg-footer: #0d0d0d;
  --text-white: #ffffff;
  --text-gray: #8a8a8a;
  --text-light: #cccccc;
  --border-dark: #222222;
  --font-main: 'Rajdhani', sans-serif;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
  background: var(--bg-darker);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
}

.top-info:hover {
  color: var(--primary);
}

.icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.phone-icon::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--primary);
  border-radius: 3px;
  transform: rotate(-45deg);
}

.mail-icon::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 10px;
  border: 2px solid var(--primary);
  border-radius: 2px;
}

.mail-icon::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(-45deg);
  top: 0;
  left: 3px;
}

.location-icon::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  top: 0;
  left: 3px;
}

.location-icon::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid var(--primary);
  top: 8px;
  left: 3px;
}

.top-bar-right {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: var(--primary);
  background: var(--primary);
}

.social-icon.facebook::before {
  content: 'f';
  font-weight: 700;
  font-size: 14px;
}

.social-icon.twitter::before {
  content: 'X';
  font-weight: 700;
  font-size: 12px;
}

.social-icon.linkedin::before {
  content: 'in';
  font-weight: 700;
  font-size: 10px;
}

.social-icon.youtube::before {
  content: '▶';
  font-size: 10px;
}

.social-icon.pinterest::before {
  content: 'P';
  font-weight: 700;
  font-size: 14px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  background: var(--bg-darker);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 25px;
  position: relative;
}

.logo-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 50%, #333 50%, #333 100%);
  clip-path: polygon(0 50%, 50% 0, 100% 0, 100% 50%, 50% 100%, 0 100%);
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-white);
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav a:hover {
  color: var(--primary);
}

.arrow {
  font-size: 8px;
  transition: transform 0.3s;
}

.has-dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  min-width: 180px;
  padding: 10px 0;
  border: 1px solid var(--border-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  padding: 10px 20px;
  display: block;
  font-size: 13px;
}

.dropdown li a:hover {
  background: var(--primary);
  color: var(--text-white);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(240, 90, 40, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  position: relative;
}

.soldier-silhouette {
  position: relative;
  width: 350px;
  height: 450px;
}

.soldier-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.soldier-circle::before {
  content: 'HAWK';
  position: absolute;
  font-size: 80px;
  font-weight: 700;
  color: rgba(0,0,0,0.2);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.soldier-shape {
  position: absolute;
  width: 200px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
  clip-path: polygon(
    30% 0%, 70% 0%, 75% 5%, 80% 3%, 85% 8%,
    90% 15%, 92% 25%, 90% 35%, 95% 45%, 93% 55%,
    100% 65%, 95% 75%, 90% 85%, 85% 95%, 70% 100%,
    30% 100%, 15% 95%, 10% 85%, 5% 75%, 0% 65%,
    7% 55%, 5% 45%, 10% 35%, 8% 25%, 10% 15%, 15% 8%
  );
}

.soldier-shape::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: #222;
  border-radius: 50%;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.army-badge {
  position: absolute;
  bottom: -20px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 25px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 2px solid var(--primary);
}

.badge-star {
  width: 50px;
  height: 50px;
  position: relative;
  margin-bottom: 10px;
}

.badge-star::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.badge-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-white);
}

.badge-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-gray);
}

.hero-right {
  max-width: 550px;
}

.hero-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.hero h1 .orange {
  color: var(--primary);
  font-style: italic;
}

.hero p {
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 35px;
  line-height: 1.8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--text-white);
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateX(5px);
}

.btn-arrow {
  font-size: 18px;
  transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.hero-silhouettes {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 200px;
  opacity: 0.3;
}

.hero-silhouettes::before,
.hero-silhouettes::after {
  content: '';
  position: absolute;
  bottom: 0;
  background: var(--primary);
}

.hero-silhouettes::before {
  width: 80px;
  height: 120px;
  right: 100px;
  clip-path: polygon(20% 100%, 30% 60%, 25% 40%, 40% 20%, 50% 0%, 60% 20%, 75% 40%, 70% 60%, 80% 100%);
}

.hero-silhouettes::after {
  width: 100px;
  height: 150px;
  right: 200px;
  clip-path: polygon(10% 100%, 20% 70%, 30% 50%, 25% 30%, 45% 10%, 55% 0%, 65% 10%, 75% 30%, 70% 50%, 80% 70%, 90% 100%);
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2,
section h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: 100px 0;
  background: var(--bg-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border: 1px solid var(--border-dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: height 0.3s ease;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  position: relative;
}

.shield-icon::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 60px;
  border: 3px solid var(--primary);
  border-radius: 0 0 25px 25px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.shield-icon::after {
  content: '✓';
  position: absolute;
  font-size: 24px;
  color: var(--primary);
  top: 15px;
  left: 15px;
}

.camera-icon::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 35px;
  border: 3px solid var(--primary);
  border-radius: 5px;
  top: 15px;
}

.camera-icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  top: 22px;
  left: 15px;
}

.home-icon::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 30px;
  border: 3px solid var(--primary);
  border-top: none;
  top: 25px;
  left: 5px;
}

.home-icon::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-bottom: 25px solid var(--primary);
  top: 0;
  left: 0;
  transform: scaleY(-1);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.read-more:hover {
  color: var(--text-white);
}

.read-more span {
  transition: transform 0.3s;
}

.read-more:hover span {
  transform: translateX(5px);
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: center;
}

.video-thumbnail {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.video-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4500 100%);
}

.video-frame {
  position: absolute;
  top: 20px;
  right: -50px;
  width: 80%;
  height: 90%;
  border: 3px solid var(--primary);
}

.video-player {
  position: relative;
  height: 400px;
  background: linear-gradient(180deg, rgba(50,80,50,0.8) 0%, rgba(30,50,30,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--primary);
}

.video-soldiers {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.video-soldiers::before,
.video-soldiers::after {
  content: '';
  position: absolute;
  bottom: 30%;
  background: #1a1a1a;
}

.video-soldiers::before {
  width: 60px;
  height: 100px;
  left: 30%;
  clip-path: polygon(30% 100%, 35% 60%, 20% 40%, 40% 10%, 50% 0%, 60% 10%, 80% 40%, 65% 60%, 70% 100%);
}

.video-soldiers::after {
  width: 70px;
  height: 110px;
  left: 50%;
  clip-path: polygon(25% 100%, 30% 55%, 15% 35%, 45% 5%, 55% 0%, 65% 5%, 85% 35%, 70% 55%, 75% 100%);
}

.play-button {
  width: 80px;
  height: 80px;
  border: 2px solid var(--text-white);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-button:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.play-button.large {
  width: 100px;
  height: 100px;
}

.play-icon {
  font-size: 24px;
  color: var(--text-white);
  margin-left: 5px;
}

.video-info {
  text-align: center;
  margin-top: 30px;
  z-index: 2;
}

.video-info h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.video-info p {
  color: var(--text-gray);
  font-size: 14px;
}

.video-nav {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid var(--border-dark);
  background: transparent;
  color: var(--text-white);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  border-color: var(--primary);
  background: var(--primary);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 100px 0;
  background: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  padding: 30px;
}

.about-img-main {
  width: 250px;
  height: 300px;
  position: relative;
}

.about-img-secondary {
  width: 200px;
  height: 250px;
  position: absolute;
  top: 50px;
  left: 180px;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.img-placeholder.soldiers {
  background: linear-gradient(135deg, #4a3728 0%, #2d1f15 100%);
}

.img-placeholder.soldiers::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 80%;
  bottom: 0;
  left: 20%;
  background: #1a1a1a;
  clip-path: polygon(20% 100%, 25% 70%, 15% 50%, 30% 30%, 45% 10%, 55% 10%, 70% 30%, 85% 50%, 75% 70%, 80% 100%);
}

.img-placeholder.tactical {
  background: linear-gradient(135deg, #3d3d3d 0%, #1a1a1a 100%);
}

.experience-badge {
  position: absolute;
  top: 0;
  left: 50px;
  background: var(--primary);
  padding: 25px 30px;
  text-align: center;
}

.exp-number {
  font-size: 48px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.exp-number sup {
  font-size: 24px;
}

.exp-text {
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.4;
}

.dot-pattern {
  position: absolute;
  top: 20px;
  right: 0;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.5;
}

.about-content h2 {
  margin-bottom: 25px;
}

.about-content p {
  color: var(--text-gray);
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.cta-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cta-banner {
  background: var(--primary);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-white);
}

.cta-text-large {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-white);
}

.cta-image-area {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  position: relative;
  min-height: 300px;
}

.combat-silhouette {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 100px;
}

.combat-silhouette::before,
.combat-silhouette::after {
  content: '';
  position: absolute;
  bottom: 0;
  background: #0a0a0a;
}

.combat-silhouette::before {
  width: 40px;
  height: 60px;
  left: 20px;
  clip-path: polygon(20% 100%, 30% 50%, 50% 20%, 60% 0%, 80% 30%, 70% 60%, 80% 100%);
}

.combat-silhouette::after {
  width: 50px;
  height: 70px;
  right: 20px;
  clip-path: polygon(30% 100%, 20% 60%, 40% 30%, 50% 0%, 70% 20%, 80% 50%, 70% 100%);
}

.commando-card {
  background: var(--bg-card);
  padding: 30px;
}

.commando-image {
  height: 250px;
  background: linear-gradient(135deg, #ff6b35 0%, #1a1a1a 50%);
  margin-bottom: 25px;
  position: relative;
}

.soldier-portrait {
  position: absolute;
  bottom: 0;
  right: 20%;
  width: 150px;
  height: 200px;
  background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
  clip-path: polygon(
    30% 0%, 70% 0%, 80% 10%, 85% 25%, 80% 40%,
    95% 50%, 90% 70%, 85% 85%, 70% 100%, 30% 100%,
    15% 85%, 10% 70%, 5% 50%, 20% 40%, 15% 25%, 20% 10%
  );
}

.commando-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.commando-card p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* ========================================
   TOPOGRAPHIC SECTION
   ======================================== */
.topo-section {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.topo-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
}

.topo-lines::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background:
    repeating-conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg,
      transparent 10deg,
      rgba(50,50,50,0.1) 10deg,
      rgba(50,50,50,0.1) 11deg
    );
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.topo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background:
    repeating-radial-gradient(
      circle at 30% 50%,
      transparent 0px,
      transparent 40px,
      rgba(255,255,255,0.03) 40px,
      rgba(255,255,255,0.03) 41px
    ),
    repeating-radial-gradient(
      circle at 70% 30%,
      transparent 0px,
      transparent 60px,
      rgba(255,255,255,0.02) 60px,
      rgba(255,255,255,0.02) 61px
    );
}

/* ========================================
   TESTIMONIAL SECTION
   ======================================== */
.testimonial {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.testimonial-title h2 {
  font-size: 38px;
}

.testimonial-nav {
  display: flex;
  gap: 15px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 40px;
  border-top: 3px solid var(--primary);
  position: relative;
}

.quote-mark {
  font-size: 80px;
  color: var(--primary);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: Georgia, serif;
}

.stars {
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-card p {
  color: var(--text-gray);
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
  position: relative;
  overflow: hidden;
}

.author-avatar::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  background: #666;
  border-radius: 50%;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.author-avatar::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 25px;
  background: #666;
  border-radius: 50%;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.author-info h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.author-info span {
  font-size: 13px;
  color: var(--text-gray);
}

/* ========================================
   VIDEO BANNER
   ======================================== */
.video-banner {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.8) 0%,
    rgba(139,90,43,0.4) 50%,
    rgba(10,10,10,0.8) 100%
  );
}

.video-banner-bg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 0%, transparent 48%, rgba(255,255,255,0.1) 50%, transparent 52%, transparent 100%);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
  padding: 80px 0;
  background: var(--bg-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.gallery-item {
  height: 250px;
  overflow: hidden;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.gallery-placeholder:hover {
  transform: scale(1.05);
}

.gallery-placeholder.family {
  background: linear-gradient(135deg, #5a4a3a 0%, #3a2a1a 100%);
}

.gallery-placeholder.jet {
  background: linear-gradient(135deg, #4a5a6a 0%, #2a3a4a 100%);
  position: relative;
}

.gallery-placeholder.jet::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 30px;
  background: #2a2a2a;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  clip-path: polygon(0 50%, 10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%);
}

.gallery-placeholder.family2 {
  background: linear-gradient(135deg, #4a5040 0%, #2a3020 100%);
}

.dot-pattern-gallery {
  position: absolute;
  top: -30px;
  left: 200px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.4;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  padding: 100px 0;
  background: var(--bg-dark);
}

.contact-header {
  max-width: 600px;
  margin-bottom: 50px;
}

.contact-header h2 {
  margin-bottom: 20px;
}

.contact-header p {
  color: var(--text-gray);
  font-size: 15px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  font-family: var(--font-main);
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-gray);
}

.btn-submit {
  background: var(--primary);
  color: var(--text-white);
  padding: 18px 40px;
  border: none;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: var(--primary-dark);
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
  padding: 100px 0;
  background: var(--bg-dark);
}

.team-header {
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 700px;
}

.team-card {
  text-align: center;
}

.team-image {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
}

.member-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(180deg, #4a4a4a 0%, #2a2a2a 100%);
  position: relative;
  overflow: hidden;
}

.member-avatar::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: #555;
  border-radius: 50%;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.member-avatar::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 80px;
  background: #555;
  border-radius: 50%;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.team-border {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 80%);
}

.team-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.team-card > span {
  color: var(--text-gray);
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-sm {
  width: 35px;
  height: 35px;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-sm:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
  padding: 100px 0;
  background: var(--bg-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.feature-item {
  display: flex;
  gap: 25px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-dark);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon.medal::before {
  content: '';
  width: 30px;
  height: 30px;
  background: var(--bg-dark);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.feature-icon.regiment::before {
  content: '';
  width: 30px;
  height: 35px;
  background: var(--bg-dark);
  clip-path: polygon(20% 0%, 80% 0%, 100% 30%, 80% 100%, 20% 100%, 0% 30%);
}

.feature-icon.brigade::before {
  content: '';
  width: 35px;
  height: 35px;
  background: var(--bg-dark);
  border-radius: 50%;
  border: 3px solid var(--bg-dark);
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.feature-content p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.7;
}

.features-card {
  background: var(--bg-card);
  overflow: hidden;
}

.card-top {
  height: 200px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.helmet-silhouette {
  position: absolute;
  bottom: -30px;
  right: 20px;
  width: 180px;
  height: 180px;
  background: rgba(0,0,0,0.3);
  border-radius: 50% 50% 40% 40%;
  transform: rotate(-10deg);
}

.helmet-silhouette::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 60px;
  background: rgba(0,0,0,0.2);
  top: 40px;
  left: 30px;
  border-radius: 50%;
}

.card-content {
  padding: 40px;
}

.card-content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.card-content p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.7;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.check {
  color: var(--primary);
  font-size: 16px;
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog {
  padding: 100px 0;
  background: var(--bg-dark);
}

.blog-header {
  margin-bottom: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--bg-card);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3a4a3a 0%, #1a2a1a 100%);
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-placeholder {
  transform: scale(1.1);
}

.blog-meta {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--border-dark);
}

.blog-meta span {
  font-size: 12px;
  color: var(--text-gray);
}

.blog-card h3 {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-card .read-more {
  padding: 0 20px 25px;
  display: inline-flex;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg-footer);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-col .logo {
  margin-bottom: 25px;
}

.footer-col > p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-gray);
  font-size: 14px;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-gray);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 10px;
}

.footer-news {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  display: flex;
  gap: 15px;
}

.news-thumb {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3a4a5a 0%, #1a2a3a 100%);
  flex-shrink: 0;
}

.news-content h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-date {
  font-size: 13px;
  color: var(--primary);
}

.footer-bottom {
  padding: 25px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: var(--text-gray);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: var(--text-gray);
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    display: none;
  }

  .hero-right {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  section h2,
  .section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .btn-primary {
    padding: 12px 25px;
    font-size: 13px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
