/* 
 * Luminance Ledger - Main Stylesheet
 * Color Palette:
 * - Midnight Blue: #191A32 (Background)
 * - Cyber Coral: #FF6F61 (Accent)
 * - Arctic Mint: #A4FFE4 (Secondary Accent)
 * - Pale Clay: #EFE9DC (Section Background)
 * - Obsidian Gray: #1C1B1F (Text)
 * - Blush Violet: #B08BBB (Icons/Buttons)
 */

/* ===== Base Styles ===== */
:root {
    --midnight-blue: #191A32;
    --cyber-coral: #FF6F61;
    --arctic-mint: #A4FFE4;
    --pale-clay: #EFE9DC;
    --obsidian-gray: #1C1B1F;
    --blush-violet: #B08BBB;
    --white: #FFFFFF;
    --light-gray: #F8F8F8;
    --medium-gray: #E0E0E0;
    --dark-gray: #555555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--obsidian-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--cyber-coral);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--blush-violet);
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background-color: var(--pale-clay);
}

/* ===== Buttons ===== */
.btn-primary,
.btn-cta,
.btn-service,
.btn-submit,
.btn-cookie {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--blush-violet);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--midnight-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta {
    background-color: var(--cyber-coral);
    color: var(--white);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-cta:hover {
    background-color: var(--blush-violet);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-service {
    background-color: var(--blush-violet);
    color: var(--white);
    width: 100%;
    margin-top: 1rem;
}

.btn-service:hover {
    background-color: var(--cyber-coral);
    color: var(--white);
}

.btn-submit {
    background-color: var(--cyber-coral);
    color: var(--white);
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--blush-violet);
    color: var(--white);
}

.btn-cookie {
    background-color: var(--blush-violet);
    color: var(--white);
    margin-top: 0.5rem;
}

.btn-cookie:hover {
    background-color: var(--cyber-coral);
}

/* ===== Header & Navigation ===== */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.main-nav li {
    margin-left: 1.5rem;
}

.main-nav a {
    color: var(--obsidian-gray);
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--cyber-coral);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--obsidian-gray);
    height: 2px;
    width: 2rem;
    border-radius: 2px;
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--midnight-blue);
    color: var(--white);
    padding: 1rem;
    z-index: 999;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 0.5rem;
}

.cookie-content a {
    color: var(--arctic-mint);
}

/* ===== Hero Section ===== */
.hero-section {
    background-color: var(--midnight-blue);
    background-image: url(../img/QQhoh1.jpg);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 26, 50, 0.85) 0%, rgba(25, 26, 50, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content .btn-cta {
    animation: pulse 2s infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== About Section ===== */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== Benefits Section ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    color: var(--blush-violet);
}

.benefit-icon svg {
    width: 60px;
    height: 60px;
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card.featured {
    border: 2px solid var(--cyber-coral);
    position: relative;
}

.service-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cyber-coral);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cyber-coral);
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.service-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--blush-violet);
    position: absolute;
    left: 0;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background-image: url(../img/NYxHiE.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 26, 50, 0.9);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section h2 {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--cyber-coral);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--obsidian-gray);
}

.author-business {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* ===== FAQ Section ===== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 1.5rem;
    background-color: var(--white);
    color: var(--obsidian-gray);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: var(--white);
    padding: 0 1.5rem;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 1000px;
    padding: 1.5rem;
}

/* ===== Contact Section ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    background-color: var(--light-gray);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--blush-violet);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-map img {
    display: block;
    width: 100%;
    height: auto;
}

.contact-info {
    background-color: var(--white);
    padding: 1.5rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--cyber-coral);
}

/* ===== Thanks Section ===== */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out;
}

.thanks-content h1 {
    color: var(--cyber-coral);
    margin-bottom: 1.5rem;
}

.thanks-content .btn-primary {
    margin-top: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== Legal Pages ===== */
.legal-section {
    padding: 5rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-content p,
.legal-content ul,
.legal-content address {
    margin-bottom: 1rem;
}

/* ===== Footer ===== */
.site-footer {
    background-color: var(--midnight-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.footer-contact h3,
.footer-legal h3 {
    color: var(--arctic-mint);
    margin-bottom: 1rem;
}

.footer-contact address p {
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

.footer-contact a {
    color: var(--cyber-coral);
}

.footer-legal ul {
    list-style: none;
    margin: 0;
}

.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-legal a {
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--cyber-coral);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .header-content {
        position: relative;
    }
    
    .nav-toggle-label {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
    }
    
    .nav-toggle:checked ~ .main-nav {
        max-height: 500px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 1rem;
    }
    
    .main-nav li {
        margin: 0 0 1rem 0;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .benefit-card,
    .testimonial-card {
        padding: 1.5rem;
    }
} 