:root {
    --primary: #1a1a1a;
    --accent: #f59e0b;
    --background: #ffffff;
    --text: #1a1a1a;
    --light-gray: #f5f5f5;
    --medium-gray: #6b7280;
    --border-color: #e5e7eb;
}

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

body {
    font-family: 'Sora', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.7;
    overflow-x: hidden;
}

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

.navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.navbar-solid {
    background-color: var(--background);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled {
    background-color: var(--background);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, var(--text) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.icon-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--background);
}

.icon-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.icon-card p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--background);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-outline-primary {
    border-color: var(--accent);
    color: var(--accent);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--background);
    transform: translateY(-2px);
}

.comparison-section {
    background-color: var(--light-gray);
}

.comparison-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-list svg {
    color: var(--accent);
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.gallery-section {
    background-color: var(--background);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 1.25rem;
    background: var(--background);
}

.gallery-caption h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-caption p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.9rem;
}

.faq-section {
    background-color: var(--light-gray);
}

.accordion-item {
    border: none;
    background: var(--background);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    background-color: var(--background);
    color: var(--text);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--background);
    color: var(--accent);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f59e0b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--medium-gray);
}

.cta-section {
    background: linear-gradient(135deg, var(--text) 0%, #374151 100%);
    color: var(--background);
    padding: 5rem 0;
}

.cta-section h2 {
    color: var(--background);
}

.cta-section .lead {
    color: rgba(255,255,255,0.9);
}

.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.value-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--medium-gray);
    margin: 0;
}

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

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent);
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--medium-gray);
    margin: 0;
}

.service-card {
    background: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
}

.service-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.service-features svg {
    color: var(--accent);
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.additional-service {
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.additional-service h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.additional-service p {
    color: var(--medium-gray);
    margin: 0;
}

.pricing-features {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

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

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.contact-info-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

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

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: var(--background);
}

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

.contact-info-item p {
    color: var(--medium-gray);
    margin: 0;
}

.contact-info-item a {
    color: var(--accent);
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.opening-hours {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    font-weight: 600;
    color: var(--text);
}

.hours-row span:last-child {
    color: var(--medium-gray);
}

.next-steps {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.75rem;
    color: var(--text);
}

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

.thank-you-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--background);
}

.thank-you-actions {
    margin-top: 2rem;
}

.next-step-card {
    padding: 2rem;
    background: var(--background);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
}

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

.next-step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.next-step-card p {
    color: var(--medium-gray);
    margin: 0;
}

.legal-page {
    padding-top: 120px;
    min-height: calc(100vh - 400px);
}

.legal-content {
    color: var(--text);
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content table {
    margin: 1.5rem 0;
}

.legal-content table th {
    background-color: var(--light-gray);
    font-weight: 600;
}

.footer {
    background-color: var(--text);
    color: var(--background);
    margin-top: 0;
}

.footer-map {
    height: 400px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-content {
    padding: 3rem 2rem;
}

.footer h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

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

.footer-links a {
    color: var(--background);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

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

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

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

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

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

.cookie-buttons .btn {
    padding: 0.5rem 1.5rem;
    white-space: nowrap;
}

.cookie-buttons .btn-secondary {
    background-color: transparent;
    border-color: var(--background);
    color: var(--background);
}

.cookie-buttons .btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.cookie-buttons .btn-link {
    color: var(--background);
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .navbar {
        background-color: var(--background);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .footer-content {
        padding: 2rem 1.5rem;
    }
    
    .footer-map {
        height: 300px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .service-image {
        height: 200px;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 575.98px) {
    .icon-card {
        padding: 1.5rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .value-number {
        font-size: 2.5rem;
    }
    
    .thank-you-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .thank-you-actions .btn:last-child {
        margin-bottom: 0;
    }
}