:root {
    --sidebar-width: 220px;
    --sidebar-padding: 1.5rem;
    --sidebar-border: 1px;
    --sidebar-total: calc(var(--sidebar-width) + (2 * var(--sidebar-padding)) + var(--sidebar-border));
    --navbar-height: 80px;
    --toggle-offset: 30px;
}

.logo {
    width: 120px;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    animation: popFadeIn 0.4s ease-out;
}

.cta-button {
    background: #4CAF50;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
}

.cta-button:hover {
    transform: scale(1.05);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 3rem 2rem;
}

.contact-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    animation: popFadeIn 0.4s ease-out;
}

.contact-page-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.contact-hero {
    margin-bottom: 3rem;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card-modern {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card-modern h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.contact-card-modern p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-link {
    color: #2e7d32;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.contact-link:hover {
    border-bottom: 2px solid #2e7d32;
}

.contact-text {
    font-weight: 600;
    color: #333;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.contact-photo {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.contact-info li {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-card, .photo-gallery {
    flex: 1 1 400px;
}

.photo-gallery {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    align-content: start;
}

.photo-gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 130px;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInZoom 0.6s ease-out forwards;


}

.card p strong {
    color: #555;
}

#radius {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    padding: 10px 30px 10px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    width: 100%;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23555%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    transition: all 0.2s ease;
}

#radius:hover {
    background-color: #f1f3f4;
}

#radius:focus {
    outline: none;
    background-color: #e8f5e9;
    color: #2e7d32;
}

.visit-button {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.visit-button.primary {
    background-color: #2e7d32;
    color: white;
    box-shadow: 0 4px 6px rgba(46, 125, 50, 0.2);
}

.visit-button.secondary {
    background-color: transparent;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

.visit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.no-deals-container {
    text-align: center;
    padding: 100px 20px;
    color: #444;
    animation: fadeInScale 1s ease-out forwards;
    transform: scale(0.95);
    opacity: 0;
}

.no-deals-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5em;
    color: #3aa56e;
}

.no-deals-container p {
    font-size: 1.2rem;
    margin-bottom: 1.5em;
}

#to-top {
    display: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: #388e3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#to-top:hover {
    background-color: #2e7d32;
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #2E7D32;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    justify-content: center;
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.btn-cookie {
    background: white;
    color: #2E7D32;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}


