/* 
   Lumina Ledger Solutions - Stylesheet
   Color Palette:
   - Primary: Electric Tangerine (#FF6200)
   - Secondary: Deep Jungle Green (#006D5B)
   - Background: Cultured White (#F7F9FA)
   - Text: Charcoal (#333333)
   - Accent: Sky Magenta (#CF4FA1)
*/

/* Reset and Base Styles */
:root {
    --color-primary: #FF6200;
    --color-secondary: #006D5B;
    --color-bg: #F7F9FA;
    --color-text: #333333;
    --color-accent: #CF4FA1;
    --font-main: 'Arial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-secondary);
}

h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 7rem 0;
}

section:nth-child(even) {
    background-color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn--primary {
    background-color: var(--color-primary);
    color: white;
}

.btn--primary:hover {
    background-color: #e65700;
    color: white;
}

.btn--secondary {
    background-color: var(--color-secondary);
    color: white;
}

.btn--secondary:hover {
    background-color: #005a4a;
    color: white;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo svg {
    height: 40px;
    margin-right: 10px;
}

.logo__text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-secondary);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

nav li {
    margin-left: 1.5rem;
}

nav a {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-color: white;
    padding: 5rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero__content {
    flex: 1;
}

.hero__content h1 {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.hero__content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero__image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* About Section */
.about__content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.about__text {
    flex: 1;
    min-width: 300px;
}

.about__benefits {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.benefit {
    flex: 1;
    min-width: 200px;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit__icon {
    margin-bottom: 1rem;
}

/* Services Section */
.services__grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service {
    display: flex;
    gap: 2rem;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service:nth-child(even) {
    flex-direction: row-reverse;
}

.service__image {
    flex: 1;
    min-width: 200px;
    max-width: 400px;
}

.service__content {
    flex: 2;
    padding: 2rem;
}

.service__content h3 {
    margin-bottom: 1rem;
}

.service__content ul {
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial__rating {
    margin-bottom: 1rem;
}

.star {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.testimonial__author {
    margin-top: 1.5rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.testimonial__author h4 {
    margin-bottom: 0.3rem;
}

.testimonial__author p {
    opacity: 0.8;
    margin: 0;
}

/* Why Choose Us Section */
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature__icon {
    margin-bottom: 1rem;
}

/* Contact Section */
.contact__content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact__info {
    flex: 1;
    min-width: 300px;
}

.contact__details {
    margin-top: 2rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact__item svg {
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact__form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Form error styles */
.form__errors {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #fff0f0;
    border-left: 4px solid #ff6b6b;
    border-radius: 4px;
}

.form__errors ul {
    margin: 0;
    padding-left: 1rem;
    list-style-type: circle;
}

.form__errors li {
    color: #d03e3e;
    margin-bottom: 0.3rem;
}

.form__errors li:last-child {
    margin-bottom: 0;
}

.form__group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input, select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, select:focus {
    border-color: var(--color-secondary);
    outline: none;
}

.form__group--checkbox {
    display: flex;
    align-items: center;
}

.form__group--checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

.form__group--checkbox label {
    margin: 0;
}

/* FAQ Section */
.faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.faq__item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq__item h3 {
    margin-bottom: 1rem;
}

/* Footer Styles */
footer {
    background-color: var(--color-secondary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__info {
    flex: 2;
    min-width: 300px;
}

.footer__links {
    flex: 1;
    min-width: 200px;
}

.footer__links h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.8rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer__links a:hover {
    color: white;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    display: none;
    z-index: 1000;
}

.cookie-popup.active {
    display: block;
}

.cookie-popup__content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-popup__content h3 {
    color: white;
    margin: 0;
}

.cookie-popup__content p {
    margin: 0;
    flex-grow: 1;
}

.cookie-popup__content a {
    color: white;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero__content, .hero__image {
        flex: none;
        width: 100%;
    }
    
    .service {
        flex-direction: column !important;
    }
    
    .service__image, .service__content {
        flex: none;
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    header nav {
        display: none;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .header__container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        display: none !important;
    }

}

@media (max-width: 480px) {
    section {
        padding: 4rem 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .benefit, .testimonial, .feature, .faq__item {
        min-width: 100%;
    }
} 