/* 
   Color Palette:
   - Biran turquoise: #00D1B2
   - Warm coral: #FF6F61
   - Dark blue: #003B5C
   - Light cream background: #FAF3E0
   - Neutral gray: #4A4A4A
*/

/* Global Styles */
:root {
    --turquoise: #00D1B2;
    --coral: #FF6F61;
    --dark-blue: #003B5C;
    --cream: #FAF3E0;
    --gray: #4A4A4A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray);
    background-color: var(--cream);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--turquoise);
    margin: 0.8rem auto;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--turquoise);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--coral);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 4rem 0;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    height: 50px;
}

.nav-toggle {
    display: none;
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--dark-blue);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--turquoise);
    transition: width 0.3s;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 7rem 0 4rem;
    background: linear-gradient(135deg, rgba(0, 59, 92, 0.9) 0%, rgba(0, 209, 178, 0.85) 100%);
    color: #fff;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-section h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--coral);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #ff5a4b;
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* Company Section */
.company-section {
    background-color: #fff;
}

.company-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.company-text {
    flex: 1.2;
}

.company-image {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    background-color: var(--cream);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, .service-card p {
    padding: 0 1.5rem;
}

.service-card h3 {
    margin-top: 1rem;
}

.service-link {
    display: inline-block;
    margin: 1rem 1.5rem 1.5rem;
    color: var(--turquoise);
    font-weight: 600;
    position: relative;
}

.service-link:after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin 0.3s;
}

.service-link:hover:after {
    margin-left: 0.75rem;
}

/* Benefits Section */
.benefits-section {
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text p {
    font-style: italic;
    color: var(--dark-blue);
    position: relative;
}

.testimonial-text p:before, .testimonial-text p:after {
    content: '"';
    font-size: 2rem;
    color: var(--turquoise);
    opacity: 0.5;
}

.testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eaeaea;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    color: var(--coral);
}

.testimonial-author p {
    font-size: 0.9rem;
    margin: 0;
}

/* Process Section */
.process-section {
    background-color: #fff;
    position: relative;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--turquoise);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 209, 178, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--cream);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-item h3:before {
    content: '►';
    color: var(--turquoise);
    position: absolute;
    left: 0;
    top: 0;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
}

.contact-container {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

.submit-button {
    display: inline-block;
    background-color: var(--turquoise);
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: var(--dark-blue);
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: #fff;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--turquoise);
    margin-top: 0.8rem;
}

.footer-col p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-col ul {
    list-style-type: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li a:hover {
    color: var(--turquoise);
}

.copyright {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-blue);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    z-index: 1000;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    margin-right: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: var(--turquoise);
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #00b89c;
}

.cookie-btn.info {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.cookie-btn.info:hover {
    border-color: #fff;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content {
        margin-bottom: 2rem;
        padding-right: 0;
        text-align: center;
    }
    
    .hero-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .company-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .nav-toggle {
        display: block;
        font-size: 1.5rem;
        background: none;
        border: none;
        color: var(--dark-blue);
        cursor: pointer;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease;
        z-index: 1000;
    }
    
    nav.active ul {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        display: block;
        padding: 0.75rem 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .services-grid, .benefits-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
} 