:root {
  --color-bg: #f8fbff;
  --color-text: #505c6e;
  --color-heading: #2c3e50;
  --color-primary: #4a90e2;
  --color-primary-light: #e6f0fa;
  --color-secondary: #ffffff;
  --color-accent: #38b2ac;
  --color-border: #e1e8ed;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --transition: all 0.3s ease;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-header: 0 2px 10px rgba(0, 0, 0, 0.03);
  --radius-card: 12px;
  --radius-btn: 50px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-header);
  display: flex;
  align-items: center;
}

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

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.logo-main {
  color: var(--color-heading);
}

.logo-sub {
  color: var(--color-primary);
}

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

.nav-list a {
  color: var(--color-heading);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition);
}

.nav-list a:hover {
  color: var(--color-primary);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-heading);
  transition: var(--transition);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url('hero-bg.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  /* Light overlay to keep text readable */
  z-index: 0;
}

.hero::after {
  display: none;
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

/* ... existing styles ... */

/* Services Section */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--color-heading);
  margin-bottom: 60px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.6;
}

/* Private Security Consulting Section */
.security-support {
  background-color: #0d1b2a;
  /* Deep Navy */
  color: #fff;
  padding: 100px 0;
  position: relative;
}

.security-support .section-title {
  color: #fff;
  margin-bottom: 10px;
}

.security-support .section-subtitle {
  color: #8b9bb4;
  margin-bottom: 60px;
}

.security-intro {
  text-align: center;
  margin-bottom: 80px;
  line-height: 2.2;
  font-size: 1.1rem;
  color: #e0e6ed;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Workflow */
.security-workflow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.workflow-step {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: #1b263b;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
  margin-bottom: -15px;
  position: relative;
  z-index: 0;
}

.workflow-step h3 {
  font-size: 1.3rem;
  color: #4facfe;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.workflow-step p {
  color: #b0c4de;
  font-size: 0.95rem;
  line-height: 1.6;
}

.workflow-arrow {
  width: 40px;
  height: 2px;
  background: #4facfe;
  margin-top: 50px;
  position: relative;
}

.workflow-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #4facfe;
  border-right: 2px solid #4facfe;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .workflow-arrow {
    display: none;
  }

  .security-workflow {
    flex-direction: column;
    align-items: center;
  }

  .workflow-step {
    margin-bottom: 30px;
  }
}

/* Pricing Table - Sophisticated Dark Mode */
.pricing-table {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto 80px;
}

.price-card {
  background: #1b263b;
  border: 1px solid #30475e;
  border-radius: 8px;
  /* Sharper corners */
  padding: 50px 40px;
  flex: 1;
  min-width: 320px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  border-color: #4facfe;
  transform: translateY(-5px);
}

.price-card.recommended {
  background: #23314e;
  border: 2px solid #4facfe;
  box-shadow: 0 0 30px rgba(79, 172, 254, 0.15);
  z-index: 2;
  transform: scale(1.05);
}

.price-card.recommended:hover {
  transform: scale(1.05) translateY(-5px);
}

.badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(to right, #4facfe, #00f2fe);
  color: #fff;
  padding: 6px 20px;
  border-radius: 4px;
  /* More formal */
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.price-desc {
  color: #8b9bb4;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  font-family: 'Roboto', sans-serif;
  /* Cleaner font for numbers if available, else works */
}

.price-amount .currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 5px;
  color: #4facfe;
}

.price-amount .period {
  font-size: 1rem;
  color: #8b9bb4;
  font-weight: normal;
  margin-left: 5px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  text-align: left;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid #30475e;
  color: #e0e6ed;
  font-size: 0.95rem;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features .highlight {
  color: #4facfe;
  font-weight: bold;
}

.btn-outline {
  display: inline-block;
  padding: 14px 35px;
  border: 1px solid #4facfe;
  color: #4facfe;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.btn-outline:hover {
  background: rgba(79, 172, 254, 0.1);
  color: #fff;
  border-color: #fff;
}

/* FAQ */
.security-faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #1b263b;
  border-radius: 6px;
  margin-bottom: 20px;
  padding: 25px;
  border-left: 4px solid #4facfe;
}

.faq-q {
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.faq-a {
  color: #b0c4de;
  font-size: 0.95rem;
  line-height: 1.6;
}

.services {
  background-color: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card .service-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 30px;
  display: inline-block;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  color: var(--color-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-card p {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Works Section */
.works {
  background-color: #ffffff;
}

.works-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--color-text);
}

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

.work-card {
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-decoration: none;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.work-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.work-info {
  padding: 20px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.work-info h3 {
  font-size: 1.1rem;
  color: var(--color-heading);
  margin-bottom: 5px;
}

.work-info p {
  font-size: 0.9rem;
  color: #888;
}

.works-btn-wrapper {
  text-align: center;
}

/* Company */
.company {
  background-color: var(--color-bg);
}

.company-info {
  background-color: #ffffff;
  padding: 60px;
  border-radius: var(--radius-card);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.company-info dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
}

.company-info dt {
  color: var(--color-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
}

.company-info dt::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
  margin-right: 10px;
}

.company-info dd {
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 24px;
}

.company-info dd:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Contact */
.contact {
  background-color: #ffffff;
}

.contact-text {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-bg);
  padding: 50px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--color-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-heading);
  font-family: inherit;
  transition: var(--transition);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-form button {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
  background-color: var(--color-heading);
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    width: 80%;
    background-color: #ffffff;
    padding: 60px 40px;
    transform: translateX(100%);
    transition: var(--transition);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .nav-list a {
    font-size: 1.2rem;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .company-info {
    padding: 30px;
  }

  .company-info dl {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .company-info dt {
    margin-top: 20px;
  }

  .company-info dt:first-child {
    margin-top: 0;
  }

  .company-info dd {
    padding-bottom: 20px;
  }

  .contact-form {
    padding: 30px;
  }
}