/* 
* Bukebo-Dixaze CSS Stylesheet
* Color Palette:
* - Primary Background: #1a1c30 (Deep Dark Indigo)
* - Accent 1: #b2ff59 (Mint Lime)
* - Accent 2: #b388eb (Amethyst Purple)
* - Text Colors: #ffffff (Bright White), #bfc9d4 (Light Gray-Blue)
* - Block Backgrounds: Semi-transparent gradient based on primary color
*/

/* === Base Styles === */
:root {
    --color-primary: #1a1c30;
    --color-primary-light: #272a45;
    --color-primary-dark: #13141f;
    --color-accent1: #b2ff59;
    --color-accent1-dark: #7ecb29;
    --color-accent2: #b388eb;
    --color-accent2-dark: #9c6ad4;
    --color-white: #ffffff;
    --color-text-light: #bfc9d4;
    --shadow-light: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
    --shadow-dark: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
    --glass-background: rgba(26, 28, 48, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);
    --glass-blur: blur(12px);
    --transition-speed: 0.3s;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-text-light);
    background-color: var(--color-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(178, 255, 89, 0.07) 0%, transparent 20%),
        radial-gradient(circle at 90% 50%, rgba(179, 136, 235, 0.07) 0%, transparent 25%);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-white);
    margin-bottom: 2rem;
    line-height: 1.3;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background: linear-gradient(90deg, var(--color-accent1), var(--color-accent2));
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--color-accent1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* === Button Styles === */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(90deg, var(--color-accent1), var(--color-accent2));
    color: var(--color-primary);
    font-weight: bold;
    border-radius: 5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    cursor: pointer;
    border: none;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 4px 15px rgba(179, 136, 235, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent2), var(--color-accent1));
    transition: width var(--transition-speed);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(179, 136, 235, 0.5);
    color: var(--color-primary);
}

.btn:hover::before {
    width: 100%;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(179, 136, 235, 0.4);
}

/* === Glass Card Style === */
.glass-card {
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 2rem;
    border: var(--glass-border);
    box-shadow: var(--shadow-light);
    padding: 3rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    overflow: hidden;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        rgba(178, 255, 89, 0.1), 
        rgba(179, 136, 235, 0.1));
    z-index: -1;
    transform: scale(0.98);
    transition: transform var(--transition-speed);
    border-radius: inherit;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.glass-card:hover::before {
    transform: scale(1);
}

/* === Header Styles === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: background-color var(--transition-speed), padding var(--transition-speed);
    background-color: rgba(26, 28, 48, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: 1rem 0;
    background-color: rgba(26, 28, 48, 0.95);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--color-white);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent1), var(--color-accent2));
    transition: width var(--transition-speed);
}

.nav-link:not(.btn):hover::after {
    width: 100%;
}

/* === Hero Section === */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    position: relative;
    margin-top: -8rem;
    padding-top: 8rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(26, 28, 48, 0.9) 0%, 
        rgba(26, 28, 48, 0.7) 50%, 
        rgba(26, 28, 48, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: 5.6rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === About Section === */
.about {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.about-image {
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
}

.about-image img {
    transition: transform 1.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* === Benefits Section === */
.benefits {
    background-color: var(--color-primary-light);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(var(--color-accent1-dark), transparent 70%);
    opacity: 0.1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem;
}

.benefit-icon {
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent1-dark), var(--color-accent2-dark));
    box-shadow: 0 10px 20px rgba(179, 136, 235, 0.3);
    position: relative;
    z-index: 1;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    inset: 0.5rem;
    border-radius: inherit;
    background: var(--color-primary);
    z-index: -1;
}

.benefit-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.benefit-title::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.3rem;
    background: linear-gradient(90deg, var(--color-accent1), var(--color-accent2));
}

/* === Products Section === */
.products {
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image {
    position: relative;
    height: 200px;
    border-radius: 2rem 2rem 0 0;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
}

.product-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.product-description {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.product-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-accent1);
    margin-bottom: 2rem;
}

/* === Services Section === */
.services {
    background-color: var(--color-primary-light);
    position: relative;
    overflow: hidden;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(var(--color-accent2-dark), transparent 70%);
    opacity: 0.1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 4rem;
    color: var(--color-accent1);
    margin-bottom: 2rem;
}

.service-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--color-accent2);
    margin: 1.5rem 0;
}

/* === Testimonials Section === */
.testimonials {
    position: relative;
}

.testimonials-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.testimonial-card {
    padding: 4rem;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    font-size: 12rem;
    line-height: 1;
    color: rgba(178, 255, 89, 0.1);
    font-family: serif;
}

.testimonial-text {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--color-white);
    font-size: 1.8rem;
}

.testimonial-position {
    color: var(--color-accent1);
    font-size: 1.4rem;
}

/* === FAQ Section === */
.faq {
    background-color: var(--color-primary-light);
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-speed);
}

.faq-question::after {
    content: '+';
    font-size: 2.4rem;
    transition: transform var(--transition-speed);
}

.faq-question:hover {
    color: var(--color-accent1);
}

.faq-answer {
    padding: 0 2rem 2rem 2rem;
    display: none;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeDown 0.5s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Order Form Section === */
.order {
    position: relative;
    padding: 10rem 0;
}

.order-container {
    max-width: 600px;
    margin: 0 auto;
}

.order-form {
    padding: 4rem;
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--color-white);
}

.form-control {
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    color: #000000;
    font-size: 1.6rem;
    transition: all var(--transition-speed);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent2);
    box-shadow: 0 0 0 3px rgba(179, 136, 235, 0.3);
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000000' 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 2rem center;
    background-size: 1.6rem;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.8);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.form-checkbox label {
    font-size: 1.4rem;
}

.form-checkbox a {
    color: var(--color-accent1);
    text-decoration: underline;
}

.form-checkbox a:hover {
    color: var(--color-accent1-dark);
}

.form-submit {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.8rem;
    margin-top: 1rem;
}

/* === Footer === */
.footer {
    background-color: var(--color-primary-dark);
    padding: 8rem 0 2rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-description {
    font-size: 1.4rem;
}

.footer h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 4rem;
    height: 0.3rem;
    background: linear-gradient(90deg, var(--color-accent1), var(--color-accent2));
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
}

/* === Cookie Consent === */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 9999;
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 1rem;
    border: var(--glass-border);
    box-shadow: var(--shadow-dark);
    padding: 2rem;
    animation: slideUp 0.5s ease forwards;
}

.cookie-content p {
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.cookie-content form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-link {
    font-size: 1.4rem;
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* === Thank You Page === */
.thank-you {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thank-you svg {
    width: 100px;
    height: 100px;
    margin-bottom: 3rem;
}

.thank-you h1 {
    margin-bottom: 2rem;
}

.thank-you p {
    max-width: 600px;
    margin-bottom: 3rem;
}

/* === Media Queries === */
@media (max-width: 992px) {
    html {
        font-size: 60%;
    }
    
    section {
        padding: 6rem 0;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 4.8rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 57.5%;
    }
    
    .header {
        position: static;
        background-color: var(--color-primary);
        padding: 1.5rem 0;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .hero {
        min-height: 500px;
        text-align: center;
        margin-top: 0;
        padding-top: 2rem;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .about-grid,
    .benefits-grid,
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 3rem 2rem;
    }
    
    .order-form {
        padding: 3rem 2rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 55%;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.6rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-about {
        max-width: 100%;
    }
} 