/* Main CSS Styles */
:root {
    --bg-gradient-start: #111827;
    --bg-gradient-end: #1F2937;
    --accent-coral: #FF6B6B;
    --accent-jade: #2DD4BF;
    --text-color: #F3F4F6;
    --hover-color: #F59E0B;
    --dark-bg: #0F172A;
    --light-bg: #374151;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --transition-speed: 0.3s;
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--hover-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--accent-coral);
    color: var(--text-color);
}

.btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.btn-secondary {
    background-color: var(--accent-jade);
    color: var(--dark-bg);
}

.btn-secondary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    height: var(--header-height);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 200px;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-jade);
    letter-spacing: 1px;
    text-transform: lowercase;
    background: linear-gradient(135deg, var(--accent-jade) 0%, var(--accent-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-link {
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-jade);
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../img/1g5aCn.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-jade);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn {
    margin-top: 20px;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: rgba(31, 41, 55, 0.7);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.about-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(20px);
    transition: all 1s ease 0.3s;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--accent-coral);
    position: relative;
    padding-top: 20px;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-jade);
    margin: 15px auto;
    border-radius: 2px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(55, 65, 81, 0.5);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--accent-jade);
    transition: all var(--transition-speed) ease;
}

.service-card:hover::before {
    width: 10px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-coral);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-jade);
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.service-price span {
    font-size: 1rem;
    margin-left: 5px;
    font-weight: normal;
}

.services-image {
    max-width: 500px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 300px;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: rgba(31, 41, 55, 0.7);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.benefit-item.visible {
    opacity: 1;
    transform: scale(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--accent-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-color);
    transition: all var(--transition-speed) ease;
}

.benefit-item:hover .benefit-icon {
    transform: rotateY(180deg);
    background-color: var(--accent-jade);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-jade);
}

.benefits-image {
    max-width: 500px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 300px;
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Form */
.contact {
    padding: 80px 0;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(55, 65, 81, 0.5);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.contact-form.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(15, 23, 42, 0.5);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-jade);
    background-color: rgba(15, 23, 42, 0.7);
}

.form-label {
    position: absolute;
    left: 20px;
    top: 15px;
    color: var(--text-color);
    transition: all var(--transition-speed) ease;
    pointer-events: none;
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    padding: 0 5px;
    background-color: var(--accent-jade);
    border-radius: 4px;
    color: var(--dark-bg);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23F3F4F6' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-group label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-group label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--accent-coral);
    border-radius: 4px;
    background-color: rgba(15, 23, 42, 0.5);
    transition: all var(--transition-speed) ease;
}

.checkbox-group input[type="checkbox"]:checked + label::before {
    background-color: var(--accent-jade);
    border-color: var(--accent-jade);
}

.checkbox-group label::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all var(--transition-speed) ease;
}

.checkbox-group input[type="checkbox"]:checked + label::after {
    border-color: var(--dark-bg);
}

.checkbox-group a {
    color: var(--accent-jade);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: var(--hover-color);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: rgba(31, 41, 55, 0.7);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slides {
    display: flex;
    transition: all 0.8s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 30px;
    opacity: 0;
    transition: all 1s ease;
}

.testimonial-slide.visible {
    opacity: 1;
}

.testimonial-content {
    background-color: rgba(55, 65, 81, 0.5);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(45, 212, 191, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--accent-jade);
}

.testimonial-author-image img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonial-author-info h4 {
    color: var(--accent-coral);
    margin-bottom: 5px;
}

.testimonial-author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(243, 244, 246, 0.3);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: block;
}

.slider-dot.active {
    background-color: var(--accent-jade);
    transform: scale(1.2);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 60px 0 0;
    margin-top: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer h3 {
    color: var(--accent-jade);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    display: inline-block;
    padding: 3px 0;
    transition: all var(--transition-speed) ease;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: var(--accent-jade);
    border-bottom-color: var(--accent-jade);
    transform: translateX(5px);
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    margin-bottom: 10px;
}

.copyright {
    background-color: rgba(15, 23, 42, 0.7);
    padding: 15px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1100;
    animation: fadeIn 0.5s ease-out;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    .menu-icon span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 5px 0;
        transition: all var(--transition-speed) ease;
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--dark-bg);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: all var(--transition-speed) ease;
        z-index: 1000;
    }

    .menu-toggle:checked ~ .nav-list {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .cta-button {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer {
        padding: 40px 0 0;
    }
    
    .services-image,
    .benefits-image {
        height: 200px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* For no-js version */
.php-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Form error message */
.form-error {
    background-color: rgba(220, 38, 38, 0.2);
    color: #f87171;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid #f87171;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Thank You Page */
.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../img/BIdbZ8.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(31, 41, 55, 0.8);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(45, 212, 191, 0.2);
    opacity: 0;
    transform: translateY(30px);
}

.thank-you-content.php-visible {
    opacity: 1;
    transform: translateY(0);
}

.thank-you-icon {
    margin-bottom: 30px;
    transform: scale(0);
    position: relative;
}

.thank-you-icon.php-visible {
    transform: scale(1);
}

.thank-you-icon:after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.2) 0%, rgba(255, 107, 107, 0.1) 50%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.thank-you h1 {
    color: var(--accent-jade);
    margin-bottom: 20px;
    font-size: 2.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.thank-you p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.thank-you-actions {
    margin-top: 40px;
}

.thank-you-actions .btn {
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thank-you-actions .btn:hover {
    transform: scale(1.05);
}

/* Legal Pages Styling */
.legal-page {
    padding: 60px 0;
    min-height: calc(100vh - var(--header-height) - 250px);
}

.legal-title {
    color: var(--accent-jade);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    padding-top: 20px;
}

.legal-content {
    background-color: rgba(55, 65, 81, 0.5);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(45, 212, 191, 0.1);
}

.legal-content.php-visible {
    opacity: 1;
    transform: translateY(0);
}

.legal-updated {
    color: var(--accent-coral);
    margin-bottom: 20px;
    font-style: italic;
}

.legal-content h2 {
    color: var(--accent-jade);
    margin: 25px 0 15px;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(45, 212, 191, 0.3);
    padding-bottom: 8px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--accent-coral);
    margin: 20px 0 10px;
    font-size: 1.3rem;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    position: relative;
}

.legal-content address {
    margin: 15px 0;
    font-style: normal;
    padding: 15px;
    background-color: rgba(15, 23, 42, 0.3);
    border-radius: 8px;
    border-left: 3px solid var(--accent-coral);
}

.legal-actions {
    text-align: center;
} 