/* Base Styles */
:root {
    --primary: #DC2F02;
    --primary-dark: #9D0208;
    --secondary: #F48C06;
    --dark: #03071E;
    --light: #F8F9FA;
    --gray: #6C757D;
    --gradient: linear-gradient(135deg, #DC2F02 0%, #F48C06 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #121212;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

h1, h2, h3, h4 {
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h1 span {
    color: var(--secondary);
    display: inline;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
    position: relative;
}

h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    color: var(--light);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Header */
header {
    background-color: rgba(3, 7, 30, 0.95);
    backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

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

.logo-icon {
    margin-right: 0.75rem;
}

.logo span {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--light);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu li a {
    color: var(--light);
    font-weight: 500;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--secondary);
}

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

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 21px;
    position: relative;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 9px;
}

.menu-icon span:nth-child(3) {
    top: 18px;
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background-color: #121212;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(220, 47, 2, 0.15) 0%, rgba(3, 7, 30, 0) 25%),
        radial-gradient(circle at 80% 70%, rgba(244, 140, 6, 0.15) 0%, rgba(3, 7, 30, 0) 25%);
}

.hero-content {
    flex: 0 0 100%;
    max-width: 600px;
    padding: 0 2rem;
    color: var(--light);
    z-index: 1;
    margin: 0 auto;
    text-align: center;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 100%;
}

.primary-btn {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(220, 47, 2, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(220, 47, 2, 0.3);
    color: white;
}

.secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

/* Info Sections */
.info-section {
    padding: 6rem 0;
}

.dark-section {
    background-color: #121212;
    color: var(--light);
}

.light-section {
    background-color: #181818;
    color: var(--light);
}

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

.content-grid.reversed {
    direction: rtl;
}

.content-grid.reversed > * {
    direction: ltr;
}

.text-content p {
    color: rgba(255, 255, 255, 0.8);
}

.visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.feature {
    background-color: rgba(3, 7, 30, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.feature p {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
footer {
    background-color: rgba(3, 7, 30, 0.95);
    padding: 3rem 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-icon {
    margin-right: 1rem;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--light);
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 7rem 0 4rem;
    }

    .menu-icon {
        display: block;
        z-index: 101;
    }

    .nav-menu {
        position: fixed;
        flex-direction: column;
        background: var(--dark);
        width: 80%;
        max-width: 300px;
        height: 100vh;
        top: 0;
        right: -100%;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        z-index: 100;
    }

    #menu-toggle:checked ~ .nav-menu {
        right: 0;
    }

    #menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    #menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .header-container {
        width: 95%;
    }

    .container {
        width: 95%;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}
