/* Reset & Base */
:root {
    --bg-color: #050505;
    --surface: #121212;
    --white: #FFFFFF;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --primary: #E50914; /* Mottum Red */
    --primary-hover: #b2070f;
    --border-color: #333333;
    --font-family: 'Inter', sans-serif;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

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

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

.section {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-highlight { color: var(--primary); } /* For user customized highlighting */

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Header */
.header {
    background: rgba(5, 5, 5, 0.9);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: radial-gradient(circle at center, #220000 0%, #050505 70%);
    position: relative;
    overflow: hidden;
    text-align: center; /* Centered Text */
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--white);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    background: rgba(229, 9, 20, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
}

/* Modern Form Styling (Dark) */
.hero-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 20px; /* Centered */
    background: var(--surface);
    padding: 5px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.hero-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.2);
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.hero-form input {
    width: 100%;
    height: 100%;
    padding: 16px 20px 16px 50px;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
    color: var(--white);
}

.hero-form input::placeholder {
    color: #555;
}

.hero-form .btn {
    border-radius: 50px;
    padding: 14px 30px;
    margin-left: 5px;
}

/* WhatsApp Specific */
.whatsapp-form {
    margin-top: 15px;
}

.whatsapp-form .input-wrapper i {
    color: #25D366;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #22c35e;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Partners */
.hero-partners {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.partners-list {
    display: flex;
    gap: 40px;
    color: var(--text-secondary);
    font-size: 1.8rem;
    align-items: center;
    opacity: 0.7;
}

/* Hero Image */
.hero-image {
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Section Cards (Services, Pillars) */
.card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s, border-color 0.3s;
}

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

.card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.card p {
    color: var(--text-secondary);
}

.card .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.section-desc {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
}

.bg-light {
    background-color: #0a0a0a; /* Darker bg for alternate sections */
}

/* Grid Layouts */
.pillars-grid, .services-grid, .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
    position: relative;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 4px solid var(--bg-color);
}

.timeline-content {
    width: 45%;
    background: var(--surface);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-content h3 { color: var(--white); }
.timeline-content p { color: var(--text-secondary); }

/* Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.plan-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.plan-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.15);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--primary);
}

/* Accordion FAQ */
.accordion-item {
    background: var(--surface);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.accordion-item:hover {
    border-color: #444;
}

.accordion-header {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--white);
    font-size: 1.1rem;
}

.accordion-body {
    padding: 0 25px 25px;
    display: none; /* Hidden by default */
    color: var(--text-secondary);
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active .accordion-header {
    color: var(--primary);
}

.accordion-icon {
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

/* Contact Form */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--surface);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: #0a0a0a;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .timeline::before { left: 20px; }
    .timeline-marker { left: 20px; }
    .timeline-content { width: calc(100% - 60px); margin-left: 60px !important; text-align: left !important; }
    .nav { display: none; } /* Simplified for now */
    .hero-form { flex-direction: column; border-radius: 20px; padding: 20px; }
    .hero-form .btn { margin: 10px 0 0 0; width: 100%; }
    .partners-list { flex-wrap: wrap; justify-content: center; }
}
