/* 
   Financial Audit Services Website Style
   Color scheme: Emerald (#50C878), Coal gray (#333333), Mint (#B2F1E1), 
   Sand beige (#EFD9B4), Lemon accent (#FFF44F)
   Fonts: Poppins, Open Sans
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

/* Base Styles */
:root {
    --emerald: #50C878;
    --coal-gray: #333333;
    --mint: #B2F1E1;
    --sand-beige: #EFD9B4;
    --lemon: #FFF44F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
    font-size: 16px; /* Base font size */
}

section[id] {
    scroll-margin-top: 40px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--coal-gray);
    background: linear-gradient(135deg, var(--mint) 0%, var(--sand-beige) 100%);
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2:after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--emerald);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

a {
    color: var(--emerald);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--coal-gray);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--emerald) 0%, #3aa45d 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(80, 200, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(80, 200, 120, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--emerald);
    border: 2px solid var(--emerald);
}

.btn-secondary:hover {
    background: var(--emerald);
    color: white;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--coal-gray);
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin: 0 1rem;
}

.nav-link {
    padding: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--coal-gray);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--emerald);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

#menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: relative;
        width: 30px;
        height: 22px;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--coal-gray);
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: all 0.25s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 0px;
    }

    .hamburger span:nth-child(2) {
        top: 9px;
    }

    .hamburger span:nth-child(3) {
        top: 18px;
    }

    #menu-toggle:checked + .hamburger span:nth-child(1) {
        top: 9px;
        transform: rotate(135deg);
    }

    #menu-toggle:checked + .hamburger span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    #menu-toggle:checked + .hamburger span:nth-child(3) {
        top: 9px;
        transform: rotate(-135deg);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding-top: 80px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    #menu-toggle:checked ~ .nav-menu {
        right: 0;
    }

    .nav-item {
        margin: 1rem 2rem;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('img/RNFlp.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.7);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 300px;
    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-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(178, 241, 225, 0.2);
    border-radius: 50%;
}

.service-card h3 {
    color: var(--emerald);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.benefit-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.benefit-content {
    padding: 1.5rem;
    text-align: center;
}

.benefit-item h3 {
    color: var(--emerald);
    margin-bottom: 1rem;
}

/* Steps Section */
.steps-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.7);
}

.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 4px;
    background: var(--emerald);
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.step:nth-child(odd) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--emerald);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.step-content {
    width: 45%;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step:nth-child(odd) .step-content {
    margin-right: 2rem;
}

.step:nth-child(even) .step-content {
    margin-left: 2rem;
}

/* Form Section - Enhanced with unique design */
.form-section {
    padding: 6rem 0;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(178, 241, 225, 0.7) 0%, rgba(239, 217, 180, 0.7) 100%);
    z-index: -1;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--emerald) 0%, var(--lemon) 100%);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--coal-gray);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f8f8;
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23333333" d="M7,10L12,15L17,10H7Z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.form-group select option {
    background-color: #f8f8f8;
    color: var(--coal-gray);
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(80, 200, 120, 0.2);
    background-color: #fff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--emerald);
}

.checkbox-group label {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

.checkbox-group a {
    text-decoration: underline;
    font-weight: 600;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-top: 1rem;
}


/* Policy pages styling */
.policy-section {
    padding: 120px 0 60px;
}

.policy-section h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--emerald);
}

.policy-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-last-updated {
    text-align: right;
    font-style: italic;
    margin-bottom: 2rem;
    color: #777;
}

.policy-content h2 {
    color: var(--coal-gray);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: left;
}

.policy-content h2:after {
    display: none;
}

.policy-content p, .policy-content ul {
    margin-bottom: 1rem;
}

.policy-content ul {
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(80, 200, 120, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 0.2rem;
    color: var(--emerald);
}

.testimonial-info p {
    font-size: 0.9rem;
    color: #777;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.7);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    margin-right: 1rem;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    color: var(--emerald);
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
    background: var(--coal-gray);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-about h3 {
    color: var(--emerald);
    margin-bottom: 1.5rem;
}

.footer-links h3 {
    color: var(--emerald);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--emerald);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: bottom 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-right: 2rem;
    flex: 1;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
    
    .container {
        width: 95%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .step-content {
        width: 40%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .policy-section {
        padding: 100px 0 40px;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 13px;
    }
    
    .header-container {
        padding: 0.8rem 1.5rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .steps-timeline::before {
        left: 30px;
    }
    
    .step {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .step-number {
        left: -12px;
    }
    
    .step-content {
        width: 100%;
        margin: 0 !important;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-section {
        height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .service-card {
        min-width: 100%;
    }
    
    .testimonial-content::before {
        font-size: 3rem;
    }
    
    .contact-form {
        padding: 1.8rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.8rem;
    }
    
    .checkbox-group label {
        font-size: 0.85rem;
    }
    
    .policy-content h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 12px;
    }
    
    .container {
        width: 90%;
        padding: 1rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    h2:after {
        bottom: -10px;
        width: 60px;
        height: 3px;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-image {
        height: 150px;
    }
    
    .benefit-content {
        padding: 1.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom {
        padding-top: 2rem;
        margin-top: 1.5rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    .faq-toggle:checked ~ .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .policy-section h1 {
        font-size: 1.8rem;
    }
    
    .policy-content {
        padding: 1.2rem;
    }
} 