/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Top Bar Styles */
.top-bar {
    background: #8B0000;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

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

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #8B0000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #8B0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

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

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8B0000;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #8B0000;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #8B0000;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(139,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1582139329536-e7284fece509?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #8B0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    animation: fadeInUp 1.4s;
    border: 2px solid #8B0000;
    font-weight: 500;
}

.btn:hover {
    background: #660000;
    border-color: #660000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,0,0,0.3);
}

.btn-white {
    background: white;
    color: #8B0000;
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #8B0000;
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(139,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1582139329536-e7284fece509?w=1600') center/cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
}

/* Stats Section */
.stats {
    background: #f8f9fa;
    padding: 60px 20px;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #8B0000;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #8B0000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.content-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 20px;
    background: white;
}

/* Featured Services */
.featured-services {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #8B0000;
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-link {
    color: #8B0000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #660000;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 20px;
    background: white;
}

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

.feature-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #8B0000;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #8B0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(139,0,0,0.9), rgba(0,0,0,0.9)), 
                url('https://images.unsplash.com/photo-1582139329536-e7284fece509?w=1600') center/cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* About Sections */
.about-section,
.background-section {
    padding: 80px 20px;
}

.about-section {
    background: white;
}

.background-section {
    background: #f8f9fa;
}

/* Commitments Section */
.commitments-section {
    padding: 80px 20px;
    background: #8B0000;
    color: white;
}

.commitments-section .section-title,
.commitments-section .section-subtitle {
    color: white;
}

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

.commitment-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.commitment-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B0000;
    font-size: 28px;
    margin: 0 auto 20px;
}

.commitment-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.commitment-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Service Areas */
.service-areas {
    padding: 80px 20px;
    background: white;
}

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

.area-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.area-card:hover {
    background: #8B0000;
    color: white;
    transform: scale(1.05);
}

.area-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.area-card p {
    line-height: 1.6;
}

/* Summing Up */
.summing-up {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.summing-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Services Detailed Page */
.services-intro,
.services-detailed {
    padding: 80px 20px;
}

.services-intro {
    background: white;
}

.services-detailed {
    background: #f8f9fa;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-detail-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.service-icon-large {
    font-size: 64px;
    margin-bottom: 20px;
}

.service-detail-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8B0000;
}

.service-detail-card > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    color: #666;
    padding: 8px 0;
    line-height: 1.6;
}

/* Women Security Section */
.women-security {
    padding: 80px 20px;
    background: white;
}

/* Training Pages */
.training-intro,
.training-programs {
    padding: 80px 20px;
}

.training-intro {
    background: white;
}

.training-programs {
    background: #f8f9fa;
}

.training-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.training-card-detailed {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.training-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.training-card-detailed h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #8B0000;
}

.training-card-detailed > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.training-points {
    list-style: none;
    margin-top: 15px;
}

.training-points li {
    color: #666;
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.training-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B0000;
    font-weight: bold;
}

/* Selection Process */
.selection-process {
    padding: 80px 20px;
    background: white;
}

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

.selection-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.selection-icon {
    width: 60px;
    height: 60px;
    background: #8B0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.selection-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.selection-card p {
    color: #666;
    line-height: 1.6;
}

/* Special Requirements */
.special-requirements {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.requirement-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Event Security Pages */
.event-intro {
    padding: 80px 20px;
    background: white;
}

.event-questions-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.event-questions-box {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.event-questions-box h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #8B0000;
}

.questions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.question-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #8B0000;
}

.question-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.question-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.event-highlight {
    background: #8B0000;
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.event-highlight p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

/* Event Specialties */
.event-specialties {
    padding: 80px 20px;
    background: white;
}

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

.specialty-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.specialty-card:hover {
    background: #8B0000;
    color: white;
    transform: translateY(-5px);
}

.specialty-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.specialty-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.specialty-card p {
    line-height: 1.8;
}

/* Event Types */
.event-types {
    padding: 80px 20px;
    background: #f8f9fa;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-type-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.event-type-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.event-type-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #8B0000;
    text-align: center;
}

.event-type-card ul {
    list-style: none;
}

.event-type-card ul li {
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.event-type-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B0000;
    font-weight: bold;
}

/* Security Importance */
.security-importance {
    padding: 80px 20px;
    background: white;
}

.importance-content {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.importance-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 18px;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.security-feature-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.security-feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.security-feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Event CTA */
.event-cta {
    padding: 80px 20px;
    background: #f8f9fa;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: #8B0000;
    color: white;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Contact Page */
.contact-info-section {
    padding: 80px 20px;
    background: white;
}

.contact-grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: #8B0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.contact-info-details p {
    color: #666;
    line-height: 1.8;
}

.contact-info-details a {
    color: #8B0000;
    text-decoration: none;
}

.contact-info-details a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-form-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #8B0000;
}

.contact-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
}

/* Service Coverage */
.service-coverage-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.coverage-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.coverage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.coverage-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #8B0000;
}

.coverage-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Contact */
.why-contact {
    padding: 80px 20px;
    background: white;
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-contact-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.why-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.why-contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.why-contact-item p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(rgba(139,0,0,0.9), rgba(0,0,0,0.9)), 
                url('https://images.unsplash.com/photo-1582139329536-e7284fece509?w=1600') center/cover;
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Map Section */
.map-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.map-placeholder {
    background: white;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-placeholder h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8B0000;
}

.map-placeholder p {
    color: #666;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #8B0000;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 32px;
    }

    .hero-content p,
    .page-header p {
        font-size: 16px;
    }

    .content-grid,
    .contact-grid-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .services-grid,
    .services-grid-detailed,
    .training-grid-detailed,
    .commitments-grid,
    .features-grid,
    .event-types-grid,
    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .event-questions-box {
        padding: 30px 20px;
    }

    .cta-box {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1,
    .page-header h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .logo {
        font-size: 16px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
