/* RESET AND BASE STYLES */
:root {
    --bg-dark: #2e0f3a;
    --accent-teal: #00ffc2;
    --accent-pink: #ff007a;
    --text-light: #f4f4f4;
    --text-white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-pink);
}

section {
    padding: 4rem 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-teal) 100%);
    color: var(--text-white);
    border-radius: 4px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow);
    color: var(--text-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-teal) 100%);
}

.text-center {
    text-align: center;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* HEADER STYLES */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(46, 15, 58, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    max-width: 160px;
    display: block;
}

.main-nav {
    position: relative;
}

.menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-toggle {
    display: none;
}

.menu-toggle-label {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
}

.menu-toggle-label span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--text-white);
    transition: var(--transition);
}

.menu-toggle-label span:nth-child(1) {
    top: 0;
}

.menu-toggle-label span:nth-child(2) {
    top: 9px;
}

.menu-toggle-label span:nth-child(3) {
    top: 18px;
}

.menu-toggle:checked ~ .menu {
    display: block;
    position: absolute;
    top: 45px;
    right: 0;
    width: 200px;
    background-color: var(--bg-dark);
    padding: 1rem;
    box-shadow: 0 4px 8px var(--shadow);
    border-radius: 4px;
}

.menu-toggle:checked ~ .menu-toggle-label span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle:checked ~ .menu-toggle-label span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked ~ .menu-toggle-label span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.menu li {
    margin-bottom: 1rem;
}

.menu a {
    color: var(--text-light);
    display: block;
    transition: var(--transition);
}

.menu a:hover,
.menu a.active {
    color: var(--accent-teal);
}

.menu a.btn {
    color: var(--text-white);
    text-align: center;
    margin-top: 1rem;
}

/* HERO SECTION */
.hero {
    padding: 120px 0 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(46, 15, 58, 0.95) 0%, rgba(46, 15, 58, 0.8) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./img/utIVv.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.5);
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* ABOUT SECTION */
.about {
    background-color: rgba(255, 255, 255, 0.05);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* SERVICES SECTION */
.services-grid {
    grid-template-columns: 1fr;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-teal) 100%);
    border-radius: 50%;
}

/* ADVANTAGES SECTION */
.advantages-grid {
    grid-template-columns: 1fr;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.advantage-icon {
    margin-right: 1rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-teal);
    border-radius: 50%;
    color: var(--bg-dark);
}

/* TESTIMONIALS SECTION */
.testimonials {
    background-color: rgba(255, 255, 255, 0.05);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: var(--accent-pink);
    opacity: 0.5;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
}

.client-name {
    font-weight: 700;
    color: var(--accent-teal);
}

.client-position {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* FAQ SECTION */
.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.faq-question {
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* CONTACT FORM SECTION */
.contact {
    background: linear-gradient(135deg, rgba(46, 15, 58, 0.95) 0%, rgba(46, 15, 58, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./img/SAyn9.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.3);
}

.contact-grid {
    grid-template-columns: 1fr;
}

.contact-info,
.contact-form {
    padding: 2rem;
    border-radius: 8px;
}

.contact-info {
    background: rgba(0, 0, 0, 0.3);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--text-white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-teal);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23f4f4f4' 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% - 12px) center;
    padding-right: 32px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 5px;
}

/* FOOTER STYLES */
.main-footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1rem;
    max-width: 140px;
}

.footer-about .company-desc {
    opacity: 0.7;
}

.footer-contact address {
    font-style: normal;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent-teal);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* COOKIE POPUP */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 0;
}

/* GRACIAS PAGE */
.thanks-page {
    min-height: calc(100vh - 300px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 40px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-icon svg {
    width: 60px;
    height: 60px;
    color: var(--text-white);
}

/* ICONS */
.icon-location:before {
    content: "📍";
}
.icon-phone:before {
    content: "📞";
}
.icon-mail:before {
    content: "✉️";
}

/* LEGAL PAGES */
.legal-page {
    padding: 120px 0 40px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2rem;
}

/* RESPONSIVE STYLES */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .menu-toggle-label {
        display: none;
    }
    
    .menu {
        display: flex;
        gap: 1.5rem;
        align-items: center;
    }
    
    .menu li {
        margin-bottom: 0;
    }
    
    .menu a.btn {
        margin-top: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
} 