/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1A73E8, #7B1FA2);
    color: #FFFFFF;
    min-height: 100vh;
    display: grid;
    line-height: 1.6;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    color: #00E5FF;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #C6FF00;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 4rem 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: #C6FF00;
    color: #333;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #00E5FF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* HEADER & NAVIGATION */
header {
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
}

.menu-checkbox {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 2000;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.menu-checkbox:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-checkbox:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-checkbox:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

nav a {
    color: #E0E0E0;
    font-weight: 500;
}

nav a:hover {
    color: #C6FF00;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ABOUT SECTION */
.about {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin: 6rem auto 4rem;
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.service-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-content {
    padding: 20px;
}

/* ADVANTAGES SECTION */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.advantage-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.advantage-card:hover {
    transform: scale(1.05);
}

/* CASES SECTION */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.case-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.case-content {
    padding: 20px;
}

/* TESTIMONIALS SECTION */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card:before {
    content:  "";
    font-size: 5rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: rgba(198, 255, 0, 0.2);
}

.testimonial-author {
    margin-top: 20px;
    font-weight: bold;
    color: #00E5FF;
}

/* FAQ SECTION */
.faq-container {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    display: block;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-checkbox {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.faq-answer {
    background: rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0 0 10px 10px;
    padding: 0 20px;
}

.faq-checkbox:checked + .faq-question {
    border-radius: 10px 10px 0 0;
}

.faq-checkbox:checked + .faq-question:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 500px;
    padding: 15px 20px;
}

/* FORM SECTION */
.form-section {
    padding: 4rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(198, 255, 0, 0.1));
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    font-size: 16px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 45px;
}

select.form-control option {
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 14px;
}

/* THANK YOU PAGE */
.thank-you {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin: 8rem auto 5rem;
    text-align: center;
    max-width: 800px;
}

/* POLICY PAGES */
.policy-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin: 8rem auto 5rem;
    max-width: 1000px;
}

.policy-container h1 {
    margin-bottom: 2rem;
}

.policy-container h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-container p {
    margin-bottom: 1.5rem;
}

/* FOOTER */
footer {
    
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #00E5FF;
    margin-bottom: 20px;
    border-bottom: 2px solid #C6FF00;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* COOKIE POPUP */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-width: 400px;
    display: none;
}

.cookie-popup p {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        display: flex;
        justify-content: center;
        align-items: center;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease;
    }
    
    .menu-checkbox:checked ~ nav {
        clip-path: circle(150% at 100% 0);
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li a {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .about, .policy-container, .thank-you {
        padding: 20px;
        margin: 6rem auto 3rem;
    }
}
