/* 
BrightLedger Solutions
Main Stylesheet
*/

/* Color Variables */
:root {
    --dark-lavender: #2e224d;
    --light-powder: #f9efff;
    --electric-purple: #9933ff;
    --acid-lime: #ccff00;
    --black: #101010;
    --white: #ffffff;
    --gray: #f0f0f0;
    --dark-gray: #333333;
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--light-powder);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--electric-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--acid-lime);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    color: var(--dark-lavender);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

p {
    margin-bottom: 15px;
}

ul, ol {
    margin-left: 20px;
}

/* Header Styles */
.site-header {
    background-color: var(--dark-lavender);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    color: var(--light-powder);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: var(--acid-lime);
}

.nav-button {
    background-color: var(--electric-purple);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
}

.nav-button:hover {
    background-color: var(--acid-lime);
    color: var(--black) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-lavender) 0%, var(--electric-purple) 100%);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--acid-lime);
    opacity: 0.2;
    animation: float 10s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--acid-lime);
    opacity: 0.1;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--light-powder);
}

.cta-button {
    display: inline-block;
    background-color: var(--acid-lime);
    color: var(--black);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-icons {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.icon-box {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.icon {
    margin-bottom: 15px;
}

/* Benefits Section */
.benefits {
    background-color: var(--gray);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    color: var(--electric-purple);
}

/* Services Section */
.services {
    background-color: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-powder);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--electric-purple), var(--acid-lime));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark-lavender);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--electric-purple);
    margin: 20px 0;
}

.service-button {
    display: inline-block;
    background-color: var(--electric-purple);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-button:hover {
    background-color: var(--acid-lime);
    color: var(--black);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark-lavender);
    color: var(--white);
    position: relative;
}

.testimonials h2 {
    color: var(--light-powder);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    text-align: right;
    color: var(--acid-lime);
}

/* Process Section */
.process {
    background-color: var(--white);
    position: relative;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--electric-purple), var(--acid-lime));
    z-index: 1;
}

.step {
    flex-basis: calc(25% - 20px);
    text-align: center;
    position: relative;
    z-index: 2;
    min-width: 200px;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--electric-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step:nth-child(even) .step-number {
    background-color: var(--acid-lime);
    color: var(--black);
}

/* Contact Form Section */
.contact-form {
    background-color: var(--light-powder);
    position: relative;
}

.diagonal-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    transform: rotate(-2deg);
}

.diagonal-form > * {
    transform: rotate(2deg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group:nth-child(3),
.form-group:nth-child(4),
.form-group:nth-child(5) {
    grid-column: span 2;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-lavender);
}

input[type="text"],
input[type="tel"],
select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
select:focus {
    border-color: var(--electric-purple);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.submit-button {
    background-color: var(--electric-purple);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    grid-column: span 2;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--acid-lime);
    color: var(--black);
}

/* Blog Section */
.blog {
    background-color: var(--gray);
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card h3 {
    color: var(--dark-lavender);
    margin-bottom: 15px;
}

.blog-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: var(--electric-purple);
}

.blog-link:hover {
    color: var(--acid-lime);
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-lavender);
    color: var(--light-powder);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-about,
.footer-contact,
.footer-links,
.footer-legal {
    margin-bottom: 30px;
}

.site-footer h3 {
    color: var(--acid-lime);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.site-footer ul {
    list-style: none;
    margin: 0;
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer a {
    color: var(--light-powder);
}

.site-footer a:hover {
    color: var(--acid-lime);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: var(--dark-lavender);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-button {
    background-color: var(--acid-lime);
    color: var(--black);
    border: none;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-button:hover {
    background-color: var(--white);
}

/* Thank You Page */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-content svg {
    margin-bottom: 30px;
}

.back-button {
    display: inline-block;
    background-color: var(--electric-purple);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: var(--acid-lime);
    color: var(--black);
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header {
        position: relative; /* Unfix header in mobile */
    }
    
    .site-header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 5px 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .diagonal-form {
        grid-template-columns: 1fr;
        transform: none;
        padding: 30px;
    }
    
    .diagonal-form > * {
        transform: none;
        grid-column: span 1 !important;
    }
    
    .step {
        flex-basis: 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .cta-button {
        padding: 12px 30px;
    }
}

/* Favicon SVG */
/* To be placed in img/favicon.svg */ 