﻿/* ===================== CONTACT PAGE - MMA THEMED - COMPLETE ===================== */

:root {
    --vendetta-red: #C41E3A;
    --vendetta-black: #0A0A0A;
    --vendetta-dark: #141414;
    --vendetta-gray: #1A1A1A;
    --vendetta-border: rgba(255, 255, 255, 0.1);
    --vendetta-white: #FFFFFF;
    --transition-speed: 0.3s;
}

/* ===================== HERO SECTION ===================== */
.contact-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--vendetta-black) 0%, var(--vendetta-dark) 100%);
    margin-top: 80px;
    overflow: hidden;
}

.hero-cage-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px), repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px);
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
}

.cage-wire-top,
.cage-wire-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient( 90deg, var(--vendetta-red) 0px, var(--vendetta-red) 20px, transparent 20px, transparent 40px );
    z-index: 2;
}

.cage-wire-top {
    top: 0;
}

.cage-wire-bottom {
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-subtitle {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--vendetta-red);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: clamp(48px, 8vw, 86px);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    color: var(--vendetta-white);
    text-shadow: 0 0 30px rgba(196, 30, 58, 0.5);
}

.hero-content p {
    font-size: clamp(16px, 3vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================== OCTAGON SECTION ===================== */
.contact-octagon-section {
    padding: 120px 0 250px 0;
    background: var(--vendetta-dark);
    position: relative;
    overflow: visible;
    margin-bottom: 80px;
}

.octagon-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Octagon Ring */
.octagon-ring {
    position: relative;
    width: 800px;
    height: 800px;
    margin: 0 auto;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(10, 10, 10, 0.5) 100%);
    border: 4px solid var(--vendetta-red);
    box-shadow: 0 0 40px rgba(196, 30, 58, 0.3), inset 0 0 60px rgba(196, 30, 58, 0.1);
    transition: all 0.3s ease;
    z-index: 5;
}

    .octagon-ring::after {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        background: linear-gradient(45deg, var(--vendetta-red), transparent, var(--vendetta-red));
        opacity: 0.3;
        animation: rotate 10s linear infinite;
        z-index: -1;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Octagon Corners */
.octagon-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--vendetta-red);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--vendetta-red);
    animation: pulse 2s infinite;
}

.corner-1 {
    top: 0;
    left: 30%;
    transform: translate(-50%, -50%);
}

.corner-2 {
    top: 0;
    right: 30%;
    transform: translate(50%, -50%);
}

.corner-3 {
    top: 30%;
    right: 0;
    transform: translate(50%, -50%);
}

.corner-4 {
    bottom: 30%;
    right: 0;
    transform: translate(50%, 50%);
}

.corner-5 {
    bottom: 0;
    right: 30%;
    transform: translate(50%, 50%);
}

.corner-6 {
    bottom: 0;
    left: 30%;
    transform: translate(-50%, 50%);
}

.corner-7 {
    bottom: 30%;
    left: 0;
    transform: translate(-50%, 50%);
}

.corner-8 {
    top: 30%;
    left: 0;
    transform: translate(-50%, -50%);
}

.octagon-corner:nth-child(1) {
    animation-delay: 0s;
}

.octagon-corner:nth-child(2) {
    animation-delay: 0.25s;
}

.octagon-corner:nth-child(3) {
    animation-delay: 0.5s;
}

.octagon-corner:nth-child(4) {
    animation-delay: 0.75s;
}

.octagon-corner:nth-child(5) {
    animation-delay: 1s;
}

.octagon-corner:nth-child(6) {
    animation-delay: 1.25s;
}

.octagon-corner:nth-child(7) {
    animation-delay: 1.5s;
}

.octagon-corner:nth-child(8) {
    animation-delay: 1.75s;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
    }
}

/* Octagon Center Logo */
.octagon-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.vendetta-logo-large {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
    pointer-events: none;
}

    .vendetta-logo-large img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

/* Octagon Pulse Active State */
.octagon-ring.pulse-active {
    animation: octagonPulse 2s infinite;
}

@keyframes octagonPulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(196, 30, 58, 0.3), inset 0 0 60px rgba(196, 30, 58, 0.1);
    }

    50% {
        box-shadow: 0 0 60px rgba(196, 30, 58, 0.6), inset 0 0 80px rgba(196, 30, 58, 0.2);
    }
}

/* Contact Form Inside Octagon */
.contact-form-octagon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 90%;
    overflow-y: auto;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px 60px 40px;
    border: 2px solid var(--vendetta-border);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

    /* Custom Scrollbar for form */
    .contact-form-octagon::-webkit-scrollbar {
        width: 8px;
    }

    .contact-form-octagon::-webkit-scrollbar-track {
        background: var(--vendetta-black);
    }

    .contact-form-octagon::-webkit-scrollbar-thumb {
        background: var(--vendetta-red);
        border-radius: 4px;
    }

        .contact-form-octagon::-webkit-scrollbar-thumb:hover {
            background: #8B0A1F;
        }

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

    .form-header i {
        font-size: 48px;
        color: var(--vendetta-red);
        margin-bottom: 20px;
        display: block;
        animation: bounce 2s infinite;
    }

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.form-header h2 {
    font-size: 28px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: var(--vendetta-white);
}

.form-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Form Styles */
.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group label {
        font-family: 'Oswald', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .form-group label i {
            color: var(--vendetta-red);
            font-size: 14px;
        }

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--vendetta-black);
    border: 1px solid var(--vendetta-border);
    color: var(--vendetta-white);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--vendetta-red);
        box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
        transform: scale(1.02);
    }

    .form-input.error,
    .form-select.error,
    .form-textarea.error {
        border-color: #e74c3c;
        animation: shake 0.3s;
    }

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.field-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C41E3A' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: rgba(255, 255, 255, 0.3);
    }

.btn-submit {
    width: 100%;
    background: var(--vendetta-red);
    color: var(--vendetta-white);
    padding: 16px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    border: 2px solid var(--vendetta-red);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

    .btn-submit::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-submit:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-submit:hover {
        background: transparent;
        color: var(--vendetta-red);
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
    }

    .btn-submit.loading,
    .btn-newsletter.loading {
        pointer-events: none;
        opacity: 0.7;
    }

        .btn-submit.loading::after,
        .btn-newsletter.loading::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            top: 50%;
            left: 50%;
            margin-left: -8px;
            margin-top: -8px;
            border: 2px solid transparent;
            border-top-color: currentColor;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-message {
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
}

    .form-message.success {
        background: rgba(46, 204, 113, 0.1);
        border: 1px solid #2ecc71;
        color: #2ecc71;
    }

    .form-message.error {
        background: rgba(231, 76, 60, 0.1);
        border: 1px solid #e74c3c;
        color: #e74c3c;
    }

.character-counter {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    text-align: right;
}

/* ===================== CONTACT INFO SECTION ===================== */
.contact-info-section {
    padding: 120px 0;
    background: var(--vendetta-gray);
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--vendetta-red);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 3px;
    color: var(--vendetta-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--vendetta-dark);
    padding: 40px 30px;
    border: 1px solid var(--vendetta-border);
    border-top: 4px solid var(--vendetta-red);
    text-align: center;
    transition: all 0.3s ease;
}

    .info-card:hover {
        transform: translateY(-10px);
        border-color: var(--vendetta-red);
        box-shadow: 0 20px 40px rgba(196, 30, 58, 0.2);
    }

        .info-card:hover .card-icon {
            box-shadow: 0 0 30px rgba(196, 30, 58, 0.6);
        }

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--vendetta-red) 0%, #8B0A1F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--vendetta-white);
    transition: all 0.3s ease;
}

.info-card h3 {
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--vendetta-white);
}

.info-card > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.card-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .card-links a,
    .card-links span {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .card-links a:hover {
            color: var(--vendetta-red);
        }

.working-hours {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vendetta-black);
    border: 2px solid var(--vendetta-border);
    border-radius: 50%;
    font-size: 18px;
    color: var(--vendetta-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-btn:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
    }

    .social-btn.instagram:hover {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        border-color: #e1306c;
    }

    .social-btn.twitter:hover {
        background: #000000;
        border-color: #000000;
    }

    .social-btn.facebook:hover {
        background: #1877f2;
        border-color: #1877f2;
    }

    .social-btn.youtube:hover {
        background: #ff0000;
        border-color: #ff0000;
    }

/* ===================== NEWSLETTER SECTION ===================== */
.newsletter-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--vendetta-red) 0%, #8B0A1F 100%);
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient( 45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px );
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text {
    margin-bottom: 40px;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--vendetta-white);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.newsletter-text h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 4px;
    margin-bottom: 15px;
    color: var(--vendetta-white);
}

.newsletter-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.form-group-inline {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 15px;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--vendetta-white);
    font-size: 15px;
    transition: all 0.3s ease;
}

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .newsletter-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.6);
        transform: scale(1.02);
    }

.btn-newsletter {
    padding: 18px 40px;
    background: var(--vendetta-white);
    color: var(--vendetta-red);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    border: 2px solid var(--vendetta-white);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

    .btn-newsletter:hover {
        background: transparent;
        color: var(--vendetta-white);
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    }

.newsletter-message {
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

    .newsletter-message.success {
        background: rgba(46, 204, 113, 0.2);
        border: 1px solid #2ecc71;
        color: #2ecc71;
    }

    .newsletter-message.error {
        background: rgba(231, 76, 60, 0.2);
        border: 1px solid #e74c3c;
        color: #e74c3c;
    }

.newsletter-privacy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .newsletter-privacy i {
        font-size: 14px;
    }

/* ===================== MAP SECTION ===================== */
.map-section {
    padding: 120px 0;
    background: var(--vendetta-dark);
}

.map-header {
    text-align: center;
    margin-bottom: 60px;
}

    .map-header h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-family: 'Oswald', sans-serif;
        letter-spacing: 3px;
        margin-bottom: 15px;
        color: var(--vendetta-white);
    }

    .map-header p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.6);
    }

.map-container {
    position: relative;
    border: 4px solid var(--vendetta-border);
    overflow: hidden;
}

    .map-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--vendetta-red), transparent);
        z-index: 2;
    }

    .map-container iframe {
        display: block;
        filter: grayscale(100%) invert(92%) contrast(83%) brightness(90%);
        transition: filter 0.3s ease;
        pointer-events: none;
    }

    .map-container:hover iframe,
    .map-container.active iframe {
        filter: grayscale(0%) invert(0%) contrast(100%) brightness(100%);
    }

    .map-container.active iframe {
        pointer-events: auto;
    }

.map-overlay-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--vendetta-red);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--vendetta-white);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.5);
    z-index: 3;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.map-overlay-badge i {
    font-size: 20px;
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 1024px) {
    .octagon-ring {
        width: 700px;
        height: 700px;
    }

    .vendetta-logo-large {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 868px) {
    .octagon-ring {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        max-width: 600px;
    }

    .contact-form-octagon {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        max-height: none;
        margin-top: 40px;
        margin-bottom: 80px;
        padding: 40px 30px;
        z-index: 10;
    }

    .contact-octagon-section {
        padding: 80px 0 150px 0;
        margin-bottom: 60px;
    }

    .contact-info-section {
        margin-top: 40px;
    }

    .vendetta-logo-large {
        width: 200px;
        height: 200px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .form-group-inline {
        flex-direction: column;
    }

    .btn-newsletter {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .contact-octagon-section {
        padding: 60px 0 120px 0;
        margin-bottom: 40px;
    }

    .contact-info-section {
        margin-top: 20px;
        padding: 80px 0;
    }

    .newsletter-section,
    .map-section {
        padding: 80px 0;
    }

    .contact-form-octagon {
        padding: 30px 20px;
        margin-bottom: 60px;
    }

    .form-header h2 {
        font-size: 22px;
    }

    .form-header i {
        font-size: 36px;
    }

    .section-header h2,
    .newsletter-text h2,
    .map-header h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .map-overlay-badge {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 12px;
    }

    .field-error,
    .character-counter {
        font-size: 11px;
    }

    .newsletter-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .newsletter-text p {
        font-size: 16px;
    }
}
