/* Offensive Development Plugin Styles */
.offensive-dev-container {
  --offensive-white: #000000;
  --offensive-muted: #0b0c0e;
  --offensive-surface: #111216;
  --offensive-text: #ffffff;
  --offensive-text-muted: #b0b5bd;
  --offensive-border: #2a2c31;
  --offensive-primary: #ff8c00;
  --offensive-primary-strong: #e67600;
  --offensive-shadow: 0 8px 24px rgba(0,0,0,0.6);
  --offensive-radius: 12px;
}

.offensive-dev-container * {
  box-sizing: border-box;
}

.site-title-area{
    display: none !important;
}

#wp--skip-link--target{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.offensive-dev-container {
  max-width: 100% !important;
  margin: 0 auto;
  padding: 0 200px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--offensive-text);
  background: var(--offensive-muted);
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .offensive-dev-container {
    padding: 0 50px;
  }
}

/* Hero Section */
.offensive-hero {
  padding: 80px 0;
}

.offensive-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.offensive-hero-title {
  font-size: 40px;
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--offensive-text);
}

.offensive-hero-sub {
  color: var(--offensive-text-muted);
  margin: 0 0 24px;
  max-width: 56ch;
}

.offensive-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.offensive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.offensive-btn-primary {
  background: orange;
  color: #000;
}

.offensive-btn-primary:hover {
  background: orange;
  transform: translateY(-2px);
}

.offensive-btn-ghost {
  background: transparent;
  border: 1px solid var(--offensive-border);
  color: var(--offensive-text);
}

.offensive-btn-ghost:hover {
  border-color: var(--offensive-primary);
  color: var(--offensive-primary);
}

/* Services Section */
.offensive-services {
  padding: 56px 0;
}

.offensive-section-head {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.offensive-section-title {
  font-size: 20px;
  color: var(--offensive-text);
  font-weight: 700;
}

.offensive-section-sub {
  color: var(--offensive-text-muted);
  font-size: 14px;
}

.offensive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offensive-card {
  background: var(--offensive-surface);
  padding: 22px;
  border-radius: var(--offensive-radius);
  box-shadow: var(--offensive-shadow);
  border: 1px solid var(--offensive-border);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.offensive-card:hover {
  transform: translateY(-4px);
  border-color: var(--offensive-primary);
}

.offensive-card h3 {
  margin: 0;
  font-size: 16px;
  color: var(--offensive-text);
}

.offensive-card p {
  margin: 0;
  color: var(--offensive-text-muted);
  font-size: 14px;
}

/* Compliance Section */
.offensive-compliance {
  background: transparent;
  padding: 48px 0;
}

.offensive-compliance-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(20,20,20,0.6), rgba(20,20,20,0.5));
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--offensive-border);
}

.offensive-compliance-box h3 {
  color: var(--offensive-text);
}

.offensive-compliance-box p {
  color: var(--offensive-text-muted);
  margin: 0;
  font-size: 15px;
}

/* Process Section */
.offensive-process {
  padding: 48px 0;
}

.offensive-steps {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.offensive-step {
  flex: 1 1 200px;
  background: var(--offensive-surface);
  padding: 18px;
  border-radius: 10px;
  border: 1px solid var(--offensive-border);
  box-shadow: var(--offensive-shadow);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.offensive-step:hover {
  transform: translateY(-4px);
}

.offensive-step-number {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--offensive-primary), var(--offensive-primary-strong));
  color: black;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

.offensive-step h4 {
  margin: 0;
  font-size: 15px;
  color: var(--offensive-text);
}

.offensive-step p {
  margin: 0;
  color: var(--offensive-text-muted);
  font-size: 13px;
}

/* CTA Section */
.offensive-cta {
  padding: 48px 0;
  display: flex;
  justify-content: center;
}

.offensive-cta-inner {
  background: var(--offensive-surface);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--offensive-border);
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: var(--offensive-shadow);
  flex-wrap: wrap;
}

.offensive-cta-text h3 {
  margin: 0;
  font-size: 18px;
  color: var(--offensive-text);
}

.offensive-cta-text p {
  margin: 0;
  color: var(--offensive-text-muted);
  font-size: 14px;
}

/* Modal */
.offensive-modal {
  max-width: 100%;
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.8);
  padding: 20px;
  z-index: 999999;
}

.offensive-modal.active {
  display: flex;
}

.offensive-modal-card {
  width: 100%;
  max-width: 520px;
  background: var(--offensive-surface);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--offensive-border);
  box-shadow: var(--offensive-shadow);
  background-color: #111216;
  color:white;
}

.offensive-modal-card h3 {
  color: var(--offensive-text);
}

/* Form */
.offensive-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.offensive-form-row label {
  color: var(--offensive-text);
  font-weight: 600;
  font-size: 14px;
}

.offensive-form-row input,
.offensive-form-row textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--offensive-border);
  font-family: inherit;
  background: #000;
  color: #fff;
  font-size: 14px;
}

.offensive-form-row input:focus,
.offensive-form-row textarea:focus {
  outline: none;
  border-color: var(--offensive-primary);
}

#offensive-form-message {
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
}

#offensive-form-message.success {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid #4caf50;
}

#offensive-form-message.error {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid #f44336;
}

/* Responsive */
@media (max-width: 980px) {
  .offensive-hero-grid {
    grid-template-columns: 1fr;
  }
  
  .offensive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .offensive-grid {
    grid-template-columns: 1fr;
  }
  
  .offensive-hero-title {
    font-size: 28px;
  }
  
  .offensive-hero-cta {
    flex-direction: column;
  }
  
  .offensive-btn {
    width: 100%;
  }
  
  .offensive-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}