/* Global Styles */
:root {
    --bg-color: #101820;
    --primary-color: #F2AA4C;
    --secondary-color: #3A6B35;
    --cta-color: #DB504A;
    --text-color: #FFFFFF;
    --text-light: #D3D3D3;
    --transition: all 0.3s ease;
    --border-radius: 2rem;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--text-color);
}

ul {
    list-style: none;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--bg-color), var(--secondary-color));
    margin: 0 auto;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(16, 24, 32, 0.9);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
}

.logo a span {
    position: relative;
    display: inline-block;
}

.logo a span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.logo a:hover span::after {
    width: 100%;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin: 0 15px;
    display: flex;
    align-items: center;
}

.main-nav ul li a {
    color: var(--text-light);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

.main-nav ul li a.cta-button {
    background-color: var(--cta-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    animation: none;
    opacity: 1;
}

.main-nav ul li a.cta-button:hover {
    background-color: var(--text-color);
    color: var(--cta-color);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    padding: 0;
}

.menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    animation: fadeIn 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
    animation: fadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-color), var(--secondary-color) 70%, var(--bg-color) 100%);
    opacity: 0.3;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: var(--text-color);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    animation: fadeIn 1s ease-out 1s forwards;
    opacity: 0;
}

.thank-you-content .cta-button {
    animation: none;
    opacity: 1;
}

.cta-button:hover {
    background-color: var(--text-color);
    color: var(--cta-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, var(--bg-color), rgba(58, 107, 53, 0.1), var(--bg-color));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, var(--bg-color), rgba(242, 170, 76, 0.05), var(--bg-color));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(16, 24, 32, 0.8);
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.service-image {
    width: 100%;
    height: 200px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
}

/* Why Choose Us Section */
.why-us-section {
    background: linear-gradient(to bottom, var(--bg-color), rgba(58, 107, 53, 0.1), var(--bg-color));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: rgba(16, 24, 32, 0.8);
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.benefit-icon.certification {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2AA4C"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z"/></svg>');
}

.benefit-icon.experience {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2AA4C"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>');
}

.benefit-icon.confidentiality {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2AA4C"><path d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"/></svg>');
}

.benefit-icon.customization {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2AA4C"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></svg>');
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(to bottom, var(--bg-color), rgba(242, 170, 76, 0.05), var(--bg-color));
}

.testimonial-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    background-color: rgba(16, 24, 32, 0.8);
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text blockquote {
    font-style: italic;
    color: var(--text-light);
    position: relative;
    padding: 0 30px;
}

.testimonial-text blockquote::before,
.testimonial-text blockquote::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
}

.testimonial-text blockquote::before {
    left: 0;
    top: -10px;
}

.testimonial-text blockquote::after {
    right: 0;
    bottom: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-info {
    margin-left: 15px;
    text-align: left;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonial-navigation {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-form {
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-light);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.nav-dot.active, 
.nav-dot:hover {
    background-color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom, var(--bg-color), rgba(58, 107, 53, 0.1), var(--bg-color));
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-table {
    background-color: rgba(16, 24, 32, 0.8);
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.pricing-table:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.pricing-table.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--box-shadow);
}

.pricing-table.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-header {
    text-align: center;
    padding: 30px;
    background-color: rgba(58, 107, 53, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-color);
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(58, 107, 53, 0.2);
    color: var(--text-light);
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-footer {
    text-align: center;
    padding: 0 30px 30px;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(to bottom, var(--bg-color), rgba(242, 170, 76, 0.05), var(--bg-color));
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-form {
    width: 100%;
}

.faq-question {
    width: 100%;
    text-align: left;
    background-color: rgba(16, 24, 32, 0.8);
    color: var(--text-color);
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover, 
.faq-question.active {
    color: var(--primary-color);
}

.toggle-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.toggle-icon::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
}

.toggle-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
}

.faq-question.active .toggle-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(16, 24, 32, 0.6);
    transition: max-height 0.5s ease;
}

.faq-answer.active {
    max-height: 300px;
    padding: 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Form Section */
.contact-section {
    background: linear-gradient(to bottom, var(--bg-color), rgba(58, 107, 53, 0.1), var(--bg-color));
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info {
    padding: 20px 0;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-item {
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-item strong {
    color: var(--text-color);
    margin-right: 5px;
}

.contact-form form {
    background-color: rgba(16, 24, 32, 0.8);
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    background-color: rgba(16, 24, 32, 0.6);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.submit-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: var(--text-color);
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-button:hover {
    background-color: var(--text-color);
    color: var(--cta-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

/* Footer Styles */
.footer {
    background-color: #101820;
    padding: 60px 0 30px;
    color: var(--text-light);
    border-top: 3px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.company-summary {
    margin-top: 15px;
    line-height: 1.8;
}

.footer h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-contact ul li,
.footer-links ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(58, 107, 53, 0.3);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background-color: rgba(16, 24, 32, 0.95);
    padding: 20px;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    backdrop-filter: blur(10px);
}

.cookie-popup.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    color: var(--text-light);
}

#accept-cookies {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-left: 20px;
    transition: var(--transition);
}

#accept-cookies:hover {
    background-color: var(--text-color);
}

/* Legal Pages */
.legal-page {
    padding-top: 150px;
    padding-bottom: 80px;
}

.legal-content {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
    list-style-position: inside;
}

.legal-content address {
    font-style: normal;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(16, 24, 32, 0.5);
    border-radius: 10px;
}

/* Thank You Page */
.thank-you-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.thank-you-content {
    max-width: 600px;
    padding: 40px;
    background-color: rgba(16, 24, 32, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2AA4C"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.thank-you-content h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thank-you-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(16, 24, 32, 0.95);
        padding: 20px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }
    
    .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    #accept-cookies {
        margin-top: 15px;
        margin-left: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .pricing-tables {
        grid-template-columns: 1fr;
    }
    
    .pricing-table.featured {
        transform: none;
    }
    
    .pricing-table.featured:hover {
        transform: translateY(-10px);
    }
    
    .legal-content {
        padding: 20px;
    }
}
