/* Base Styles */
:root {
    --color-bg: #1A1F36;
    --color-text: #E3E3E3;
    --color-accent-yellow: #FFFB00;
    --color-accent-teal-1: #0BD1D1;
    --color-accent-teal-2: #10F4C4;
    --color-form: #F88CBA;
    --font-primary: 'Inter', sans-serif;
    --font-logo: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    font-size: 1.6rem;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent-yellow);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 120rem;
    padding: 0 2rem;
    margin: 0 auto;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
section {
    padding: 8rem 0;
}

.section-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    color: var(--color-text);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 8rem;
    height: 0.4rem;
    background: linear-gradient(to right, var(--color-accent-teal-1), var(--color-accent-teal-2));
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0.2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 5rem;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--color-accent-teal-1), var(--color-accent-teal-2));
    color: var(--color-bg);
}

.btn--sm {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

.btn--lg {
    padding: 1.6rem 3.2rem;
    font-size: 1.8rem;
}

.btn--neon {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--color-accent-yellow);
    color: var(--color-bg);
    font-weight: 700;
    box-shadow: 0 0 10px rgba(255, 251, 0, 0.5),
                0 0 20px rgba(255, 251, 0, 0.2);
}

.btn--neon:hover {
    box-shadow: 0 0 15px rgba(255, 251, 0, 0.7),
                0 0 30px rgba(255, 251, 0, 0.4);
}

.btn--glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-accent-yellow);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 31, 54, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

.logo {
    font-family: var(--font-logo);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-text);
    position: relative;
    z-index: 2;
}

.logo:hover {
    color: var(--color-accent-teal-1);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2;
}

.nav__toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.header__contact a {
    font-weight: 500;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(11, 209, 209, 0.1) 0%, rgba(26, 31, 54, 0) 70%),
                radial-gradient(circle at bottom left, rgba(16, 244, 196, 0.1) 0%, rgba(26, 31, 54, 0) 70%);
    padding-top: 8rem;
}

.hero__inner {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
}

.hero__title {
    font-size: 5.6rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--color-text), var(--color-accent-teal-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 2rem;
    margin-bottom: 4rem;
}

/* About Section */
.about__inner {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about__content {
    flex: 1;
}

.about__content h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-accent-teal-1);
}

.about__content p {
    margin-bottom: 1.6rem;
}

.about__image {
    flex: 1;
    padding: 2rem;
}

.about__image img {
    border-radius: 1rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, rgba(11, 209, 209, 0.05), rgba(16, 244, 196, 0.05));
}

.services__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.service-card {
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card__image {
    width: 100%;
    height: 20rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
    color: var(--color-text);
}

/* Benefits Section */
.benefits__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 4rem;
}

.benefit-item {
    text-align: center;
}

.benefit-item__icon {
    margin: 0 auto 1.6rem;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-yellow);
}

.benefit-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-accent-teal-1);
}

.benefit-item p {
    font-size: 1.5rem;
}

/* Gallery Section */
.gallery__inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    grid-auto-rows: 25rem;
    gap: 2rem;
}

.gallery__item:nth-child(3n+1) {
    grid-row: span 2;
}

.gallery__item:nth-child(4n) {
    grid-column: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.gallery__item {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, rgba(11, 209, 209, 0.05), rgba(16, 244, 196, 0.05));
}

.testimonials__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.testimonial-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.testimonial-card__content {
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-card__content::before {
    content: '"';
    font-size: 6rem;
    position: absolute;
    top: -3rem;
    left: -1rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.testimonial-card__author img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__author h4 {
    font-size: 1.8rem;
    color: var(--color-accent-teal-1);
}

.testimonial-card__author p {
    font-size: 1.4rem;
    opacity: 0.8;
}

/* Order Form Section */
.order {
    background: linear-gradient(135deg, var(--color-accent-teal-1), var(--color-accent-teal-2));
    position: relative;
    overflow: hidden;
}

.order::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.order__inner {
    position: relative;
    z-index: 1;
}

.order .section-title {
    color: var(--color-bg);
}

.order .section-title::after {
    background: var(--color-bg);
}

.order-form {
    max-width: 60rem;
    margin: 0 auto;
    background: rgba(26, 31, 54, 0.8);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 2.4rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.8rem;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1.6rem;
}

.styled-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23E3E3E3' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 2rem;
    padding-right: 4rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.styled-select:hover {
    border-color: var(--color-form);
    box-shadow: 0 0 0 2px rgba(248, 140, 186, 0.2);
}

.styled-select option {
    background-color: var(--color-bg);
    color: var(--color-text);
    padding: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-form);
    box-shadow: 0 0 0 3px rgba(248, 140, 186, 0.3);
}

.form-check {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
}

.form-check input {
    margin-right: 1rem;
    margin-top: 0.4rem;
}

.form-check a {
    color: var(--color-form);
    text-decoration: underline;
}

.order-form .btn {
    width: 100%;
    margin-top: 2rem;
    font-size: 1.8rem;
}

/* Footer */
.footer {
    background: rgba(15, 18, 31, 0.95);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer__info {
    display: flex;
    flex-direction: column;
}

.footer__info .logo {
    margin-bottom: 2rem;
}

.footer__info p {
    opacity: 0.8;
    max-width: 30rem;
}

.footer h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-accent-teal-1);
}

.footer__contact ul,
.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer__contact svg {
    margin-top: 0.3rem;
    flex-shrink: 0;
    color: var(--color-accent-teal-1);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom p {
    font-size: 1.4rem;
    opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(26, 31, 54, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-popup__content {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 120rem;
    margin: 0 auto;
}

.cookie-popup__content p {
    margin-right: 2rem;
}

/* FAQ Section */
.faq__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.faq__item {
    padding: 0;
    overflow: hidden;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    font-weight: 600;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq__icon {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-accent-teal-1);
    transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    display: none;
    padding: 0 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease;
}

.faq__item.active .faq__question {
    color: var(--color-accent-teal-1);
}

/* PHP Mobile Menu Toggle */
.nav__menu.active {
    transform: translateX(0);
}

/* Media Queries */
@media (max-width: 992px) {
    html {
        font-size: 56.25%; /* 9px */
    }
    
    .about__inner {
        flex-direction: column;
    }
    
    .gallery__inner {
        grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(26, 31, 54, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        backdrop-filter: blur(10px);
        z-index: 1;
        padding: 5rem 2rem;
    }
    
    .hero__title {
        font-size: 4.2rem;
    }
    
    .section-title {
        font-size: 3.2rem;
    }
    
    .order-form {
        padding: 3rem 2rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 50%; /* 8px */
    }
    
    .hero__title {
        font-size: 3.6rem;
    }
    
    .services__inner,
    .testimonials__inner {
        grid-template-columns: 1fr;
    }
    
    .gallery__item:nth-child(4n) {
        grid-column: span 1;
    }
    
    .gallery__inner {
        grid-template-columns: 1fr;
    }
    
    .cookie-popup__content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 244, 196, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 244, 196, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 244, 196, 0);
    }
}

.hero__inner {
    animation: fadeIn 1s ease;
}

.btn--neon {
    animation: pulse 2s infinite;
}
