/* Base Styles */
:root {
    /* Main Colors */
    --bg-gradient-start: #2B0A3D;
    --bg-gradient-end: #3D0C73;
    --accent-lime: #B2FF59;
    --accent-turquoise: #00E5FF;
    --text-light: #E0E0E0;
    --text-white: #FFFFFF;
    --button-orange: #FF7043;
    
    /* Other Variables */
    --header-height: 70px;
    --container-max-width: 1200px;
    --card-min-width: 280px;
    --card-gap: 20px;
    --transition-speed: 0.3s;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --glow-shadow: 0 0 15px var(--accent-turquoise);
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end)) fixed;
    min-height: 100vh;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

a {
    color: var(--accent-lime);
    text-decoration: none;
    transition: all var(--transition-speed);
}

a:hover {
    color: var(--accent-turquoise);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--button-orange);
    color: var(--text-white);
}

.btn-primary:hover {
    box-shadow: 0 0 15px var(--button-orange);
    transform: translateY(-3px);
    color: var(--text-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-turquoise);
}

.btn-secondary:hover {
    box-shadow: 0 0 15px var(--accent-turquoise);
    color: var(--text-white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(43, 10, 61, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--accent-lime), var(--accent-turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    letter-spacing: 1px;
}

/* Navigation */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--text-white);
    height: 2px;
    width: 24px;
    border-radius: 2px;
    transition: all var(--transition-speed);
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-list a {
    color: var(--text-white);
    font-weight: 600;
    padding: 5px 10px;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-lime), var(--accent-turquoise));
    transition: width var(--transition-speed);
}

.nav-list a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('img/UeQkA.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 10, 61, 0.7);
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 30px;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--accent-lime);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    color: var(--text-white);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-lime), var(--accent-turquoise));
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--card-min-width), 1fr));
    gap: var(--card-gap);
    margin-top: 30px;
}

/* Card */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-image {
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    overflow: hidden;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-turquoise);
}

/* Testimonials */
.testimonial {
    text-align: center;
}

.testimonial .card-content {
    padding: 30px 20px;
}

.quote {
    font-style: italic;
    position: relative;
    padding: 0 20px;
    margin-bottom: 20px;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent-lime);
    position: absolute;
    opacity: 0.7;
}

.quote::before {
    top: -10px;
    left: 0;
}

.quote::after {
    bottom: -20px;
    right: 0;
}

.client {
    font-weight: bold;
    color: var(--accent-turquoise);
}

/* Form Container */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
    font-weight: 600;
}

input, select {
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1rem;
}

select option {
    background-color: white;
    color: #333;
}

input:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-turquoise);
}

.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox input {
    width: 20px;
    height: 20px;
}

form .btn {
    align-self: flex-start;
    margin-top: 10px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    font-weight: bold;
    position: relative;
    transition: background var(--transition-speed);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform var(--transition-speed);
}

.faq-toggle:checked + .faq-question {
    background: rgba(255, 255, 255, 0.1);
}

.faq-toggle:checked + .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-speed);
    background: rgba(255, 255, 255, 0.02);
}

.faq-toggle:checked ~ .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
}

/* Contact Info */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--card-gap);
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--accent-lime);
    margin-bottom: 10px;
}

.map-container {
    flex: 2;
    min-width: 280px;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: rgba(43, 10, 61, 0.9);
    padding: 60px 0 0;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-lime);
}

.footer-contact, .footer-links {
    list-style: none;
}

.footer-contact li, .footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(43, 10, 61, 0.95);
    backdrop-filter: blur(8px);
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 2;
    min-width: 280px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 280px;
    justify-content: flex-end;
}

/* Thank You Page */
.thank-you {
    margin: 8rem auto 5rem;
    border: 1px solid var(--accent-turquoise);
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}
.thank-you-section {
    height: 100vh;display: flex;align-items: center;
}
.thank-you h1 {
    color: var(--accent-lime);
    margin-bottom: 20px;
}

.thank-you p {
    margin-bottom: 30px;
}

/* Policy Pages */
.policy-container {
    margin: calc(var(--header-height) + 40px) auto 60px;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.policy-container h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--accent-lime);
}

.policy-container h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: var(--accent-turquoise);
}

.policy-container p, .policy-container ul {
    margin-bottom: 20px;
}

.policy-container ul {
    padding-left: 20px;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }
    .thank-you-section {
        height: auto;
    }
    .nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(43, 10, 61, 0.95);
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform var(--transition-speed);
        opacity: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-list a {
        display: block;
        padding: 15px 10px;
    }
    
    .nav-toggle:checked ~ .nav {
        transform: scale(1, 1);
        opacity: 1;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .policy-container {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}
