/* 
   Main Stylesheet for Audit Financial Website
   Colors:
   - Orange Gradient: #FF7E5F → #FEB47B
   - Blue Gradient: #1A2980 → #26D0CE
   - Mint: #A8E6CF
   - Text: #444 on light, white on dark
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #1A2980;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF7E5F;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #1A2980;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #FF7E5F, #FEB47B);
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: linear-gradient(to right, #FF7E5F, #FEB47B);
    color: white;
}

.cta-button.primary:hover {
    background: linear-gradient(to right, #FEB47B, #FF7E5F);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A2980;
    background: linear-gradient(to right, #1A2980, #26D0CE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo-text:hover {
    background: linear-gradient(to right, #FF7E5F, #FEB47B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #1A2980;
    transition: all 0.3s ease;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    color: #1A2980;
    font-weight: 600;
    position: relative;
}

.main-nav ul li a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #FF7E5F, #FEB47B);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover:before {
    width: 100%;
}

/* Hero Section Styles */
.hero-section {
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(45deg, #1A2980, #26D0CE);
    color: white;
}

.hero-content {
    max-width: 50%;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero-image {
    max-width: 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    max-width: 50%;
    padding-right: 40px;
}

.about-image {
    max-width: 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits-section {
    background-color: #f5f5f5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin: 0 auto 20px;
    color: #1A2980;
    font-size: 3rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(45deg, #1A2980, #26D0CE);
    color: white;
}

.services-section .section-title {
    color: white;
}

.services-section .section-title:after {
    background: linear-gradient(to right, #FEB47B, #FF7E5F);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    color: white;
}

.service-card p {
    padding: 0 20px;
    margin-bottom: 20px;
}

.service-card ul {
    list-style-position: inside;
    padding: 0 20px 20px;
}

.service-card ul li {
    margin-bottom: 5px;
}

/* Infographic Section */
.infographic-section {
    background-color: white;
}

.infographic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.infographic-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    margin: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.infographic-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #FF7E5F, #FEB47B);
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.infographic-arrow {
    display: flex;
    align-items: center;
    color: #A8E6CF;
    font-size: 1.5rem;
}

.infographic-arrow:after {
    content: '→';
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(45deg, #FEB47B, #FF7E5F);
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-title:after {
    background-color: white;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 30px;
}

.testimonial-content {
    background-color: rgba(255, 255, 255, 0.9);
    color: #444;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.testimonial-author {
    margin-top: 20px;
    text-align: center;
}

/* Contact Section */
.contact-section {
    background-color: #f5f5f5;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    margin-right: 30px;
    margin-bottom: 30px;
}

.contact-info-image {
    max-width: 280px;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-form {
    flex: 2;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-label span, .checkbox-label span {
    margin-left: 8px;
}

.submit-button {
    background: linear-gradient(to right, #1A2980, #26D0CE);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: linear-gradient(to right, #26D0CE, #1A2980);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    padding: 15px 20px;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #1A2980;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #FF7E5F;
    font-weight: bold;
}

.faq-answer {
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    height: auto;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer Styles */
footer {
    background: linear-gradient(45deg, #1A2980, #26D0CE);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #FF7E5F, #FEB47B);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    opacity: 0.8;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-section a {
    color: white;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-popup.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    margin-right: 20px;
}

#cookie-accept {
    background: linear-gradient(to right, #FF7E5F, #FEB47B);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.cookie-more-info {
    color: white;
    text-decoration: underline;
}

/* Policy pages common styling */
.policy-section {
    padding: 150px 0 80px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-content h1 {
    font-size: 2.5rem;
    color: #1A2980;
    margin-bottom: 20px;
    text-align: center;
}

.policy-block {
    margin-bottom: 30px;
}

.policy-block h2 {
    font-size: 1.5rem;
    color: #1A2980;
    margin-bottom: 15px;
}

.policy-block ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-block li {
    margin-bottom: 5px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    section {
        padding: 60px 0;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-image {
        max-width: 80%;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .about-image {
        max-width: 80%;
    }
    
    .infographic {
        flex-direction: column;
    }
    
    .infographic-item {
        max-width: 100%;
    }
    
    .infographic-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .contact-info {
        margin-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .menu-toggle:checked ~ .menu-icon .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle:checked ~ .menu-icon .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        background-color: white;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:checked ~ .main-nav {
        height: auto;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav ul li {
        margin: 0 0 15px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
} 