:root {
    --primary: #ca8a04;
    --accent: #fde047;
    --background: #fefce8;
    --text: #713f12;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.uk-navbar-container {
  width: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.reveal {
    visibility: visible;
    opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.uk-navbar-container {
    background: transparent;
    transition: all 0.3s ease;
}

.uk-navbar-container.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.uk-navbar-nav > li > a {
    color: var(--text);
    font-weight: 500;
    text-transform: none;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.uk-navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.uk-navbar-nav > li > a:hover::after,
.uk-navbar-nav > li.uk-active > a::after {
    width: 100%;
}

.uk-logo img {
    height: 50px;
    width: auto;
}

.uk-button-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.uk-button-primary:hover {
    background-color: var(--text);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(202, 138, 4, 0.3);
}

.uk-button-default {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 32px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.uk-button-default:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.uk-button-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    padding: 12px 32px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.uk-button-secondary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero-section {
    min-height: 100vh;
    background-color: var(--background);
    position: relative;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-content {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.hero-benefits {
    list-style: none;
    margin: 2rem 0;
}

.hero-benefits li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hero-benefits li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.statistics-section {
    background-color: var(--background);
    padding: 4rem 0;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

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

.uk-section-small {
    padding: 3rem 0;
}

.uk-section-large {
    padding: 7rem 0;
}

.uk-section-default {
    background: var(--white);
}

.uk-section-muted {
    background: var(--background);
}

.uk-section-primary {
    background: var(--primary);
    color: var(--white);
}

.uk-section-primary h2,
.uk-section-primary p {
    color: var(--white);
}

.uk-section-secondary {
    background: var(--text);
    color: var(--white);
}

.uk-section-secondary h2,
.uk-section-secondary h3,
.uk-section-secondary p {
    color: var(--white);
}

.uk-card {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.uk-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.process-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-section {
    position: relative;
}

footer {
    position: relative;
}

.footer-stats {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
}

.footer-stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.footer-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.footer-stat-label {
    font-size: 0.9rem;
    color: var(--white);
}

footer h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

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

footer .uk-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

footer .uk-list a:hover {
    color: var(--accent);
}

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

.footer-contact svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0.5rem;
}

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

.page-header {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--background) 0%, var(--white) 100%);
}

.page-header h1 {
    margin-bottom: 1rem;
}

.portfolio-item {
    margin-bottom: 2rem;
}

.portfolio-location {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.portfolio-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.portfolio-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.portfolio-features svg {
    color: var(--primary);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-rating {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.testimonial-author {
    font-weight: 500;
    color: var(--primary);
}

.contact-info-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-form-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.uk-input,
.uk-select,
.uk-textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.75rem;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    transition: border-color 0.3s ease;
}

.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

.thank-you-content {
    background: var(--white);
    padding: 4rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    color: var(--primary);
    margin: 0 auto 2rem;
}

.legal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

.value-icon {
    color: var(--primary);
    margin: 0 auto 1.5rem;
}

.advantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.advantage-card h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.advantage-card svg {
    color: var(--primary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

@media (max-width: 960px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section .uk-grid {
        flex-direction: column-reverse;
    }

    .hero-image-container {
        height: 50vh;
    }

    .hero-content {
        min-height: auto;
        padding: 3rem 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .uk-button {
        width: 100%;
    }

    .uk-section {
        padding: 3rem 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .process-number {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .contact-info-section,
    .contact-form-section,
    .legal-content {
        padding: 1.5rem;
    }
}