/* Base Styles */
:root {
    --header-height: 600px;
    --mobile-header-height: 300px;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
}

.header-container {
    position: relative;
    width: 100%;
    height: var(--header-height);
    min-height: 900px;
    overflow: hidden;
    background-color: #000;
}

/* Desktop Header Styles */
.desktop-header {
    position: relative;
    width: 1440px;
    height: 880px;
    max-height: 880px;
    max-width: 1440px;
    margin: 0 auto;
    z-index: 0;
}

.mobile-header {
    display: none;
    position: relative;
    width: 100%;
    height: var(--mobile-header-height);
    background-color: #000;
    justify-content: center;
    align-items: center;
}

/* Animation Elements */
.animation-element {
    position: absolute;
    opacity: 0;
}

/* About Section Styles */
.about-section {
    padding: 8em 0;
    background-image: url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.about-mission, .about-vision {
    flex: 1;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-mission:hover, .about-vision:hover {
    transform: translateY(-5px);
}

.about-content h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #d4af37; /* Gold color */
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.services-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.services-text {
    flex: 1;
    min-width: 0;
}

.services-text h3 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 15px;
}

.services-text h4 {
    font-size: 1.5rem;
    color: #d4af37; /* Gold color */
    margin-bottom: 25px;
    font-weight: 600;
}

.services-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.services-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.feature {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.feature h5 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
    margin-bottom: 0;
}

.cta {
    text-align: center;
    padding: 25px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #222;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #d4af37;
    color: #222;
}

.services-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.03);
}
/* Contact Section Styles */
.contact-section {
    position: relative;
    padding: 80px 0;
    background-image: url('../images/security-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.contact-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.contact-info {
    flex: 1;
    padding: 30px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #d4af37; /* Gold color */
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.2rem;
    color: #d4af37;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.contact-form {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 8px;
    color: #333;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #222;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #d4af37;
    color: #222;
}

/* Footer Styles */
.footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}
/* Image Elements */
.image-1 {
    top: 0;
    left: 0;
    width: 1440px;
    height: 880px;
    background-image: url('../images/image-1.jpg');
    background-size: cover;
    background-position: center;
    z-index: -50;
    transform: translateX(-100%);
}

.image-2 {
    top: 0;
    right: 0;
    width: 465px;
    height: 568px;
    background-image: url('../images/image-2.gif');
    background-size: cover;
    background-position: center;
    z-index: -30;
    transform: translateX(100%);
}

.image-3 {
    bottom: 0;
    right: 0;
    width: 673px;
    height: 337px;
    background-image: url('../images/image-3.jpg');
    background-size: cover;
    background-position: center;
    z-index: -50;
}

.black-mask {
    top: 0;
    right: 0;
    width: 465px;
    height: 142px;
    background-image: url('../images/black-mask.svg');
    z-index: -40;
    transform: translateY(-100%);
}

.white-mask {
    top: 0;
    left: 0;
    width: 716px;
    height: 100%;
    max-height: 297px;
    background-image: url('../images/white-mask.svg');
    background-repeat: no-repeat;
    z-index: -40;
    transform: translateY(-100%);
}

/* Content Elements */
.header-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.logo {
    position: absolute;
    right: 390px;
    width: 150px;
    height: 170px;
    margin-bottom: 30px;
}

.logo img {
    width: 100%;
    height: auto;
}

.motto {
    position: absolute;
    left: 60px;
    top: 60px;
    width: 296px;
    text-align: left;
    color: white;
    margin-bottom: 40px;
    z-index: -20;
}

.motto span {
    display: block;
    font-weight: 700;
}

.motto span:first-child {
    font-size: 3rem;
    margin-bottom: 10px;
}

.motto span:last-child {
    font-size: 1.5rem;
}

.menu {
    position: absolute;
    top: 560px;
    right: 195px;
    z-index: 0;
}

.menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.menu a:hover {
    color: #ccc;
}

/* Mobile Elements */
.mobile-logo {
    width: 120px;
    height: 120px;
}

.mobile-logo img {
    width: 100%;
    height: auto;
}

.burger-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromLeft {
    from { 
        transform: translateX(-100%);
        opacity: 0;
    }
    to { 
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from { 
        transform: translateX(100%);
        opacity: 0;
    }
    to { 
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    from { 
        transform: translateY(-100%);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-on {
    animation: fadeIn 1s ease-in-out forwards;
}

.slide-in-left {
    animation: slideInFromLeft 1s ease-out forwards;
}

.slide-in-right {
    animation: slideInFromRight 1s ease-out forwards;
}

.slide-in-top {
    animation: slideInFromTop 1s ease-out forwards;
}

@media (max-width: 992px) {
    .menu {
        position: absolute;
        top: 650px;
        left: 335px;
        z-index: 0;
    }

    .logo {
        position: absolute;
        left: 390px;
        width: 250px;
        height: 170px;
        margin-bottom: 30px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        height: var(--mobile-header-height);
    }
    
    .desktop-header {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    
    .mobile-logo {
        animation: fadeIn 1.5s ease-in-out forwards;
    }
    .about-section {
        padding: 60px 20px;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-mission, .about-vision {
        width: 100%;
        padding: 25px;
    }
    
    .about-content h3 {
        font-size: 1.3rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    .services-content {
        flex-direction: column;
    }
    
    .services-images {
        order: -1; /* Images come first on mobile */
        margin-bottom: 40px;
    }
    
    .services-features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        text-align: center;
    }

    .contact-content {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-info {
        text-align: center;
        padding: 20px 0;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-text h3 {
        font-size: 1.5rem;
    }
    
    .services-text h4 {
        font-size: 1.3rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    .contact-section {
        padding: 60px 20px;
        background-attachment: scroll;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}