/* Page Header */
.page-header {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

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

.stats-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-inline-item {
    text-align: center;
}

.stat-inline-item h3 {
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 0.5rem;
}

/* Timeline */
.timeline-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.timeline-section h2 {
    font-size: 2.5rem;
    color: #001f3f;
    text-align: center;
    margin-bottom: 1rem;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #001f3f;
}

.timeline-content h4 {
    color: #001f3f;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #666;
}

/* Global Section */
.global-section {
    padding: 4rem 0;
}

.global-section h2 {
    font-size: 2.5rem;
    color: #001f3f;
    text-align: center;
    margin-bottom: 3rem;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.global-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #001f3f;
}

.global-card h3 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 0.5rem;
}

.global-content {
    max-width: 900px;
    margin: 0 auto;
}

.global-content h3 {
    color: #001f3f;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.global-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Product Detail */
.product-detail {
    padding: 4rem 0;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.product-hero img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-info h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 1rem;
}

.product-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.product-specs {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.product-specs h3 {
    color: #001f3f;
    margin-bottom: 1rem;
}

.product-specs ul {
    list-style: none;
}

.product-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.product-specs li:last-child {
    border-bottom: none;
}

/* Service Cards */
.service-detail {
    padding: 4rem 0;
}

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

.service-card-detail {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 4px solid #001f3f;
}

.service-card-detail h3 {
    color: #001f3f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card-detail ul {
    list-style: none;
}

.service-card-detail li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.service-card-detail li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #001f3f;
    font-weight: bold;
}

/* Contact Form */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    color: #001f3f;
    margin-bottom: 1rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: #001f3f;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: #001f3f;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #003366;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-grid,
    .product-hero,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }
    
    .stats-inline {
        grid-template-columns: 1fr;
    }
}

/* Video Styling */
.product-video video,
.content-video video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-video,
.content-video {
    position: relative;
}


/* Events Page Styling */
.event-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 4rem;
    overflow: hidden;
    border-top: 5px solid #001f3f;
}

.event-content {
    padding: 3rem;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-badge {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-location {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.event-card h2 {
    color: #001f3f;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.event-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.event-highlights {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    border-left: 4px solid #001f3f;
}

.event-highlights h3 {
    color: #001f3f;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.event-highlights ul {
    list-style: none;
    padding: 0;
}

.event-highlights li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.event-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #001f3f;
    font-weight: bold;
    font-size: 1.2rem;
}

.event-video {
    margin: 3rem 0;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.event-video video {
    width: 100%;
    display: block;
    max-height: 600px;
}

.video-caption {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    margin: 0;
    color: #666;
    font-style: italic;
    text-align: center;
    border-top: 2px solid #e0e0e0;
}

.event-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,31,63,0.2);
}

.stat-box h4 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 700;
}

.stat-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin: 0;
}

.events-cta {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
}

.events-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.events-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive Events */
@media (max-width: 768px) {
    .event-content {
        padding: 2rem 1.5rem;
    }
    
    .event-card h2 {
        font-size: 1.8rem;
    }
    
    .event-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-box h4 {
        font-size: 2.5rem;
    }
    
    .event-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
