/* 
 * Main styles for Brovenquithalesor financial audit website
 * Color palette:
 * - Main background: #0B0C10 (deep graphite)
 * - Accents: #F8C630 (bright gold)
 * - Headings: #FFFFFF
 * - Text: #DADADA
 * - Buttons and links: #F75C03
 * - Section backgrounds: dark gray / black / dark purple (#2D132C)
 */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 10px base for easier rem calculations */
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #DADADA;
    background-color: #0B0C10;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.2;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.3rem;
    background-color: #F8C630;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #F75C03;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #F8C630;
}

ul {
    list-style: none;
}

section {
    padding: 8rem 0;
}

section:nth-child(odd) {
    background-color: #0B0C10;
}

section:nth-child(even) {
    background-color: #121212;
}

.accent {
    color: #F8C630;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-on-scroll {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-name: fadeIn;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

.delay-5 {
    animation-delay: 1.5s;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 12, 16, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: #FFFFFF;
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #F8C630;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-button {
    background-color: #F75C03;
    color: #FFFFFF !important;
    padding: 0.8rem 1.6rem !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #F8C630;
    transform: translateY(-2px);
}

.nav-button:hover::after {
    display: none;
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.menu-icon {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon::before {
    content: '';
    top: -8px;
}

.menu-icon::after {
    content: '';
    bottom: -8px;
}

/* ---------- Hero Section ---------- */
.hero {
    background: linear-gradient(rgba(11, 12, 16, 0.8), rgba(11, 12, 16, 0.9)), url('./img/OJ8w0d.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 8rem;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 2rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-description {
    max-width: 80rem;
    margin: 0 auto 4rem;
    opacity: 0;
}

.hero-description p {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 1;
}

.cta-button {
    display: inline-block;
    background-color: #F75C03;
    color: #FFFFFF;
    font-size: 1.8rem;
    padding: 1.2rem 3rem;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(247, 92, 3, 0.3);
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 0.4s forwards;
    opacity: 0;
}

.cta-button:hover {
    background-color: #F8C630;
    color: #0B0C10;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(248, 198, 48, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ---------- About Section ---------- */
.about {
    background-color: #121212;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.about-values {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, #1A1A1A, #0B0C10);
    border-left: 4px solid #F8C630;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.value-card h3 {
    color: #F8C630;
    margin-bottom: 1rem;
}

/* ---------- Benefits Section ---------- */
.benefits {
    background-color: #2D132C; /* dark purple */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.icon-container {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #F75C03, #F8C630);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.icon {
    width: 4rem;
    height: 4rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-security {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
}

.icon-growth {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z'/%3E%3C/svg%3E");
}

.icon-compliance {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.icon-strategy {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z'/%3E%3C/svg%3E");
}

.benefit-card h3 {
    margin: 2rem 0 1rem;
}

/* ---------- Services Section ---------- */
.services {
    background-color: #121212;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    flex: 2;
    padding: 3rem;
}

.service-content h3 {
    color: #F8C630;
    margin-bottom: 1.5rem;
}

.service-content ul {
    margin-top: 2rem;
    padding-left: 2rem;
}

.service-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.service-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 0.8rem;
    height: 0.8rem;
    background-color: #F75C03;
    border-radius: 50%;
}

/* ---------- Results Section ---------- */
.results {
    background-color: #0B0C10;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.result-card {
    background: linear-gradient(135deg, #1A1A1A, #0B0C10);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.result-number {
    font-size: 4.8rem;
    font-weight: 700;
    color: #F8C630;
    margin-bottom: 1.5rem;
    line-height: 1;
}

/* ---------- Contact Form ---------- */
.contact {
    background-color: #2D132C;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

form .form-group:last-of-type {
    margin-bottom: 0;
}

form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

form select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #F75C03;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

form select option {
    background-color: #121212;
    color: #FFFFFF;
    padding: 1.5rem;
    font-size: 1.6rem;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #F8C630;
    box-shadow: 0 0 0 2px rgba(248, 198, 48, 0.2);
}

form select:focus,
form select:hover {
    outline: none;
    border-color: #F8C630;
    box-shadow: 0 0 0 3px rgba(248, 198, 48, 0.3);
}

form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23F8C630'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 24px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 1rem;
    margin-top: 0.4rem;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 1.4rem;
}

.submit-button {
    grid-column: 1 / -1;
    background-color: #F75C03;
    color: #FFFFFF;
    font-size: 1.8rem;
    padding: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.submit-button:hover {
    background-color: #F8C630;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(248, 198, 48, 0.3);
}

/* ---------- Testimonials ---------- */
.testimonials {
    background-color: #121212;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    position: relative;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.testimonial-content::before {
    content: """;
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-size: 8rem;
    color: rgba(248, 198, 48, 0.2);
    line-height: 1;
}

.author-name {
    font-weight: 700;
    color: #F8C630;
    margin-bottom: 0.5rem;
}

.author-company {
    font-size: 1.4rem;
    opacity: 0.7;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: #0B0C10;
    color: #DADADA;
    padding: 5rem 0 2rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: #F8C630;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-column ul li i {
    margin-right: 1rem;
    color: #F75C03;
}

.footer-column a {
    color: #DADADA;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #F8C630;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Icon styles for footer */
.icon-phone,
.icon-email,
.icon-address {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F75C03'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.icon-email {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F75C03'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.icon-address {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F75C03'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

/* ---------- Cookie Consent ---------- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 12, 16, 0.95);
    padding: 2rem;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none; /* Initially hidden, will be shown with JS */
}

.cookie-consent p {
    margin-right: 2rem;
    margin-bottom: 0;
}

.cookie-consent button {
    background-color: #F75C03;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent button:hover {
    background-color: #F8C630;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 1024px) {
    html {
        font-size: 58%;
    }
    
    .hero h1 {
        font-size: 4.2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56%;
    }
    
    section {
        padding: 6rem 0;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 12rem 0 6rem;
    }
    
    .hero h1 {
        font-size: 3.6rem;
    }
    
    .service-card,
    .about-content {
        flex-direction: column;
    }
    
    .service-image {
        height: 250px;
    }
    
    .form-container {
        padding: 3rem 2rem;
    }
    
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent p {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    /* Menu button and responsive navigation */
    .menu-button {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background-color: #0B0C10;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1001;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 2rem;
        display: block;
    }
    
    .menu-toggle:checked ~ .menu-button .menu-icon {
        background-color: transparent;
    }
    
    .menu-toggle:checked ~ .menu-button .menu-icon::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .menu-toggle:checked ~ .menu-button .menu-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50%;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero p {
        font-size: 1.8rem;
    }
    
    .results-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        flex-basis: 100%;
    }
} 