/* 
   Financial Audit SA Website Styles
   Colors:
   - Primary: #00FFD1 (neonic aquamarine)
   - Secondary: #1A1A1A (graphite black)
   - Accent: #FFC857 (sunny amber)
   - Text: #F9F9F9 (snow white)
   - Background gradient: grey-blue to turquoise
*/

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #F9F9F9;
    background: linear-gradient(135deg, #2B303A 0%, #0A2E41 50%, #12756D 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #00FFD1;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFC857;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #00FFD1;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: #00FFD1;
    color: #1A1A1A;
}

.btn-primary:hover {
    background: #FFC857;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 209, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00FFD1;
    border: 2px solid #00FFD1;
}

.btn-secondary:hover {
    background: rgba(0, 255, 209, 0.1);
    transform: translateY(-3px);
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #F9F9F9;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-links a:not(.btn):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #00FFD1;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover:after {
    width: 100%;
}

.nav-links .nav-cta {
    margin-left: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #F9F9F9;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url('../img/xXvOCt.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 700px;
    margin-top: 60px;
}

.hero-content h1 {
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: rgba(26, 26, 26, 0.8);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00FFD1;
    margin: 20px 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: rgba(26, 26, 26, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 15px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-info h4 {
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 209, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(249, 249, 249, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(26, 26, 26, 0.7);
    border-left: 4px solid #00FFD1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(26, 26, 26, 0.9);
}

.info-icon {
    flex-shrink: 0;
}

.info-text h3 {
    color: #00FFD1;
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.info-text p {
    margin-bottom: 5px;
    line-height: 1.4;
}

.info-text p:last-child {
    font-size: 0.9rem;
    opacity: 0.7;
}

.contact-social {
    background: rgba(26, 26, 26, 0.7);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #FFC857;
    margin-top: 10px;
}

.contact-social h3 {
    margin-bottom: 20px;
    color: #FFC857;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    transition: all 0.3s ease;
    display: inline-flex;
    padding: 10px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 50%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(0, 255, 209, 0.2);
}

.contact-message {
    background: rgba(26, 26, 26, 0.7);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-top: 4px solid #00FFD1;
}

.contact-message h3 {
    margin-bottom: 15px;
    color: #00FFD1;
    font-size: 1.6rem;
}

.contact-message p {
    margin-bottom: 25px;
    color: rgba(249, 249, 249, 0.9);
}

.contact-quick-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-quick-form input,
.contact-quick-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid rgba(249, 249, 249, 0.15);
    background: rgba(26, 26, 26, 0.5);
    color: #F9F9F9;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-quick-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-quick-form input:focus,
.contact-quick-form textarea:focus {
    border-color: #00FFD1;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 209, 0.3);
}

.contact-quick-form button {
    padding: 15px 30px;
    align-self: flex-start;
    font-size: 1rem;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    background: linear-gradient(135deg, rgba(43, 48, 58, 0.9) 0%, rgba(10, 46, 65, 0.9) 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-top: 4px solid #00FFD1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid rgba(249, 249, 249, 0.15);
    background: rgba(26, 26, 26, 0.5);
    color: #F9F9F9;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #00FFD1;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 209, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.form-container button[type="submit"] {
    padding: 15px 30px;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1A1A1A;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-info p {
    opacity: 0.8;
    max-width: 300px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(249, 249, 249, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    section {
        padding: 60px 0;
    }
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .nav-links .nav-cta {
        margin: 15px 0 0;
    }
    .hero-content {
        text-align: center;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .info-card {
        padding: 20px;
    }
    .contact-message {
        padding: 25px;
    }
    .contact-quick-form input,
    .contact-quick-form textarea {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .form-container {
        padding: 30px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
} 