/* Main Styles for Cytranoventora Financial Auditing Website */

/* Base Styles */
:root {
    --primary-bg: #121c2b;
    --secondary-bg: #0f2e3c;
    --accent-1: #fbbf24;
    --accent-2: #00e0a1;
    --text-light: #ffffff;
    --text-main: #d1d5db;
    --button-gradient: linear-gradient(135deg, #fbbf24, #f97316);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent-1);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-2);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 0;
}

/* Header Styles */
header {
    background-color: var(--primary-bg);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo span {
    color: var(--accent-1);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-light);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--accent-1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-toggle a {
    color: var(--text-light);
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, var(--primary-bg), var(--secondary-bg));
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: 0;
    width: 100%;
    height: 10%;
    background: linear-gradient(to top right, var(--primary-bg) 50%, transparent 50%);
    z-index: 1;
}

.hero-content {
    width: 100%;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
    color: var(--text-light);
}

/* Mobile responsive styles for hero section */
@media (max-width: 768px) {
    .hero {
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        min-height: calc(100vh - 60px);
    }
}

/* About Section */
.about {
    background-color: var(--secondary-bg);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.about-content {
    display: flex;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    background-color: var(--primary-bg);
}

.services-title {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--secondary-bg);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--button-gradient);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-1);
}

/* Service images styles */
.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits {
    background-color: var(--secondary-bg);
}

.benefits-title {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-2);
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--primary-bg);
}

.testimonials-title {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--secondary-bg);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(251, 191, 36, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--secondary-bg);
}

.contact-form-container {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info-image {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.form-container {
    flex: 2;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-title {
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.3);
}

/* Form select enhanced styling */
.form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    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='none' stroke='%23fbbf24' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    color: var(--text-light) !important;
    font-weight: 500;
    border: 2px solid rgba(251, 191, 36, 0.3);
    cursor: pointer;
    padding-right: 2.5rem;
}

.form-select option {
    background-color: var(--secondary-bg);
    color: var(--text-light);
    padding: 10px;
}

.form-select:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.5);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: var(--button-gradient);
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

/* FAQ Section */
.faq {
    background-color: var(--primary-bg);
}

.faq-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: var(--secondary-bg);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: block;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

/* Map Section */
.map-section {
    background-color: var(--secondary-bg);
    padding-bottom: 0;
}

.map-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 28, 43, 0.9);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

/* Footer */
footer {
    background-color: #0b141f;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: var(--secondary-bg);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.cookie-text {
    flex: 1;
    margin-right: 2rem;
}

.cookie-accept {
    background: var(--button-gradient);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

/* Policy Pages */
.policy-content {
    background-color: var(--secondary-bg);
    border-radius: 10px;
    padding: 3rem;
    margin: 2rem auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Fix for policy pages to have consistent header */
.content {
    padding-top: 80px;
}

.policy-content h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul {
    margin: 1rem 0 1rem 2rem;
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    background-color: var(--primary-bg);
}

.thank-you-box {
    background-color: var(--secondary-bg);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.thank-you-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--button-gradient);
}

.thank-you-content {
    padding: 3rem;
    text-align: center;
}

.thank-you h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-1);
}

.thank-you p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you .cta-button {
    margin-top: 1rem;
    display: inline-block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content,
    .contact-form-container {
        flex-direction: column;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-bg);
        transition: all 0.5s ease;
        z-index: 1001;
        padding-top: 5rem;
    }
    
    nav.active,
    nav.open {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 1rem 0;
        text-align: center;
    }
    
    .close-menu {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-light);
    }
}

@media (max-width: 576px) {
    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }

    .thank-you-content {
        padding: 2rem;
    }
    
    .thank-you h1 {
        font-size: 2rem;
    }
    
    .thank-you p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
    }
}

.glow-effect {
    animation: glow 3s infinite;
} 