/* ==========================================================================
   BE AWARE Self Defense - Global Styles (Dark Mode)
   ========================================================================== */

:root {
    --primary-rose: #D86A87; /* Soft but confident pink/red */
    --rose-hover: #c45572;
    --dark-charcoal: #151515; /* Replaces light-gray for cards/sections */
    --black: #000000; /* Main background replacing white */
    
    --text-body: #E0E0E0; /* Light text for dark bg */
    --text-heading: #FFFFFF; /* Pure white for headings */
    
    --rose-light: #2A171D; /* Highly toned down rose background for dark theme */
    --border-color: #333333;
    
    --font-primary: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 15px 35px rgba(216, 106, 135, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--black); /* Black background */
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; letter-spacing: -1px; }
h2 { font-size: 2.5rem; letter-spacing: -0.5px; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light { background-color: var(--dark-charcoal); }
.bg-rose { background-color: var(--rose-light); }
.bg-charcoal { background-color: #0c0c0c; } /* Even darker section */

.text-center { text-align: center; }
.text-rose { color: var(--primary-rose); }

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-0 { margin-bottom: 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 700;
    border-radius: 50px; 
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 1.1rem;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-rose);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(216, 106, 135, 0.3);
}

.btn-primary:hover {
    background-color: var(--rose-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-charcoal {
    background-color: var(--dark-charcoal);
    border: 1px solid var(--border-color);
    color: #FFFFFF;
}

.btn-charcoal:hover {
    background-color: #222;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-rose);
    color: var(--primary-rose);
}

.btn-outline:hover {
    background-color: var(--primary-rose);
    color: #FFFFFF;
}

.w-100 { width: 100%; }

/* Header & Navigation */
.header {
    background-color: var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(0,0,0,0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

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

.logo {
    height: 80px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--text-body);
    font-weight: 600;
    font-size: 1.05rem;
}

.nav-link:hover {
    color: var(--primary-rose);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--text-heading);
    cursor: pointer;
    background: none;
    border: none;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-charcoal);
    border-top: 1px solid var(--border-color);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
    z-index: 1000;
    gap: 15px;
}

.mobile-sticky-cta .btn {
    flex: 1;
    padding: 14px 10px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px;
    min-height: 70vh; /* Reduced slightly since no bg image */
    display: flex;
    align-items: center;
    background-color: var(--black);
}

/* Removed hero-bg and hero-overlay since user wants no pictures */

.hero-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background-color: var(--rose-light);
    color: var(--primary-rose);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    border: 1px solid rgba(216, 106, 135, 0.2);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: var(--black);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-rose);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--rose-light);
    color: var(--primary-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Full width section if image is removed */
.centered-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.split-image {
    display: none; /* Removing pictures */
}

.list-check li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-body);
}

.list-check li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-rose);
    font-size: 1.2rem;
}

/* Pricing Card */
.pricing-card {
    background-color: var(--black);
    border: 2px solid var(--primary-rose);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-rose);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1;
    margin: 20px 0;
}

.price span {
    font-size: 1.2rem;
    color: #888;
    font-weight: 500;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-rose);
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(216, 106, 135, 0.4);
}


/* Contact Form */
.contact-wrapper {
    background-color: var(--black);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.contact-info {
    background-color: var(--rose-light);
    padding: 50px;
}

.contact-form-container {
    padding: 50px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-heading);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background-color: var(--dark-charcoal);
    color: var(--text-body);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-rose);
    background-color: #000;
    box-shadow: 0 0 0 4px rgba(216, 106, 135, 0.2);
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .split-section, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .hero { min-height: auto; padding: 100px 0; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .desktop-only { display: none !important; }
    .hamburger { display: block; }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-charcoal);
        box-shadow: var(--shadow-soft);
        padding: 20px;
        flex-direction: column;
        display: none;
    }
    
    .nav-menu.active { display: flex; }
    .nav-list { flex-direction: column; width: 100%; text-align: center; gap: 20px; }
    
    body { padding-bottom: 80px; }
    .mobile-sticky-cta { display: flex; }
    
    .contact-info, .contact-form-container { padding: 30px; }
}
