/* AUDITIVA GLOBAL - Main Styles */

/* Variables */
:root {
    --dark-indigo: #0E1D2F;
    --sunny-yellow: #F9C22E;
    --bright-magenta: #EF476F;
    --milk-white: #F2F2F2;
    --steel-gray: #9DB4C0;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: var(--dark-indigo);
    color: var(--milk-white);
    line-height: 1.6;
    padding-top: 5rem; /* Space for fixed header */
}

a {
    color: var(--sunny-yellow);
    text-decoration: none;
    transition: var(--transition);
}

a:hover, a:focus {
    color: var(--bright-magenta);
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Typography */
h1, h2, h3, h4, h5 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--sunny-yellow);
}

h3 {
    font-size: 1.5rem;
    color: var(--milk-white);
}

p {
    margin-bottom: 1.5rem;
    color: var(--steel-gray);
}

.text-accent {
    color: var(--bright-magenta);
}

.text-highlight {
    color: var(--sunny-yellow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--sunny-yellow);
    color: var(--dark-indigo);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover, .btn:focus {
    background-color: var(--bright-magenta);
    color: var(--milk-white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--sunny-yellow);
    color: var(--sunny-yellow);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--sunny-yellow);
    color: var(--dark-indigo);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-indigo);
    padding: 0.5rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: 0.5rem;
    color: var(--milk-white);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav a {
    color: var(--milk-white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

nav a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sunny-yellow);
    transition: var(--transition);
}

nav a:hover:after, nav a:focus:after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(14, 29, 47, 0.9) 0%, rgba(14, 29, 47, 0.7) 100%), url('./img/fczVm5.jpg') center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 5rem 1rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--milk-white);
    animation: fadeInUp 1s ease;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: rgba(255, 255, 255, 0.03);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--sunny-yellow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--sunny-yellow);
    margin-bottom: 1rem;
}

.service-title {
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: rgba(255, 255, 255, 0.03);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.benefit-image {
    height: 180px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.benefit-item:hover .benefit-image img {
    transform: scale(1.05);
}

.benefit-content {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    color: var(--sunny-yellow);
    font-size: 1.5rem;
    min-width: 30px;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.client {
    display: flex;
    align-items: center;
}

.client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.client-details {
    font-size: 0.9rem;
}

.client-name {
    font-weight: 600;
    color: var(--milk-white);
}

.client-position {
    color: var(--steel-gray);
}

/* Visual Block */
.visual-block {
    padding: 5rem 0;
}

.visual-block .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.visual-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.visual-item:hover img {
    transform: scale(1.05);
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background-color: rgba(255, 255, 255, 0.03);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.07);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--milk-white);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    background-color: #FFFFFF;
    border: 2px solid var(--sunny-yellow);
    border-radius: 5px;
    color: var(--dark-indigo);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--bright-magenta);
    box-shadow: 0 0 0 2px rgba(239, 71, 111, 0.3);
}

select.form-control {
    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='%230E1D2F' 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 0.7rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-check-input {
    margin-top: 0.2rem;
    margin-right: 0.8rem;
    min-width: 18px;
    height: 18px;
}

.form-check-label {
    font-size: 0.9rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.alert-danger {
    background-color: rgba(239, 71, 111, 0.2);
    border: 1px solid var(--bright-magenta);
    color: var(--milk-white);
}

.alert-danger ul {
    margin: 0;
    padding-left: 1.5rem;
}

.alert-danger p {
    margin-bottom: 0;
    color: var(--milk-white);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info, .contact-map {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--sunny-yellow);
    margin-right: 1rem;
    min-width: 30px;
}

.contact-map img {
    width: 100%;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--sunny-yellow);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--bright-magenta);
    height: 2px;
    width: 50px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--steel-gray);
}

.footer-links a:hover {
    color: var(--milk-white);
    margin-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--steel-gray);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1.5rem;
    background-color: var(--bright-magenta);
    color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 9999;
    animation: slideIn 0.5s forwards;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 4rem;
    }
    .services-grid, .testimonials-grid, .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .contact-info{
        padding: 1rem;
    }
    .header-inner {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 0.5rem;
    }
    
    .hero {
        height: auto;
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .benefits-list {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .benefit-image {
        height: 160px;
    }
    
    .visual-block .container {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 3.5rem;
    }
    
    .header-inner {
        padding: 0.3rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    nav ul {
        display:none;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    .hero {
        padding: 1.5rem 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
    }
} 