/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    background-color: #000000;
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input, textarea {
    font-family: 'Roboto', sans-serif;
}

/* Loading Animation */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s;
}

.loading-logo {
    width: 100px;
    height: 100px;
    animation: rotate 1s infinite linear;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    transition: background 0.3s;
    z-index: 1000;
}

header.solid {
    background: rgba(0, 0, 0, 1);
}

.logo {
    color: #FF0000;     
    width: 75px;
    height: 75px;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0 100px;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FF0000;
}

.cta {
    margin-left: 20px;
    padding: 10px 20px;
    background: #FF0000;
    color: #FFFFFF;
    border-radius: 5px;
    transition: box-shadow 0.3s;
}

.cta:hover {
    box-shadow: 0 0 10px #FF0000;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('./img/hero-background.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: #FFFFFF;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    text-shadow: 2px 2px 4px #FF0000;
}

.hero p {
    font-size: 24px;
    text-shadow: 1px 1px 2px #FF0000;
}

.hero-buttons {
    margin-top: 20px;
}

.btn {
    margin: 10px;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    transition: box-shadow 0.3s;
}

.btn-primary {
    background: #FF0000;
    color: #FFFFFF;
}

.btn-primary:hover {
    box-shadow: 0 0 10px #FF0000;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #FF0000;
    color: #FF0000;
}

.btn-secondary:hover {
    box-shadow: 0 0 10px #FF0000;
}

/* Section Styles */
section {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Our Features Section */
.our-features {
    padding: 50px 20px;
    background: #1a1a1a;
    color: #FFFFFF;
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-text {
    flex: 1;
    text-align: left;
    padding: 10px 50px;
}

.feature-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #FF0000;
}

.feature-text p {
    font-size: 16px;
    color: #808080;
    line-height: 1.6;
}

.feature-image {
    flex: 1;
    text-align: center;
}

.feature-image img {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-container {
        flex-direction: column;
    }

    .feature-text {
        text-align: center;
    }

    .feature-text h2 {
        font-size: 28px;
    }

    .feature-text p {
        font-size: 14px;
    }

    .feature-image img {
        max-width: 100%;
    }
}

/* Features Section */
.features {
    padding: 50px 20px;
    text-align: center;
    background: #1a1a1a;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px #FF0000;
}

.feature-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 15vw;
}

.feature-box {
    background: #2c2c2c;;
    padding: 20px 40px;
    border-radius: 10px;
    width: 30%;
    min-height: 35vh;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 10px #FF0000;
}

.feature-box .icon {
    width: 80px;
    height: 80px;
    /*background: #FF0000;*/
    margin-bottom: 20px;
    border-radius: 1%;
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 16px;
    color: #808080;
}

/* About Us Section */
.about-us {
    padding: 50px 20px;
    background: #1a1a1a;
    color: #FFFFFF;
    text-align: center;
}

.about-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px #FF0000;
}

.about-header p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #808080;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 40px;
}

.mission-statement {
    width: 50%;
    text-align: left;
}

.mission-statement h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px #FF0000;
}

.mission-statement p {
    font-size: 16px;
    color: #808080;
    line-height: 1.6;
}

.video-wrapper {
    width: 50%;
}

.video-wrapper iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 10px;
}

.team {
    margin-top: 40px;
}

.team h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px #FF0000;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.team-member {
    background: #2c2c2c;
    padding: 20px;
    min-width: 20%;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 10px #FF0000;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 14px;
    color: #808080;
}

/* Customer Support Section */
.customer-support {
    padding: 50px 20px;
    text-align: center;
    min-height: 20vh !important;
}

.customer-support h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px #FF0000;
    border-bottom: 2px solid #FF0000;
    display: inline-block;
    padding-bottom: 10px;
}

.support-content {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.contact-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 2px solid transparent;
    background: #1a1a1a;
    color: #FFFFFF;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #FF0000;
}

.faq {
    width: 40%;
    text-align: left;
}

.faq .question {
    cursor: pointer;
    padding: 10px;
    background: #1a1a1a;
    border: 2px solid transparent;
    margin-bottom: 10px;
    transition: border-color 0.3s;
}

.faq .question:hover {
    border-color: #FF0000;
}

.faq .answer {
    display: none;
    padding: 10px;
    background: #1a1a1a;
    color: #808080;
}

.faq .question.active + .answer {
    display: block;
}

/* Pricing Section */
.pricing {
    padding: 50px 20px;
    text-align: center;
    background: #1a1a1a;
}

.pricing h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px #FF0000;
}

.pricing-tables {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-table {
    background: #2c2c2c;
    padding: 30px 20px;
    border-radius: 10px;
    width: 30%;
    min-width: 280px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.pricing-table:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #FF0000;
}

.pricing-table.best-value {
    border: 2px solid #FF0000;
}

.pricing-table .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FF0000;
    color: #FFFFFF;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
}

.pricing-table h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FF0000;
}

.pricing-table .price {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.pricing-table ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-table ul li {
    font-size: 16px;
    color: #808080;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.pricing-table ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #FF0000;
}

.pricing-table .btn-primary {
    width: 100%;
    padding: 10px;
}

/* Footer */
footer {
    padding: 20px;
    background: #000000;
    color: #FFFFFF;
    text-align: center;
    border-top: 2px solid #FF0000;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.footer-column {
    text-align: left;
    width: 30%;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #FF0000;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: box-shadow 0.3s;
}

.social-icon img {
    width: 100%;
    border-radius: 50%;
}

.social-icon:hover {
    box-shadow: 0 0 10px #FF0000;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #FF0000;
    color: #FFFFFF;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

#back-to-top:hover {
    box-shadow: 0 0 10px #FF0000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-boxes {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        flex-direction: column;
    }

    .about-content img, .about-content .text {
        width: 100%;
    }

    .support-content {
        flex-direction: column;
    }

    .contact-form, .faq {
        width: 100%;
    }

    .pricing-tables {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
    }
}

/* Shine */
.shine {
    animation: shine-animation 1s ease-out;
}

@keyframes shine-animation {
    0% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0);
    }
}