/* 
* LucentLedger - Main Stylesheet
* Colors:
* - Primary: #FFC107 (bright saffron)
* - Accent: #007BFF (azure ocean)
* - Text: #2E2E2E (coal gray)
* - Background: #F5F5F5 (light fog gray)
* - Buttons: #111111 (onyx black) / #FFFFFF (white)
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2E2E2E;
    background-color: #F5F5F5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2E2E2E;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FFC107;
    margin: 15px auto;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #007BFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFC107;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

section {
    padding: 5rem 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #111111;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #FFC107;
    color: #111111;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: #111111;
    border: 2px solid #111111;
}

.btn-secondary:hover {
    background-color: #111111;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Header Styles */
header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E2E2E;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: #2E2E2E;
    position: relative;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #FFC107;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFC107;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hamburger Menu (CSS-only) */
.hamburger-menu {
    display: none;
    cursor: pointer;
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-content {
    flex: 1;
    min-width: 200px;
    padding-right: 2rem;
}

.hero-content h1 {
    color: #2E2E2E;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* About Section */
.about {
    background-color: #FFFFFF;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 200px;
    padding-right: 2rem;
}

.about-text h3 {
    color: #007BFF;
    margin-top: 1.5rem;
}

.about-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
}

.about-image {
    flex: 1;
    min-width: 200px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    background-color: #F5F5F5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.service-card h3 {
    color: #007BFF;
    padding: 20px 20px 10px;
}

.service-card p {
    padding: 0 20px 20px;
}

/* Benefits Section */
.benefits {
    background-color: #FFFFFF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    background-color: #F5F5F5;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    color: #FFC107;
    margin-bottom: 1rem;
    font-weight: bold;
}

.benefit-item h3 {
    color: #007BFF;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #F5F5F5;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 200px;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 5rem;
    color: rgba(255, 193, 7, 0.1);
    position: absolute;
    top: 10px;
    left: 10px;
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-info strong {
    color: #007BFF;
}

.client-info span {
    font-size: 0.9rem;
    color: #777;
}

/* FAQ Section */
.faq {
    background-color: #FFFFFF;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background-color: #F5F5F5;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #007BFF;
    transition: transform 0.3s ease;
}

.faq-answer {
    background-color: #FFFFFF;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item:target .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-item:target .faq-toggle {
    transform: rotate(45deg);
}

/* Contact Section */
.contact {
    background-color: #F5F5F5;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 200px;
}

.contact-info h3 {
    color: #007BFF;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-label {
    font-weight: 600;
    color: #2E2E2E;
    margin-right: 0.5rem;
}

.contact-form {
    flex: 1;
    min-width: 200px;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007BFF;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

/* Form Errors */
.form-errors {
    background-color: #fff0f0;
    border-left: 4px solid #ff5252;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.form-errors ul {
    margin: 0;
    padding-left: 20px;
}

.form-errors li {
    color: #c30000;
    margin-bottom: 5px;
}

.form-error-message {
    background-color: #fff0f0;
    border-left: 4px solid #ff5252;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.form-error-message p {
    color: #c30000;
    margin: 0;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #111111;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    color: #FFC107;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFC107;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Cookie Consent */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    max-width: 500px;
    width: 90%;
}

.cookie-popup p {
    margin-bottom: 0;
}

.cookie-popup .btn {
    padding: 8px 20px;
}

/* CSS only for mobile navigation (no JS) */
@media (max-width: 768px) {
    .hamburger-menu {
        display: none;
        width: 30px;
        height: 20px;
        position: relative;
    }
    
   
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: #FFFFFF;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 100;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 30px;
        font-size: 1.2rem;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        right: 0;
    }
    
    .menu-toggle:checked ~ .hamburger-menu span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle:checked ~ .hamburger-menu span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .hamburger-menu span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Menu backdrop */
    .menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 90;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .menu-toggle:checked ~ .menu-backdrop {
        opacity: 1;
        visibility: visible;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-content,
    .hero-image,
    .about-text,
    .about-image {
        flex: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
} 