/* ===== RESET & VARIABLES ===== */
:root {
    --primary-blue: #0A2540;
    --secondary-blue: #1A365D;
    --accent-red: #e31837; /* G4S style red */
    --accent-red-hover: #c4122d;
    --text-light: #F7FAFC;
    --text-muted: #cbd5e1;
    --text-dark: #1e293b;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --bg-card-hover: #27354f;
    --bg-light: #f8fafc;
    --border-color: #334155;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 15px;
}

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent-red);
    color: white;
    border: 2px solid var(--accent-red);
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    border-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(227, 24, 55, 0.3);
}

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

.btn-outline:hover {
    background-color: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-light {
    background-color: white;
    color: var(--primary-blue);
    border: 2px solid white;
}

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

.red { color: var(--accent-red); }

/* ===== HEADER & NAVIGATION ===== */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.top-bar {
    background-color: var(--accent-red);
    padding: 8px 0;
    font-size: 0.85rem;
}

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

.contact-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-info .rc-number {
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.social-links a {
    margin-left: 15px;
    color: white;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon .g {
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
}

.logo-icon .swoosh {
    position: absolute;
    width: 20px;
    height: 10px;
    background: var(--accent-red);
    border-radius: 10px;
    bottom: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon .eye {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.logo-text h1 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: white;
    letter-spacing: -0.5px;
}

.logo-text p {
    margin: 0;
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.logo-text .protocol {
    font-size: 0.55rem;
    opacity: 0.7;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SLIDER SECTION ===== */
.hero-slider {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 7; /* Dynamic wide aspect ratio */
    min-height: 500px;
    max-height: 100vh; /* Appear in full up to screen height */
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%; /* Let images appear completely in full without cropping */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: flex-end;
    padding-bottom: 8%; /* Dynamic padding */
    image-rendering: -webkit-optimize-contrast; /* Increase perceived resolution */
    image-rendering: crisp-edges;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 0;
}

/* Custom Navigation ExpressBit Style */
.slider-nav-custom {
    position: absolute;
    bottom: 30px;
    left: max(20px, calc((100vw - 1200px) / 2 + 20px));
    display: flex;
    gap: 5px;
    z-index: 20;
}

.slider-btn-square {
    width: 40px;
    height: 40px;
    background-color: #3b82f6; /* Blue to match reference */
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1.1rem;
    border-radius: 2px;
}

.slider-btn-square:hover {
    background-color: #2563eb;
}

.slide:not(.active) .fade-in-up {
    opacity: 0 !important;
}

.slide-subheading {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e2e8f0;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.slide-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    font-family: var(--font-heading);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(227, 24, 55, 0.7);
    animation: pulse-red-dot 1.5s infinite;
}

@keyframes pulse-red-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(227, 24, 55, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(227, 24, 55, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(227, 24, 55, 0); }
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero .highlight {
    color: var(--accent-red);
    position: relative;
    display: inline-block;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(227, 24, 55, 0.3);
    z-index: -1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 650px;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(227, 24, 55, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(227, 24, 55, 0.6);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item h4 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0;
    line-height: 1;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--accent-red);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background-color: var(--bg-dark);
    position: relative;
    margin-top: -50px;
    z-index: 20;
}

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

.feature-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: var(--bg-card-hover);
    border-color: var(--accent-red);
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background-color: #0b1121;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-red);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.sector-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.sector-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.sector-list i {
    color: var(--accent-red);
}

.about-image {
    flex: 1;
}

.image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(227,24,55,0.2), transparent);
    z-index: 1;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .img-fluid {
    transform: scale(1.05);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(to right, var(--primary-blue), var(--bg-dark));
    padding: 150px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* ===== SERVICES LIST ===== */
.services-list {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.service-row:hover .service-image img {
    transform: scale(1.05);
}

.service-details {
    flex: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(227, 24, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--accent-red);
}

.service-details h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-details p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-details h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-light);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
}

.benefits-list i {
    color: var(--accent-red);
    margin-top: 5px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(45deg, var(--accent-red), #8c0c1f);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: #070f1d;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.rc-number-footer {
    font-weight: bold;
    color: var(--accent-red);
    margin-bottom: 15px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links h3, .footer-contact h3, .footer-phones h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after, .footer-phones h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-red);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.contact-list i {
    color: var(--accent-red);
    margin-top: 5px;
}

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

.phone-group h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
}

.phone-group p {
    color: var(--text-muted);
    margin-bottom: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .about-content { flex-direction: column; }
    .service-row, .service-row.reverse { flex-direction: column; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-card);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid var(--border-color);
        display: none;
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    
    .footer-grid { grid-template-columns: 1fr; }
    
    .sector-list, .benefits-list { grid-template-columns: 1fr; }
}

/* ===== VISION & MISSION ===== */
.vision-mission { padding: 80px 0; background: linear-gradient(135deg, var(--bg-dark), #0a101d); }
.vm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.vm-card { background: rgba(30, 41, 59, 0.5); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 50px 40px; text-align: center; position: relative; overflow: hidden; backdrop-filter: blur(10px); }
.vm-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary-blue), var(--accent-red)); }
.vm-icon { font-size: 3.5rem; margin-bottom: 25px; background: -webkit-linear-gradient(45deg, var(--accent-red), #ff6b6b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.vm-card h3 { font-size: 1.8rem; margin-bottom: 15px; }
.vm-card p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; }

/* ===== ADVERTS SHOWCASE (GOD-TIER) ===== */
.adverts-showcase { padding: 120px 0; background-color: var(--bg-dark); position: relative; }
.adverts-showcase::after { content:''; position:absolute; top:0; left:0; width:100%; height:1px; background: linear-gradient(90deg, transparent, rgba(227,24,55,0.3), transparent); }
.section-title { margin-bottom: 70px; }
.section-title h2 { font-size: 3rem; background: linear-gradient(to right, #fff, #a5b4fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-title p { font-size: 1.2rem; color: var(--text-muted); }
.advert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.advert-card { background: var(--bg-card); border-radius: 20px; overflow: hidden; transition: var(--transition); border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 20px 40px rgba(0,0,0,0.4); display: flex; flex-direction: column; }
.advert-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 30px 60px rgba(227, 24, 55, 0.15); border-color: rgba(227, 24, 55, 0.3); }
.ad-image-placeholder { height: 250px; background: linear-gradient(45deg, #0f172a, #1e293b); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.ad-image-placeholder.dark { background: linear-gradient(45deg, #020617, #0f172a); }
.ad-image-placeholder.shield { background: linear-gradient(45deg, #2a0a10, #1a0505); }
.ad-image-placeholder i { font-size: 7rem; color: rgba(255,255,255,0.03); position: absolute; transform: scale(1); transition: transform 0.8s ease; }
.advert-card:hover .ad-image-placeholder i { transform: scale(1.2); color: rgba(227, 24, 55, 0.1); }
.ad-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 0%, rgba(15,23,42,0.8) 100%); }
.ad-content { padding: 40px 30px; flex: 1; display: flex; flex-direction: column; }
.badge { background: rgba(227, 24, 55, 0.1); color: var(--accent-red); padding: 6px 12px; border-radius: 30px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; display: inline-block; border: 1px solid rgba(227, 24, 55, 0.2); align-self: flex-start; }
.ad-content h4 { font-size: 1.5rem; line-height: 1.4; margin-bottom: 15px; color: #fff; }
.ad-content p { color: var(--text-muted); font-size: 1rem; margin-bottom: 25px; line-height: 1.7; flex: 1; }
.ad-features { margin-top: auto; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
.ad-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.95rem; color: #e2e8f0; font-weight: 500; }
.ad-features i { color: var(--accent-red); font-size: 1.1rem; }
.text-center { text-align: center; }

/* ===== UTILITY & REFACTORED CLASSES ===== */
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.btn-full-width { width: 100%; padding: 15px; font-size: 1.1rem; }

/* Contact Form Styles */
.contact-section-bg { padding: 100px 0; background: linear-gradient(135deg, var(--bg-dark), #0f172a); border-top: 1px solid rgba(255,255,255,0.05); }
.contact-wrapper-flex { display: flex; flex-wrap: wrap; gap: 60px; align-items: center; }
.contact-text-box { flex: 1; min-width: 300px; }
.section-subtitle { color: var(--accent-red); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.section-title-contact { font-size: 2.8rem; margin-bottom: 20px; }
.section-desc-contact { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; }
.contact-form-box { flex: 1; min-width: 300px; background: var(--bg-card); padding: 40px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.form-label { display: block; margin-bottom: 8px; color: var(--text-light); font-weight: 500; }
.form-input { width: 100%; padding: 15px; border-radius: 8px; border: 1px solid var(--border-color); background: rgba(0,0,0,0.2); color: #fff; outline: none; transition: border-color 0.3s; }
.form-input:focus { border-color: var(--accent-red); }

/* Alerts */
.alert { padding: 15px; border-radius: 8px; margin-bottom: 20px; font-weight: 600; }
.alert-success { background: rgba(46, 204, 113, 0.1); color: #2ecc71; border: 1px solid #2ecc71; }
.alert-error { background: rgba(231, 76, 60, 0.1); color: #e74c3c; border: 1px solid #e74c3c; }

/* Services Page Styles */
.service-image-box { background: #fff; padding: 20px; border-radius: 16px; }
.training-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 20px; }
.training-gallery-img { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }

/* About Page Gallery */
.about-gallery-item { height: 400px; border-radius: 16px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }
.about-gallery-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px 20px 20px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); }
.about-gallery-title { color: #fff; margin: 0 0 5px 0; font-size: 1.2rem; }
.about-gallery-desc { color: var(--accent-red); font-size: 0.9rem; margin: 0; font-weight: 600; }
