/* 
==========================================
    Global Styles - Account Pro
    Color Palette:
    - Primary Background: #1F1C2C (deep indigo-violet)
    - Secondary Accent: #E8C547 (warm yellow-gold)
    - Button Accents: #FF5F6D (pink-red gradient)
    - Text: #F5F5F5 (soft light)
    - Block Backgrounds: #2C2B3C and #3D405B
==========================================
*/

/* Reset and Base Styles */
:root {
    --primary-bg: #1F1C2C;
    --secondary-accent: #E8C547;
    --button-accent: #FF5F6D;
    --text-color: #F5F5F5;
    --block-bg-1: #2C2B3C;
    --block-bg-2: #3D405B;
    --gradient-1: linear-gradient(135deg, #FF5F6D 0%, #FFC371 100%);
    --gradient-2: linear-gradient(135deg, #3D405B 0%, #1F1C2C 100%);
    --shadow-soft: 0 10px 20px rgba(0, 0, 0, 0.2);
    --shadow-strong: 0 15px 25px rgba(0, 0, 0, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--secondary-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--button-accent);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

/* Buttons and CTAs */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: var(--gradient-1);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn:hover:before {
    width: 100%;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-accent);
    color: var(--secondary-accent);
}

.btn-secondary:hover {
    background: var(--secondary-accent);
    color: var(--primary-bg);
}

/* Header Styles */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(31, 28, 44, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo svg {
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-links li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-accent);
    transition: var(--transition);
}

.nav-links li a:hover:after,
.nav-links li a.active:after {
    width: 100%;
}

.cta-button {
    background: var(--gradient-1);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    padding-top: 8rem;
    display: flex;
    align-items: center;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(232, 197, 71, 0.1) 0%, rgba(31, 28, 44, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero h1 span {
    color: var(--secondary-accent);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
    animation: fadeInUp 1s ease 0.4s both;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about:after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(232, 197, 71, 0.05) 0%, rgba(31, 28, 44, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--secondary-accent);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    transition: var(--transition);
}

.about-content {
    padding: 2rem;
}

.section-title {
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 3px;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Services Section */
.services {
    position: relative;
    background-color: var(--block-bg-1);
    border-radius: var(--radius-lg);
    margin: 5rem 0;
    padding: 5rem 0;
    overflow: hidden;
}

.services:before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 197, 71, 0.1) 0%, rgba(31, 28, 44, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.services-intro {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--block-bg-2);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    z-index: -1;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: var(--block-bg-1);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--secondary-accent);
    box-shadow: var(--shadow-soft);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--block-bg-2);
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    font-size: 1.8rem;
    color: white;
}

.feature-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--block-bg-1);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials:after {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(232, 197, 71, 0.05) 0%, rgba(31, 28, 44, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--block-bg-2);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.testimonial-content {
    position: relative;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 3rem;
    color: var(--secondary-accent);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
}

.faq-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--block-bg-2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-accent);
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    position: relative;
    background-color: var(--block-bg-1);
    border-radius: var(--radius-lg);
    margin: 5rem 0;
    padding: 5rem 0;
    overflow: hidden;
}

.contact:before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 197, 71, 0.1) 0%, rgba(31, 28, 44, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    margin-right: 1rem;
    background: var(--block-bg-2);
    border-radius: 50%;
    color: var(--secondary-accent);
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-text p {
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    background: var(--block-bg-2);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background-color: rgba(31, 28, 44, 0.6);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-accent);
    box-shadow: 0 0 0 3px rgba(232, 197, 71, 0.1);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-check-input {
    margin-right: 0.75rem;
    margin-top: 0.3rem;
}

.form-check-label {
    font-size: 0.9rem;
}

.price-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-option {
    flex: 1;
    min-width: 120px;
    position: relative;
}

.price-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.price-option label {
    display: block;
    padding: 1rem;
    text-align: center;
    background-color: rgba(31, 28, 44, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.price-option input:checked + label {
    background: var(--block-bg-1);
    border-color: var(--secondary-accent);
    box-shadow: 0 0 0 2px rgba(232, 197, 71, 0.3);
}

.price-option label h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-accent);
}

.price-option label p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Footer Styles */
.site-footer {
    background-color: var(--block-bg-1);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info p {
    opacity: 0.8;
    margin-top: 1rem;
}

.footer-contact h3,
.footer-links h3,
.footer-legal h3 {
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact h3:after,
.footer-links h3:after,
.footer-legal h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-accent);
}

.footer-contact address {
    font-style: normal;
}

.footer-contact address p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact address a {
    color: var(--text-color);
    transition: var(--transition);
}

.footer-contact address a:hover {
    color: var(--secondary-accent);
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: var(--text-color);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    opacity: 1;
    color: var(--secondary-accent);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 0;
    right: 0;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    background: var(--block-bg-2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-strong);
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
}

.btn-accept {
    background: var(--secondary-accent);
    color: var(--primary-bg);
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept:hover {
    background: var(--button-accent);
    color: white;
}

/* Thank You Page */
.thank-you-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    padding: 2rem;
}

.thank-you-page h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.thank-you-page p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 5rem;
}

.legal-content {
    background: var(--block-bg-2);
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1.5rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero {
        min-height: 600px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: var(--block-bg-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 99;
        padding: 2rem;
    }
    
    .nav-links.show {
        right: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .price-options {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 500px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .site-header, 
    .site-footer, 
    .cookie-banner {
        display: none;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
    
    .section {
        padding: 1rem 0;
    }
} 