/* 
* Main Stylesheet
* Color Palette:
* - Main: #1FBFC1 (Turquoise)
* - Secondary: #1B1B1B (Coal Black)
* - Accent: #F9E13B (Lemon Yellow)
* - Background: #FDFCFB (Milk White)
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-main: #1FBFC1;
    --color-secondary: #1B1B1B;
    --color-accent: #F9E13B;
    --color-background: #FDFCFB;
    --color-text: #333333;
    --color-light-gray: #f5f5f5;
    --color-medium-gray: #e0e0e0;
    --color-dark-gray: #888888;
    
    --transition-speed: 0.3s;
    --border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--color-secondary);
    background-color: var(--color-background);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-main);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
    color: var(--color-main);
}

p {
    margin-bottom: 20px;
    font-size: 1rem;
}

a {
    color: var(--color-main);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

section {
    padding: 80px 0;
}

/* Header Styles */
.header {
    background-color: var(--color-background);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.nav-toggle {
    display: none;
}

.nav {
    display: flex;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav li {
    margin-left: 30px;
}

.nav a {
    font-weight: 600;
    color: var(--color-secondary);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-accent);
    transition: width var(--transition-speed) ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-main), #16999B);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 100%;
    top: -30%;
    left: -25%;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 100%;
    bottom: -30%;
    right: -25%;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 span {
    color: var(--color-accent);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s 0.2s ease-out both;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-secondary);
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 30px;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    animation: fadeInUp 1s 0.4s ease-out both;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: white;
    color: var(--color-main);
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed) ease;
}

.about-image:hover {
    transform: scale(1.03);
}

.about-text {
    flex: 1;
}

.about-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-text li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.about-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

/* Advantages Section */
.advantages {
    background-color: var(--color-light-gray);
    position: relative;
    overflow: hidden;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.advantage-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-light-gray);
    overflow: hidden;
}

.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--color-light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--color-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed) ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card.featured {
    background-color: var(--color-main);
    color: white;
    transform: translateY(-10px) scale(1.05);
}

.service-card.featured h3 {
    color: white;
}

.service-card.featured::after {
    background-color: var(--color-accent);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-card ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.service-card li {
    margin-bottom: 8px;
}

.service-button {
    display: inline-block;
    background-color: var(--color-main);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: auto;
    align-self: flex-start;
    transition: all var(--transition-speed) ease;
}

.service-card.featured .service-button {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

.service-button:hover {
    background-color: var(--color-secondary);
    color: white;
    transform: translateY(-3px);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--color-main);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    font-family: serif;
    position: absolute;
    top: -20px;
    left: -10px;
    color: var(--color-medium-gray);
    opacity: 0.5;
}

.testimonial-author {
    font-weight: bold;
    color: var(--color-main);
    margin-top: 20px;
}

/* Steps Section */
.steps {
    background-color: white;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: var(--color-medium-gray);
    z-index: 0;
}

.step {
    text-align: center;
    padding: 0 20px;
    flex: 1;
    min-width: 180px;
    max-width: 200px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

/* Contact Form Section */
.contact {
    background-color: var(--color-light-gray);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-main);
    box-shadow: 0 0 0 2px rgba(31, 191, 193, 0.2);
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
}

.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.submit-button {
    background-color: var(--color-main);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: block;
    width: 100%;
    margin-top: 30px;
}

.submit-button:hover {
    background-color: var(--color-accent);
    color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: var(--color-secondary);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 30px;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.footer h4 {
    color: var(--color-accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    transition: all var(--transition-speed) ease;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-dark-gray);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--color-secondary);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transition: bottom 0.5s ease, opacity 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
    opacity: 1;
}

.cookie-banner p {
    margin: 0;
    flex-grow: 1;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-button {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-speed) ease;
}

.cookie-button.accept {
    background-color: var(--color-main);
    color: white;
}

.cookie-button.info {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.cookie-button.accept:hover {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

.cookie-button.info:hover {
    background-color: white;
    color: var(--color-secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .advantages-grid, 
    .services-grid, 
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--color-secondary);
        cursor: pointer;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform var(--transition-speed) ease;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav ul {
        flex-direction: column;
    }
    
    .nav li {
        margin: 10px 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, 
    .about-text {
        flex: none;
        width: 100%;
    }
    
    .steps-container::before {
        width: 2px;
        height: 80%;
        top: 10%;
        left: 30px;
    }
    
    .step {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        text-align: left;
        margin-bottom: 30px;
    }
    
    .step-number {
        margin: 0 20px 0 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .advantages-grid, 
    .services-grid, 
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Policy Page Styles */
.policy-page {
    padding-top: 120px;
    padding-bottom: 80px;
}

.policy-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.policy-content h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-top: 30px;
}

.policy-content h2::after {
    left: 0;
    transform: none;
    width: 50px;
}

.back-button {
    display: inline-block;
    background-color: var(--color-main);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.back-button:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Thank You Page Styles */
.thank-you {
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-checkmark {
    margin: 40px auto;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scaleCheckmark 0.5s ease-in-out forwards;
}

@keyframes scaleCheckmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
} 