/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #1B2845, #243B55);
    color: #FFFFFF;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #21D4FD;
    transition: color 0.3s ease;
}

a:hover {
    color: #D72638;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #D72638;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Header & Navigation */
header {
    background-color: rgba(27, 40, 69, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
}

.logo span {
    color: #21D4FD;
}

.nav-toggle {
    display: none;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    list-style: none;
    margin-left: 25px;
}

.nav-menu a {
    color: #F0F0F0;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #21D4FD;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 150px 0 80px;
    position: relative;
}

.hero-content {
    width: 50%;
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInLeft 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #F0F0F0;
    animation: fadeInLeft 1.2s ease-out;
}

.hero-image {
    width: 50%;
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-section .container {
    display: flex;
    align-items: center;
}

.cta-button {
    display: inline-block;
    background-color: #21D4FD;
    color: #1B2845;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1.4s ease-out;
}

.cta-button:hover {
    background-color: #1B2845;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 212, 253, 0.3);
}

/* About Section */
.about-section {
    background-color: rgba(36, 59, 85, 0.7);
}

.about-content {
    display: flex;
    align-items: center;
}

.about-text {
    width: 60%;
    padding-right: 40px;
}

.about-image {
    width: 40%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: rgba(36, 59, 85, 0.7);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: rgba(33, 212, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
}

.audit-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2321D4FD'%3E%3Cpath d='M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z'/%3E%3C/svg%3E");
}

.internal-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2321D4FD'%3E%3Cpath d='M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M15,12A3,3 0 0,1 12,15A3,3 0 0,1 9,12A3,3 0 0,1 12,9A3,3 0 0,1 15,12Z'/%3E%3C/svg%3E");
}

.advisory-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2321D4FD'%3E%3Cpath d='M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22H9Z'/%3E%3C/svg%3E");
}

.service-card h3 {
    color: #21D4FD;
    margin-bottom: 15px;
}

/* Advantages Section */
.advantages-section {
    background-color: rgba(27, 40, 69, 0.7);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    padding: 25px;
    border-left: 3px solid #D72638;
    transition: all 0.3s ease;
    background-color: rgba(36, 59, 85, 0.7);
    border-radius: 8px;
}

.advantage-item:hover {
    transform: translateX(10px);
    border-left-width: 6px;
}

.advantage-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 6px;
    height: 160px;
}

.advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.advantage-item:hover .advantage-image img {
    transform: scale(1.05);
}

.advantage-item h3 {
    color: #21D4FD;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-slider {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    position: relative;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 30px;
    background-color: rgba(36, 59, 85, 0.7);
    border-radius: 10px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: slideIn 20s infinite alternate;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(33, 212, 253, 0.2);
    position: absolute;
    top: -20px;
    left: -15px;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.author-name {
    font-weight: 600;
    color: #21D4FD;
    margin-bottom: 5px;
}

.author-position {
    font-size: 0.9rem;
    color: #F0F0F0;
}

/* Contact Form Section */
.contact-form-section {
    background-color: rgba(36, 59, 85, 0.7);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(27, 40, 69, 0.8);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-errors {
    max-width: 600px;
    margin: 0 auto 20px;
    padding: 15px;
    background-color: rgba(215, 38, 56, 0.2);
    border-left: 4px solid #D72638;
    border-radius: 5px;
}

.form-errors ul {
    list-style-type: none;
    padding-left: 10px;
}

.form-errors li {
    margin-bottom: 5px;
    color: #FFFFFF;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    background-color: #F0F0F0;
    color: #1B1B1B;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #21D4FD;
    box-shadow: 0 0 0 2px rgba(33, 212, 253, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #21D4FD;
    color: #1B2845;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background-color: #1B2845;
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(33, 212, 253, 0.3);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(36, 59, 85, 0.7);
}

.faq-question {
    padding: 20px;
    background-color: rgba(33, 212, 253, 0.1);
    color: #FFFFFF;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Contact Section */
.contact-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info {
    width: 45%;
}

.contact-map {
    width: 50%;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: #21D4FD;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: rgba(27, 40, 69, 0.9);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    width: 23%;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #21D4FD;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(27, 40, 69, 0.95);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: bottom 0.5s ease-in-out;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0 20px 0 0;
}

.cookie-button {
    background-color: #21D4FD;
    color: #1B2845;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-button:hover {
    background-color: #FFFFFF;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0%, 33.33% {
        transform: translateX(0);
    }
    33.34%, 66.66% {
        transform: translateX(-100%);
    }
    66.67%, 100% {
        transform: translateX(-200%);
    }
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .hero-content {
        width: 60%;
    }

    .hero-image {
        width: 40%;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        width: 100%;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .footer-column {
        width: 48%;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .contact-info,
    .contact-map {
        width: 100%;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    .nav-toggle {
        display: block;
        background: none;
        border: none;
        color: #FFFFFF;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(27, 40, 69, 0.95);
        flex-direction: column;
        padding: 20px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-out;
    }

    .nav-active .nav-menu {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-menu li {
        margin: 15px 0;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-content p {
        margin: 0 0 15px 0;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 120px 0 60px;
    }

    .footer-column {
        width: 100%;
    }
} 