/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #1A1C2D;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

ul {

  list-style: none;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1A1C2D 0%, #2A2D47 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #FF914D;
    text-decoration: none;
    letter-spacing: 1px;
}

/* Navigation */
nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

nav a {
    color: #B0B3C6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

nav a:hover {
    color: #FF914D;
}

/* Mobile Menu */
.menu-checkbox {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FF914D;
    margin: 3px 0;
    transition: 0.3s;
}

body:has(#menu-toggle:checked) {
    overflow: hidden;
}

.menu-checkbox:checked ~ nav {
    max-height: 100vh;
    height: 100vh;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 28, 45, 0.8), rgba(26, 28, 45, 0.8)), url('./img/HRxSp.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #B0B3C6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #FF914D, #00C9A7);
    color: #FFFFFF;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 145, 77, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #B0B3C6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.card {
    background: linear-gradient(135deg, #2A2D47 0%, #1A1C2D 100%);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 145, 77, 0.2);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 145, 77, 0.2);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.card h3 {
    color: #FF914D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: #B0B3C6;
    line-height: 1.6;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #2A2D47 0%, #1A1C2D 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    color: #B0B3C6;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: linear-gradient(135deg, #2A2D47 0%, #1A1C2D 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 201, 167, 0.2);
}

.step-number {
    background: linear-gradient(45deg, #00C9A7, #FF914D);
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-card p {
    color: #B0B3C6;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #2A2D47 0%, #1A1C2D 100%);
}

.testimonial-card {
    background: linear-gradient(135deg, #1A1C2D 0%, #2A2D47 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 145, 77, 0.2);
}

.testimonial-text {
    font-style: italic;
    color: #B0B3C6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #FF914D;
    font-weight: bold;
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #2A2D47 0%, #1A1C2D 100%);
}

.faq-item {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1A1C2D 0%, #2A2D47 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 201, 167, 0.2);
}

.faq-checkbox {
    display: none;
}

.faq-question {
    display: block;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 145, 77, 0.1);
}

.faq-question::after {
    content: '+';
    float: right;
    font-size: 1.5rem;
    color: #FF914D;
    transition: transform 0.3s ease;
}

.faq-checkbox:checked + .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 201, 167, 0.05);
}

.faq-checkbox:checked + .faq-question + .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #B0B3C6;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #2A2D47 0%, #1A1C2D 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 145, 77, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 145, 77, 0.3);
    border-radius: 10px;
    background: rgba(26, 28, 45, 0.8);
    color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF914D;
}

.form-group select option {
    background: #FFFFFF;
    color: #1A1C2D;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #B0B3C6;
}

.checkbox-group a {
    color: #FF914D;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #FF914D, #00C9A7);
    color: #FFFFFF;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 145, 77, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1A1C2D 0%, #0F1117 100%);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FF914D;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #B0B3C6;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: #FF914D;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 145, 77, 0.2);
    color: #B0B3C6;
}

/* Thanks Section */
.thanks-section {
    min-height: 100vh;
    display: grid;
    align-items: center;
    background: linear-gradient(135deg, #1A1C2D 0%, #2A2D47 100%);
}

.thanks-content {
    margin: 8rem auto 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, #2A2D47 0%, #1A1C2D 100%);
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 145, 77, 0.3);
}

.thanks-content h1 {
    color: #FF914D;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-content p {
    color: #B0B3C6;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.thanks-content a {
    display: inline-block;
    background: linear-gradient(45deg, #FF914D, #00C9A7);
    color: #FFFFFF;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.thanks-content a:hover {
    transform: translateY(-2px);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2A2D47 0%, #1A1C2D 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 145, 77, 0.3);
    z-index: 10000;
    display: none;
    max-width: 500px;
    margin: 0 auto;
}

.cookie-popup.show {
    display: block;
}

.cookie-popup p {
    color: #B0B3C6;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cookie-accept {
    background: linear-gradient(45deg, #FF914D, #00C9A7);
    color: #FFFFFF;
}

.cookie-decline {
    background: transparent;
    color: #B0B3C6;
    border: 1px solid #B0B3C6;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
    top: 82px; 
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1A1C2D 0%, #2A2D47 100%);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .thanks-section {
        height: auto;
    }
    
    .thanks-content {
        margin: 2rem auto;
        padding: 2rem;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}
