@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800display=swap');
/* Import Google Fonts - Plus Jakarta Sans */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body, input, button {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

body {
    background-color: #f5f7fa;
    color: #333;
    position: relative;
}

/* Floating Action Button */
.sticky-button {
    position: fixed;
    top: 12%;
    right: 0;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #000000;
    border-radius: 35px 0 0 35px;
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 70px;
    height: 70px;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, right 0.3s ease;
    justify-content: flex-start;
    animation: 
        buttonFloat 3s ease-in-out infinite,
        subtleGlow 3s ease-in-out infinite;
    z-index: 999;
}

.sticky-button:hover {
    width: 200px;
}

.icon-container {
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sticky-button svg,
.sticky-button dotlottie-player {
    width: 50px;
    height: 50px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconPulse 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    transform-origin: center;
}

.sticky-button:hover svg,
.sticky-button:hover dotlottie-player {
    transform: translateX(6px) scale(1);
}

.button-text {
    margin: 0;
    opacity: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #000000;
    transform: translateX(-12px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    padding-right: 25px;
    min-width: 130px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sticky-button:hover .button-text {
    opacity: 1;
    transform: translateX(0);
}

/* Animations for Floating Button */
@keyframes buttonFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes subtleGlow {
    0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 12px 40px rgba(194, 168, 119, 0.3); }
}

/* Chat Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.chat-modal {
    width: 840px;
    height: 770px;
    background-color: white;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.modal-overlay.active .chat-modal {
    transform: scale(1);
    opacity: 1;
}

.chat-header {
    padding: 16px;
    background-color: #C2A877;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    position: relative;
}

.header-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.status-pulse {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.5;
    animation: pulse-wave 2s infinite;
}

@keyframes pulse-wave {
    0% { transform: scale(1); opacity: 0.5; }
    70% { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.header-title h3 {
    font-weight: 600;
    font-size: 19px;
    color: white;
    padding-bottom: 2px;
}

.close-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    color: white;
    height: 38px;
    width: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0);
}

.close-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.close-button svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.new-chat-button {
    background: rgba(255, 255, 255, 0.20);
    border: none;
    cursor: pointer;
    color: white;
    height: 40px;
    padding: 0 20px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
}

.new-chat-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.new-chat-button svg {
    width: 16px;
    height: 16px;
}

.chat-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background-color: #f3f4f663;
}

.message {
    max-width: 75%;
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.3px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(5px);
    animation: fadeInMessage 0.3s ease-out forwards;
}

/* Fade-in for message content paragraphs and lists */
.message p,
.message ul {
    opacity: 0;
    animation: fadeInContent 0.4s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fadeInContent {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Initial greeting animation with delay */
.initial-greeting {
    opacity: 0;
    animation: fadeInMessage 0.4s ease-out forwards;
    animation-delay: 0.3s;
}

/* Lightweight fade-in animation for messages */
@keyframes fadeInMessage {
    0% { opacity: 0; transform: translateY(5px); }
    100% { opacity: 1; transform: translateY(0); }
}

.bot-message {
    align-self: flex-start;
    background-color: #FFFFFF;
    color: #262a32;
    border-bottom-left-radius: 4px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.user-message {
    align-self: flex-end;
    background-color: #C2A877;
    color: white;
    border-bottom-right-radius: 4px;
}

.loading {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 18px;
    background-color: #FFFFFF;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    width: fit-content;
    align-self: flex-start;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #9CA3AF;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.suggestions-section {
    padding: 24px;
    padding-bottom: 6px;
    opacity: 1;
    transition: all 0.4s ease;
    max-height: 280px;
    overflow: hidden;
    background-color: #f3f4f663;
}

.suggestions-section.hidden {
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
    pointer-events: none;
}

/* Progressive Animations for Suggestions */
.suggestions-title {
    font-size: 16px;
    font-weight: 600;
    color: #4B5563;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 16px;
    text-align: center;
    opacity: 0;
    animation: fadeInTitle 1s forwards;
    animation-delay: 1s;
}

@keyframes fadeInTitle {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.suggestions-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(229, 231, 235, 0) 0%,
        rgba(229, 231, 235, 1) 25%,
        rgba(229, 231, 235, 1) 75%,
        rgba(229, 231, 235, 0) 100%
    );
    animation: growLine 0.8s forwards;
    animation-delay: 1.2s;
}

@keyframes growLine {
    0% { width: 0; }
    100% { width: 100%; }
}

.suggestion-tiles {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.suggestion-tile {
    flex: 1;
    padding: 34px;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 160px;
    opacity: 0;
    transform: translateY(15px);
}

.suggestion-tile:nth-child(1) {
    animation: fadeInTile 0.6s forwards;
    animation-delay: 1.7s;
}

.suggestion-tile:nth-child(2) {
    animation: fadeInTile 0.6s forwards;
    animation-delay: 1.9s;
}

.suggestion-tile:nth-child(3) {
    animation: fadeInTile 0.6s forwards;
    animation-delay: 2.1s;
}

@keyframes fadeInTile {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.suggestion-tile h4 {
    margin-bottom: 12px;
    color: #4B5563;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding-bottom: 14px;
}

.suggestion-tile h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: #C2A877;
    border-radius: 2px;
}

.suggestion-tile p {
    color: #6B7280;
    line-height: 1.7;
    font-size: 14px;
    margin-top: 2px;
}

.suggestion-tile:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
    border-color: #C2A877;
}

/* Input wrapper + campo testo + pulsante invio */
.chat-input-area {
    padding: 15px !important;
    border-top: 1px solid #E5E7EB !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05) !important;
}

.chat-input-wrapper {
    position: relative !important;
    flex: 1 !important;
}

/* Voice Recording Button */
.voice-button {
    background-color: #C2A877 !important;
    border: none !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 6px rgba(194, 168, 119, 0.3) !important;
    flex-shrink: 0 !important;
    -webkit-tap-highlight-color: transparent !important;
}

.voice-button:hover {
    background-color: #B09966 !important;
    transform: scale(1.05) !important;
}

.voice-button:active {
    transform: scale(0.95) !important;
}

.voice-button.recording {
    background-color: #EF4444 !important;
    animation: pulse-recording 1.5s infinite !important;
}

@keyframes pulse-recording {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5); }
}

/* ---------- Recommended units tiles ---------- */
.unit-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .unit-tiles {
        grid-template-columns: 1fr;
    }
}

.unit-tile {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    animation: fadeInTile 0.4s ease-out forwards;
}

/* Lightweight fade-in animation for tiles */
@keyframes fadeInTile {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

.unit-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.unit-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 200px;
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.unit-tile:hover .unit-image {
    transform: scale(1.05);
}

.unit-body {
    padding: 16px 18px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.unit-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.unit-type {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
}

.unit-floor {
    font-size: 13px;
    color: #6B7280;
}

.unit-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #374151;
}

.unit-meta span {
    background: #F3F4F6;
    border-radius: 999px;
    padding: 4px 10px;
}

.unit-reason {
    font-size: 13px;
    color: #4B5563;
    margin: 0;
    line-height: 1.5;
}

.unit-actions {
    margin-top: 6px;
}

.book-btn {
    background: #C2A877;
    color: #FFFFFF;
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(194, 168, 119, 0.4);
    width: 100%;
    letter-spacing: 0.3px;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(194, 168, 119, 0.5);
    background-color: #B89A66;
}

.book-btn:active {
    transform: translateY(0);
}

.chat-input {
    width: 100% !important;
    padding: 16px 20px !important;
    padding-right: 55px !important;
    background-color: #F3F4F6 !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 30px !important;
    font-size: 15px !important;
    outline: none !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.chat-input:focus {
    border-color: #C2A877 !important;
    box-shadow: 0 0 12px rgba(194, 168, 119, 0.25) !important;
}

.send-button {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background-color: #C2A877 !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
    box-shadow: 0 2px 6px rgba(194, 168, 119, 0.3) !important;
}

.send-button:hover {
    background-color: #B09966 !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.send-icon {
    width: 18px !important;
    height: 18px !important;
    fill: white !important;
}

/* Services Widget - Material Tile Design */
.services-widget-wrapper {
    margin-bottom: 16px;
}

.services-widget {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06), 0 10px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 360px;
    opacity: 0;
    animation: fadeInTile 0.4s ease-out forwards;
}

.services-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08), 0 15px 25px rgba(0, 0, 0, 0.1);
}

.services-widget-actions {
    padding: 24px;
}

.services-widget-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background-color: #B89A66;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.services-widget-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #a78b5b;
}

.services-widget-button svg {
    fill: currentColor;
}

/* Contact Tile - Modern Apple Design */
.contact-tile-wrapper {
    margin-bottom: 16px;
}

.contact-tile-modern {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.06),
        0 16px 32px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-tile-modern:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.06);
}

.contact-header {
    text-align: center;
    margin-bottom: 24px;
}

.contact-icon-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #C2A877 0%, #B89A66 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(194, 168, 119, 0.3);
}

.contact-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}

.contact-header p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    font-weight: 400;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.contact-method-card:hover {
    background: #F9FAFB;
    border-color: #C2A877;
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(194, 168, 119, 0.15);
}

.contact-method-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-icon {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: #3B82F6;
}

.phone-icon {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    color: #10B981;
}

.contact-method-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.contact-method-label {
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-method-value {
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
    letter-spacing: -0.2px;
}

.contact-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #C2A877 0%, #B89A66 100%);
    color: #FFFFFF;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 4px rgba(194, 168, 119, 0.2),
        0 8px 16px rgba(194, 168, 119, 0.15);
}

.contact-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 8px rgba(194, 168, 119, 0.25),
        0 12px 24px rgba(194, 168, 119, 0.2);
}

.contact-cta-button:active {
    transform: translateY(0);
}

.contact-cta-button svg {
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.contact-cta-button:hover svg {
    transform: translateX(2px);
}

/* Location Tile - Clean Design with Real Map */
.location-tile-wrapper {
    margin-bottom: 16px;
    max-width: 384px;
}

.location-card-modern {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInTile 0.4s ease-out forwards;
}

.location-card-modern:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Map Image */
.location-map-image {
    height: 192px;
    width: 100%;
    overflow: hidden;
}

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

/* Card Content */
.location-card-content {
    padding: 24px;
}

/* Title: Smaller text */
.location-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

/* Address: Larger text */
.location-card-address {
    font-size: 18px;
    color: #4B5563;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

/* Directions Button */
.location-directions-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #3B82F6;
    color: #FFFFFF;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.location-directions-btn:hover {
    background: #2563EB;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.location-directions-btn:active {
    transform: translateY(0);
}

/* Surrounding Area Tile - Clean Design with Colosseo Image */
.area-tile-wrapper {
    margin-bottom: 16px;
    max-width: 384px;
}

.area-card-modern {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInTile 0.4s ease-out forwards;
}

.area-card-modern:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Context Image */
.area-card-image {
    height: 192px;
    width: 100%;
    overflow: hidden;
}

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

/* Card Content */
.area-card-content {
    padding: 24px;
}

/* Title */
.area-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

/* Subtitle */
.area-card-subtitle {
    font-size: 16px;
    color: #4B5563;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

/* Discover Button - Beige */
.area-discover-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #C2A877;
    color: #FFFFFF;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(194, 168, 119, 0.3);
}

.area-discover-btn:hover {
    background: #AE946A;
    box-shadow: 0 10px 15px -3px rgba(194, 168, 119, 0.4);
    transform: translateY(-1px);
}

.area-discover-btn:active {
    transform: translateY(0);
}

/* Service List Formatting */
.service-list {
    margin: 2px 0 2px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.service-list li {
    margin: 2px 0;
    line-height: 1.4;
    padding-left: 4px;
}

.service-list li::marker {
    color: #C2A877;
}

/* Reduce vertical spacing for line breaks in bot messages */
.bot-message br {
    display: block;
    content: "";
    margin-top: -4px;
}

@media (max-width: 768px) {
    .contact-tile-modern {
        padding: 20px;
    }
    
    .contact-method-card {
        padding: 14px;
    }
    
    .location-tile-wrapper,
    .area-tile-wrapper,
    .services-widget {
        max-width: 100%;
    }
    
    .location-card-content,
    .area-card-content {
        padding: 20px;
    }
    
    .services-widget-actions {
        padding: 20px;
    }
}
