/* Main Styles
------------------------------------------*/
:root {
    --primary-color: #A8E10C;
    --background-color: #0B0D20;
    --accent-color-1: #00FFD5;
    --accent-color-2: #00C2A8;
    --text-color: #FFFFFF;
    --text-secondary: #CCCCCC;
    --border-color: rgba(168, 225, 12, 0.3);
    --shadow-color: rgba(0, 255, 213, 0.2);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color-1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.75rem;
    color: var(--accent-color-1);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--accent-color-1);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

/* Buttons
------------------------------------------*/
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    border-radius: 4px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all var(--transition-speed);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(168, 225, 12, 0.3);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--accent-color-1);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 255, 213, 0.4);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

.btn:hover:before {
    left: 100%;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

/* Header
------------------------------------------*/
.site-header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 13, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    display: block;
}

.contact-phone {
    margin-right: auto;
    margin-left: 2rem;
}

.contact-phone a {
    color: var(--text-color);
    font-weight: 500;
    transition: color var(--transition-speed);
    font-size: 1.1rem;
}

.contact-phone a:hover {
    color: var(--primary-color);
}

.main-navigation .menu-toggle {
    display: none;
}

.main-navigation .menu-icon {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color-1));
    transition: width var(--transition-speed);
}

.nav-menu a:hover:before {
    width: 100%;
}

/* Hero Banner
------------------------------------------*/
.hero-banner {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('../img/SaDPLr.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    padding-top: 5rem;
}

.hero-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(11, 13, 32, 0.9), rgba(11, 13, 32, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color-1);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-cta {
    margin-top: 2.5rem;
}

.hero-cta .btn {
    margin-right: 1rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* About Section
------------------------------------------*/
.about-section {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-image img {
    display: block;
    width: 100%;
    transition: transform 0.6s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section
------------------------------------------*/
.services-section {
    text-align: center;
    position: relative;
}

.services-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color-1), transparent);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color-1));
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color-1);
    box-shadow: 0 15px 30px rgba(0, 255, 213, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(168, 225, 12, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--primary-color);
}

.service-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-description {
    font-size: 0.95rem;
}

/* Features Section
------------------------------------------*/
.features-section {
    background-color: rgba(168, 225, 12, 0.03);
    padding: 6rem 0;
    border-radius: 10px;
}

.section-title-center {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    padding: 1.5rem;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    width: 64px;
    height: 64px;
    background-color: rgba(168, 225, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Contact Form Section
------------------------------------------*/
.contact-section {
    padding: 6rem 0;
    position: relative;
}

.contact-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color-1), transparent);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-info-list {
    list-style: none;
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    margin-right: 1rem;
    color: var(--primary-color);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.form-select option {
    background-color: var(--background-color);
    color: var(--text-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color-1);
    box-shadow: 0 0 0 3px rgba(0, 255, 213, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23A8E10C' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-input {
    margin-right: 0.5rem;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    vertical-align: middle;
}

.checkbox-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-input:checked:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    width: 4px;
    height: 8px;
    border: solid var(--background-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* FAQ Section
------------------------------------------*/
.faq-section {
    padding: 6rem 0;
}

.faq-title {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
    transition: background-color var(--transition-speed);
}

.faq-question label {
    padding: 1.5rem;
    display: block;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    padding: 0;
    padding-right: 1.5rem;
    margin: 0;
}

.faq-question label:after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    background-color: rgba(11, 13, 32, 0.8);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-speed);
}

.faq-toggle:checked ~ .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-toggle:checked ~ .faq-question label:after {
    content: '-';
}

/* Footer
------------------------------------------*/
.site-footer {
    padding: 5rem 0 3rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.legal-links {
    list-style: none;
}

.legal-links li {
    margin-bottom: 0.8rem;
}

.legal-links a {
    color: var(--text-secondary);
    transition: color var(--transition-speed);
}

.legal-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner
------------------------------------------*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 13, 32, 0.95);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    opacity: 0;
    backdrop-filter: blur(10px);
    transition: opacity var(--transition-speed);
    border-top: 1px solid var(--border-color);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0 1rem 0 0;
    font-size: 0.9rem;
}

.btn-cookie {
    padding: 0.6rem 1.2rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-speed);
    white-space: nowrap;
}

.btn-cookie:hover {
    background-color: var(--accent-color-1);
} 