/* 
   Finwise Consulting Stylesheet
   Color Palette:
   - Main Background: #F5F4ED (warm light beige)
   - Primary Accent: #346C7C (deep blue-green)
   - Secondary Accent: #FFB347 (bright orange-gold)
   - Text: #333333 (dark gray)
   - White: #FFFFFF
*/

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    background-color: #F5F4ED;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #346C7C;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #346C7C;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFB347;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 4rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #FFB347 0%, #346C7C 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(52, 108, 124, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 6px 10px rgba(52, 108, 124, 0.3);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn-secondary {
    background-color: #346C7C;
    color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(52, 108, 124, 0.2);
}

.btn-secondary:hover {
    background-color: #2A5A68;
    box-shadow: 0 6px 10px rgba(52, 108, 124, 0.3);
    transform: translateY(-2px);
    color: #FFFFFF;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: #333333;
    font-weight: 600;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #346C7C;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 999;
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner p {
    margin-bottom: 0;
    flex: 1;
}

/* Hero Section */
.hero-section {
    background-color: #346C7C;
    color: #FFFFFF;
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero-section h1, .hero-section p {
    color: #FFFFFF;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    background-color: #FFFFFF;
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    background-color: #F5F4ED;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, .service-card p, .service-card .price, .service-card .btn {
    padding: 0 1.5rem;
}

.service-card h3 {
    margin-top: 1.5rem;
}

.service-card .price {
    font-weight: 700;
    color: #FFB347;
    font-size: 1.25rem;
    margin: 1rem 0;
}

.service-card .btn {
    margin: 1.5rem 1.5rem 2rem;
    display: block;
}

/* Why Choose Us Section */
.why-us-section {
    background-color: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #F5F4ED;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider input {
    display: none;
}

.testimonials {
    overflow: hidden;
    position: relative;
    height: 200px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#t1:checked ~ .testimonials #testimonial1,
#t2:checked ~ .testimonials #testimonial2,
#t3:checked ~ .testimonials #testimonial3 {
    opacity: 1;
    visibility: visible;
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-weight: 600;
    color: #346C7C;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-controls label {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #DDD;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#t1:checked ~ .testimonial-controls label:nth-child(1),
#t2:checked ~ .testimonial-controls label:nth-child(2),
#t3:checked ~ .testimonial-controls label:nth-child(3) {
    background-color: #346C7C;
}

/* FAQ Section */
.faq-section {
    background-color: #FFFFFF;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item input {
    display: none;
}

.faq-item label {
    display: block;
    padding: 1.5rem;
    background-color: #F5F4ED;
    color: #346C7C;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-item label:hover {
    background-color: #E5E4DD;
}

.faq-item label::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item input:checked + label::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #FFFFFF;
    padding: 0 1.5rem;
}

.faq-item input:checked ~ .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

/* Contact Section */
.contact-section {
    background-color: #F5F4ED;
}

.contact-content {
    display: flex;
    gap: 2rem;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 2;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.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.75rem;
    border: 1px solid #DDD;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

/* Footer */
.site-footer {
    background-color: #346C7C;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h3 {
    color: #FFFFFF;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #FFFFFF;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

address {
    font-style: normal;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 2rem;
    }
    
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        height: 30px;
        width: 30px;
        position: relative;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #346C7C;
        position: absolute;
        transition: all 0.3s ease;
    }
    
    .nav-toggle-label span {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
    }
    
    .nav-toggle-label span::before {
        top: -10px;
    }
    
    .nav-toggle-label span::after {
        bottom: -10px;
    }
    
    .nav-toggle:checked ~ .nav-menu {
        right: 0;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span {
        background-color: transparent;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .cookie-banner .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-section {
        padding: 7rem 0 3rem;
    }
    
    .testimonials {
        height: 250px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .testimonials {
        height: 300px;
    }
} 