:root {
    --ocean-blue: #006994;
    --ocean-deep: #004866;
    --coral-accent: #FF6B6B;
    --coral-light: #FF8E8E;
    --coral-dark: #E55555;
    --white-soft: #FAFBFC;
    --gray-light: #E8ECF0;
    --gray-medium: #C5CED6;
    --gray-dark: #3A4A5A;
    --text-primary: #1A2A3A;
    --text-secondary: #5A6A7A;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --wave-gradient: linear-gradient(135deg, #006994 0%, #004866 50%, #FF6B6B 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--white-soft);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

strong {
    color: inherit;
}

p {
    color: inherit;
}

a {
    color: var(--ocean-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--coral-accent);
}

.hero-section {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--wave-gradient);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.85) 0%, rgba(0, 72, 102, 0.75) 50%, rgba(255, 107, 107, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-title, .hero-subtitle {
    color: white;
}

.primary-button {
    background: var(--coral-accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.primary-button:hover {
    background: var(--coral-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.secondary-button {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.secondary-button:hover {
    background: white;
    color: var(--ocean-blue);
}

.section-padding {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 105, 148, 0.1);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 105, 148, 0.15);
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 105, 148, 0.12);
    border-color: var(--ocean-blue);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-deep) 100%);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral-accent);
    margin-bottom: 1rem;
}

.service-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--ocean-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.service-button:hover {
    background: var(--ocean-deep);
    color: white;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    border-color: var(--coral-accent);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.1);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--coral-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.advantage-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.advantage-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.advantage-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 12px 32px rgba(0, 105, 148, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--coral-accent);
}

.review-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.review-location {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.review-stars {
    color: #FFC107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 105, 148, 0.12);
}

.team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--ocean-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--ocean-blue);
    box-shadow: 0 8px 24px rgba(0, 105, 148, 0.1);
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 12px;
    background: var(--ocean-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.contact-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-content p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-content a {
    color: var(--ocean-blue);
    text-decoration: none;
}

.contact-content a:hover {
    color: var(--coral-accent);
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-primary);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 4px rgba(0, 105, 148, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1.125rem 2rem;
    background: var(--coral-accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.35);
}

.page-hero {
    padding: 4rem 0;
    background: var(--wave-gradient);
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.page-breadcrumb {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.page-breadcrumb a {
    color: white;
    text-decoration: none;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--ocean-blue);
}

.faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--coral-accent);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--gray-light);
}

.faq-answer-content {
    padding: 1.5rem 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--gray-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 72, 102, 0.95) 0%, transparent 100%);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gallery-category {
    font-size: 0.875rem;
    opacity: 0.85;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--coral-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -15%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, var(--coral-accent), var(--gray-light));
}

.process-step:last-child::after {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: block;
    border: 1px solid var(--gray-light);
}

.cookie-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.cookie-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept {
    flex: 1;
    padding: 0.875rem 1.5rem;
    background: var(--coral-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: var(--coral-dark);
}

.cookie-decline {
    flex: 1;
    padding: 0.875rem 1.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-decline:hover {
    border-color: var(--text-primary);
}

.footer {
    background: var(--ocean-deep);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--coral-accent);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--coral-accent);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.header-section {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ocean-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-logo svg {
    width: 36px;
    height: 36px;
    fill: var(--coral-accent);
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-item {
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-item:hover {
    color: var(--ocean-blue);
}

.navbar-item.active {
    color: var(--ocean-blue);
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--coral-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-item:hover::after, .navbar-item.active::after {
    width: 70%;
}

.navbar-button {
    background: var(--coral-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-button:hover {
    background: var(--coral-dark);
    color: white;
    transform: translateY(-2px);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media screen and (max-width: 1023px) {
    .burger {
        display: flex;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-item {
        padding: 1rem;
        border-bottom: 1px solid var(--gray-light);
    }

    .navbar-button {
        margin-top: 1rem;
        text-align: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .process-step::after {
        display: none;
    }

    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media screen and (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .columns.is-multiline {
        flex-wrap: wrap;
    }
}

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.thank-you-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.legal-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid var(--gray-light);
}

.legal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ocean-blue);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-section ul {
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.hidden {
    display: none !important;
}