/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.w3-bar {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Mobile Menu Button */
.circle-btn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #000;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.circle-btn:hover {
    background-color: #333;
    transform: scale(1.1);
}

.circle-btn i {
    font-size: 24px;
}

/* Mobile Navigation Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.9);
    z-index: 100;
}

.mobile-menu-overlay.show {
    display: block;
}

.mobile-menu-content {
    position: relative;
    background-color: white;
    padding: 20px;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.mobile-menu-items a {
    color: #000;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #eee;
}

.mobile-menu-items a:hover {
    background-color: #f5f5f5;
}

@media (min-width: 993px) {
    .circle-btn {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1, .hero-section h2 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section h1 span, .hero-section h2 span {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    white-space: normal;
    max-width: 90vw;
}

/* Team Section */
.team-section {
    margin-top: 40px;
}

/* Company Facts */
.company-facts {
    margin-top: 40px;
}

.fact-box {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.fact-box:hover {
    transform: translateY(-10px);
}

.fact-box i {
    font-size: 3em;
    margin: 15px 0;
    color: #000;
}

.fact-box h3 {
    margin: 15px 0;
    font-weight: 600;
    font-size: 1.4em;
}

.fact-box p {
    color: #666;
    line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
    margin-top: 40px;
}

.expertise-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 25px 20px;
    transition: transform 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    border-left: 4px solid #000;
}

.expertise-box:hover {
    transform: translateY(-5px);
}

.expertise-box i {
    font-size: 2.5em;
    margin: 15px 0;
    color: #000;
}

.expertise-box h4 {
    margin: 15px 0;
    font-weight: 600;
    font-size: 1.2em;
    color: #000;
}

.expertise-box p {
    color: #666;
    line-height: 1.6;
}

.team-member {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f8f9fa;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.team-member h3 {
    margin: 10px 0;
    font-weight: 600;
}

.team-member .position {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

/* Weapons Trade Spotlight */
.weapons-trade-spotlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin: 20px 10px;
    padding: 20px !important;
}

.weapons-feature {
    background: white;
    border-left: 4px solid #000;
    margin-bottom: 20px;
}

.weapons-feature i {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000;
}

.weapons-feature ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.weapons-feature ul li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.weapons-feature ul li:before {
    content: "\F26C";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #000;
}

.icon-medium {
    font-size: 2.5em;
    margin: 15px 0;
    color: #000;
}

/* Feature Boxes */
.feature-box {
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2em;
    margin-bottom: 15px;
    color: #000;
}

.feature-box h3 {
    margin: 10px 0;
    font-weight: 600;
    font-size: 1.4em;
}

/* Contact Form */
.w3-input, .w3-button {
    border-radius: 4px;
    width: 100%;
    max-width: 100%;
}

textarea.w3-input {
    height: 120px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 992px) {
    .w3-third, .w3-quarter {
        width: 50%;
        margin-bottom: 30px;
    }
    
    .hero-section h1 span {
        font-size: 1.8em;
    }
    
    .hero-section h2 span {
        font-size: 1.2em;
    }
}

@media (max-width: 600px) {
    .hero-section {
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .hero-section h1 span {
        font-size: 1.5em;
        padding: 8px 15px;
    }
    
    .hero-section h2 span {
        font-size: 1em;
        padding: 6px 12px;
    }
    
    .w3-third, .w3-quarter {
        width: 100%;
    }
    
    .team-member {
        margin: 10px;
    }
    
    .team-img {
        width: 150px;
        height: 150px;
    }
    
    .weapons-trade-spotlight {
        margin: 10px 0;
        padding: 15px !important;
    }
    
    .w3-content {
        padding: 0 15px;
    }
    
    .feature-box {
        margin: 10px 0;
    }
    
    .w3-padding-64 {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }
}

/* Navigation Responsive */
@media (max-width: 600px) {
    .w3-bar {
        padding: 8px !important;
    }
    
    .w3-bar-item {
        padding: 8px 12px !important;
    }
    
    .w3-right {
        float: none !important;
        width: 100% !important;
    }
    
    .w3-bar .w3-button {
        white-space: normal;
        text-align: left;
        width: 100%;
        margin: 2px 0;
    }
}

/* Container Spacing */
.w3-container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Hover Effects */
.w3-hover-opacity {
    cursor: pointer;
    margin: 0 10px;
}

/* Footer */
footer .w3-button {
    margin: 20px 0;
    border-radius: 25px;
    padding: 12px 24px;
}

footer .w3-xlarge i {
    margin: 0 8px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Pricing Section */
.pricing-boxes {
    margin-top: 40px;
}

.pricing-box {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
    margin-bottom: 30px;
}

.pricing-box.featured {
    transform: scale(1.05);
    border: 2px solid #000;
}

.pricing-box.featured:hover {
    transform: scale(1.08);
}

.pricing-box:hover {
    transform: translateY(-10px);
}

.pricing-box i {
    font-size: 3em;
    margin: 20px 0;
    color: #000;
}

.pricing-box h3 {
    margin: 15px 0;
    font-weight: 600;
    font-size: 1.4em;
}

.pricing-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pricing-box ul li {
    padding: 10px 0 10px 25px;
    position: relative;
}

.pricing-box ul li:before {
    content: "\F26D";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #000;
}

.pricing-info {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.pricing-info .w3-large {
    font-weight: 600;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.pricing-info .w3-button {
    margin-top: 20px;
    padding: 12px 24px;
    font-weight: 500;
}

.pricing-info .w3-button i {
    margin-right: 8px;
}

@media (max-width: 992px) {
    .pricing-box.featured {
        transform: scale(1);
    }
    
    .pricing-box.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 600px) {
    .pricing-box {
        margin: 10px 0;
    }
    
    .pricing-info {
        margin-top: 30px;
        padding: 20px;
    }
    
    .pricing-info .w3-large {
        font-size: 1.5em;
    }
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 80px auto 0;
    padding: 20px;
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 40px;
    font-weight: 600;
    color: #333;
}

.legal-content h3 {
    margin-top: 25px;
    color: #444;
}

.legal-content h4 {
    margin-top: 20px;
    color: #555;
}

.legal-content p {
    margin: 15px 0;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-content ul li {
    margin: 10px 0;
}

.legal-content a {
    color: #000;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #333;
}

@media (max-width: 600px) {
    .legal-content {
        margin-top: 60px;
        padding: 15px;
    }
    
    .legal-content h2 {
        margin-top: 30px;
        font-size: 1.5em;
    }
    
    .legal-content h3 {
        font-size: 1.3em;
    }
}

/* Footer Section */
.footer-section {
    background: #1a1a1a;
    color: #fff;
    position: relative;
    padding: 60px 0 0;
}

.footer-content {
    padding-bottom: 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-section p {
    color: #b3b3b3;
    margin: 10px 0;
    line-height: 1.6;
}

.footer-section i {
    margin-right: 10px;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #111;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-links {
    text-align: center;
    margin-bottom: 15px;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9em;
}

.footer-links a:hover {
    color: #fff;
}

.separator {
    color: #666;
    margin: 0 15px;
}

.copyright {
    text-align: center;
    color: #666;
    margin: 0;
    font-size: 0.9em;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
    z-index: 1000;
}

.scroll-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.scroll-to-top i {
    font-size: 24px;
}

@media (max-width: 600px) {
    .footer-section {
        padding: 40px 0 0;
    }

    .footer-content .w3-third {
        margin-bottom: 30px;
    }

    .footer-section h3 {
        font-size: 1.2em;
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    .separator {
        margin: 0 10px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* About Section Styles */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    margin: 0 auto;
    float: none;
}

.about-intro p {
    max-width: 800px;
    margin: 20px auto;
}

.about-text-section {
    padding: 20px;
    border-left: 3px solid #000;
    margin: 20px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.about-text-section h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-text-section h3 i {
    font-size: 1.2em;
}

.about-text-section p {
    line-height: 1.8;
    color: #444;
}

.team-overview {
    margin-top: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
}

.team-description {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

.team-description p {
    margin: 25px 0;
    line-height: 1.8;
    text-align: left;
}

.team-description strong {
    color: #000;
    font-size: 1.1em;
}

@media (max-width: 600px) {
    .about-text-section {
        margin: 10px 0;
        padding: 15px;
    }

    .team-overview {
        margin-top: 30px;
        padding: 20px 0;
    }

    .team-description {
        padding: 0 15px;
    }
} 