@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --bg-main: #020105;
    --bg-card: #0a0612;
    --bg-banner: #11081f;
    --text-light: #e0e0e0;
    --text-muted: #9e9e9e;
    --gold-primary: #dcb365;
    --gold-light: #f5d796;
    --gold-dark: #b88d3e;
    --purple-dark: #2a0b4d;
    --purple-light: #521685;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-btn: 25px;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.site-notice-banner {
    background: linear-gradient(90deg, #2a0b4d 0%, #11081f 50%, #2a0b4d 100%);
    border-bottom: 2px solid var(--gold-primary);
    padding: 12px 4%;
    text-align: center;
    position: relative;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.site-notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-notice-content i {
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.site-notice-content p {
    color: var(--gold-light);
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pulse-icon {
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.hero-img-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    -webkit-mask-image: radial-gradient(ellipse at 80% 50%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
    mask-image: radial-gradient(ellipse at 80% 50%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
    opacity: 0.75;
    filter: brightness(0.9) contrast(1.1);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.placeholder-avatar {
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 2rem;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; }

.btn-gold {
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    color: #000;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-btn);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 179, 101, 0.4);
}

.btn-large { padding: 14px 32px; font-size: 1.1rem; }
.btn-small { padding: 6px 16px; font-size: 0.85rem; width: 100%; justify-content: center; }

/* NUOVO BOTTONE E TESTO */
.btn-xlarge {
    padding: 14px 28px;
    font-size: 1.6rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(220, 179, 101, 0.4);
    animation: pulse-glow-gold 2s infinite;
}

@keyframes pulse-glow-gold {
    0% { box-shadow: 0 0 0 0 rgba(220, 179, 101, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(220, 179, 101, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 179, 101, 0); }
}

.main-call-wrapper {
    width: 100%;
    max-width: 450px;
    text-align: center;
    margin-bottom: 0.5rem;
}

.btn-xlarge .phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.btn-xlarge .btn-cost {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.btn-xlarge .btn-cost strong {
    font-weight: 800;
    font-size: 1.05rem;
}
/* FINE NUOVO BOTTONE */

.card-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    color: #fff;
    letter-spacing: 0.5px;
}

.status-online { background-color: #28a745; }
.status-assente { background-color: #ffc107; color: #000; }
.status-offline { background-color: #6c757d; }
.status-occupato { background-color: #dc3545; }
.status-squillo { background-color: #8b0000; }

.mt-3 { margin-top: 1rem; }

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 10px 24px;
    border-radius: var(--radius-btn);
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-outline:hover { background: rgba(220, 179, 101, 0.1); }

.btn-purple {
    background: var(--purple-light);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-purple:hover { background: #6821a8; }

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4%;
    background-color: rgba(2, 1, 5, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(220, 179, 101, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--gold-primary);
    font-size: 2.5rem;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a:not(.btn-nav) {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-light);
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a.active, .nav-links a:hover:not(.btn-nav) {
    color: var(--gold-primary);
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 8%;
    min-height: 85vh;
    background: var(--bg-main);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
}

.alt-contact-card {
    background: linear-gradient(135deg, rgba(26, 10, 51, 0.8) 0%, rgba(13, 5, 23, 0.9) 100%);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    max-width: 450px;
    backdrop-filter: blur(5px);
    text-align: center;
    width: 100%;
}

.alt-contact-header {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.alt-contact-number {
    color: var(--gold-light);
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 2px 10px rgba(220, 179, 101, 0.3);
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.alt-contact-number:hover {
    transform: scale(1.05);
    color: #fff;
    text-shadow: 0 5px 15px rgba(220, 179, 101, 0.6);
}

.alt-contact-number i {
    font-size: 1.8rem;
    color: var(--gold-primary);
    transition: color 0.3s ease;
}

.alt-contact-number:hover i {
    color: #fff;
    animation: pulse 1s infinite;
}

.alt-contact-costs {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-title {
    color: var(--gold-light);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(220, 179, 101, 0.2);
}

.hero-title .small-text {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--gold-primary);
    letter-spacing: 4px;
}

.hero-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: #fff;
    font-style: italic;
    margin-bottom: 1rem;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--gold-primary);
}

.section-title h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.decorator { font-size: 0.8rem; }

.section-cartomanti { padding: 4rem 4%; }

.cartomanti-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.cartomante-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(220, 179, 101, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    flex: 1 1 200px;
    max-width: 250px;
}

.cartomante-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.card-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 2px solid var(--gold-dark);
}

.card-cod {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.card-nome {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.card-rating {
    color: var(--gold-primary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.card-rating i { font-size: 0.75rem; }

.section-vip { padding: 2rem 4% 4rem; }

.vip-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vip-card {
    background: linear-gradient(135deg, #1a0a33 0%, #0d0517 100%);
    border: 1px solid var(--gold-primary);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    width: 48%;
    box-shadow: 0 8px 30px rgba(220, 179, 101, 0.15), inset 0 0 20px rgba(220, 179, 101, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vip-card::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; width: 80%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    z-index: 2;
    border-radius: 2px;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 16px;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(220, 179, 101, 0.8) 1px, transparent 2px),
        radial-gradient(circle at 80% 40%, rgba(220, 179, 101, 1) 1.5px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(220, 179, 101, 0.5) 2px, transparent 3px),
        radial-gradient(circle at 90% 85%, rgba(220, 179, 101, 0.9) 1px, transparent 2px),
        radial-gradient(circle at 20% 70%, rgba(220, 179, 101, 0.6) 1.5px, transparent 2px);
    background-size: 80px 80px;
    z-index: 0;
    pointer-events: none;
}

.vip-card > * {
    z-index: 1;
    position: relative;
}

.vip-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 179, 101, 0.3), inset 0 0 30px rgba(220, 179, 101, 0.1);
    border-color: var(--gold-light);
}

.vip-badge {
    position: absolute;
    top: -15px;
    left: 25px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-primary));
    color: #000;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    letter-spacing: 1px;
    z-index: 10;
}

.vip-card .vip-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--gold-light);
    box-shadow: 0 0 20px rgba(220, 179, 101, 0.3);
    flex-shrink: 0;
}

.vip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.vip-info { text-align: left; }

.vip-info .card-nome { 
    font-size: 2rem; 
    margin-bottom: 0.2rem; 
    color: var(--gold-light);
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.vip-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.section-support, .section-action { padding: 2rem 4%; }

.support-banner {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 2rem;
    align-items: stretch;
    background-color: var(--bg-banner);
    border: 1px solid rgba(220, 179, 101, 0.2);
    border-radius: var(--radius-md);
    padding: 3rem;
}

.support-text, .support-hours {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-text h2 { color: var(--gold-primary); margin-bottom: 0.5rem; }
.support-text p { color: var(--text-muted); font-size: 0.9rem; }

.support-hours {
    text-align: center;
    padding: 0 1.5rem;
    border-left: 1px solid rgba(220, 179, 101, 0.15);
    border-right: 1px solid rgba(220, 179, 101, 0.15);
    align-items: center;
}

.support-hours-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
    opacity: 0.9;
}

.support-hours h3 { color: var(--gold-light); font-size: 1rem; margin-bottom: 5px; }
.support-hours p { font-size: 0.9rem; color: var(--text-light); }

.hours-aligner {
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 100%;
}

.servcli-list-container {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(220, 179, 101, 0.1);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.servcli-main-icon {
    font-size: 3.5rem;
    color: var(--gold-primary);
    opacity: 0.9;
    flex-shrink: 0;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(220, 179, 101, 0.2);
}

.servcli-list-wrapper {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.servcli-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}

.servcli-list::-webkit-scrollbar {
    width: 6px;
}

.servcli-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.servcli-list::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

.servcli-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    border-left: 3px solid var(--gold-primary);
}

.servcli-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

.action-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(26, 10, 51, 0.7) 0%, rgba(13, 5, 23, 0.85) 100%);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 2rem 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.action-banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    min-width: 300px;
}

.action-icon {
    font-size: 3.5rem;
    color: var(--gold-primary);
}

.action-text h2 {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.action-text p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0;
}

.action-btn {
    text-align: center;
    min-width: 250px;
}

.action-btn a {
    white-space: nowrap;
    width: 100%;
    display: block;
}

.section-trust { padding: 3rem 4%; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item { padding: 0 1rem; }

.trust-icon {
    width: 60px; height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 1px solid var(--gold-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--gold-light);
}

.trust-item h3 { font-size: 0.9rem; color: var(--gold-primary); margin-bottom: 0.5rem; line-height: 1.3;}
.trust-item p { font-size: 0.8rem; color: var(--text-muted); }

.footer { 
    padding: 4rem 4% 1rem; 
    background-color: #05020a; 
    border-top: 1px solid #111; 
}

.footer-container { 
    display: grid; 
    /* 4 Colonne perfettamente bilanciate */
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr; 
    gap: 2rem; 
    margin-bottom: 3rem; 
}

.brand-col p { 
    color: var(--text-muted); 
    margin-top: 1rem; 
    font-size: 0.9rem; 
    line-height: 1.6;
}

.footer-col h3 { 
    color: var(--gold-primary); 
    font-size: 1rem; 
    margin-bottom: 1.5rem; 
    letter-spacing: 1px;
}

.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    transition: color 0.3s; 
}
.footer-col ul li a:hover { color: var(--gold-primary); }

/* Nuovi stili per la colonna NUMERAZIONI */
.footer-number-block { margin-bottom: 1.5rem; }

.footer-tel {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
}

.footer-tel:hover {
    color: #fff;
    transform: translateX(3px); /* Piccolo effetto spostamento al passaggio del mouse */
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
}

.footer-bottom { 
    text-align: center; 
    color: #555; 
    font-size: 0.8rem; 
    border-top: 1px solid #1a1a1a; 
    padding-top: 1.5rem; 
}

.mobile-menu-btn {
    display: none; background: none; border: none; cursor: pointer; z-index: 1001; padding: 10px;
}

.hamburger {
    display: block; width: 25px; height: 2px; background: var(--gold-primary); position: relative; transition: 0.3s;
}

.hamburger::before, .hamburger::after {
    content: ''; position: absolute; width: 100%; height: 2px; background: var(--gold-primary); left: 0; transition: 0.3s;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-menu-btn.active .hamburger { background: transparent; }
.mobile-menu-btn.active .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-menu-btn.active .hamburger::after { top: 0; transform: rotate(-45deg); }

.section-form { padding: 4rem 4%; max-width: 900px; margin: 0 auto; }
.form-intro { text-align: center; margin-bottom: 3rem; }
.form-intro p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 1rem auto 0; }
.form-container { background: linear-gradient(135deg, var(--bg-card) 0%, #11081f 100%); padding: 3rem; border-radius: var(--radius-md); border: 1px solid rgba(220, 179, 101, 0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; justify-content: flex-end; }
.form-group.full-width { grid-column: span 2; }
.form-group label { color: var(--gold-primary); font-family: var(--font-heading); font-size: 0.9rem; letter-spacing: 1px; }
.form-control { width: 100%; padding: 12px 15px; background-color: rgba(2, 1, 5, 0.8); border: 1px solid rgba(220, 179, 101, 0.3); border-radius: var(--radius-sm); color: var(--text-light); font-family: var(--font-body); font-size: 1rem; transition: all 0.3s ease; }
.form-control:focus { outline: none; border-color: var(--gold-light); box-shadow: 0 0 10px rgba(220, 179, 101, 0.2); background-color: var(--bg-main); }
textarea.form-control { resize: vertical; min-height: 150px; }
.alert { padding: 1rem; border-radius: var(--radius-sm); margin-bottom: 2rem; text-align: center; font-weight: 500; }
.alert-success { background-color: rgba(40, 167, 69, 0.1); color: #4dd56d; border: 1px solid #28a745; }
.alert-error { background-color: rgba(220, 53, 69, 0.1); color: #ff6b7a; border: 1px solid #dc3545; }
.form-submit-container { text-align: center; margin-top: 2rem; }

.profile-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.profile-header {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #1a0a33 0%, #0d0517 100%);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(220, 179, 101, 0.05);
    position: relative;
}

.profile-header::after {
    content: ''; position: absolute; top: 0; left: 10%; width: 80%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.profile-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--gold-light);
    box-shadow: 0 0 30px rgba(220, 179, 101, 0.3);
    font-size: 5rem;
}

.profile-status-badge {
    position: absolute;
    bottom: 10px;
    right: -10px;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    border: 2px solid var(--bg-main);
    color: #fff;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.profile-code {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.profile-code strong { color: var(--gold-primary); }

.profile-rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.profile-rating-summary .stars { color: var(--gold-primary); }
.profile-rating-summary span { color: var(--text-light); }

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.tag-gold {
    background: rgba(220, 179, 101, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.profile-bio {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.profile-reviews-section {
    background: rgba(13, 5, 23, 0.6);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid rgba(220, 179, 101, 0.1);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background: linear-gradient(135deg, rgba(26, 10, 51, 0.7) 0%, rgba(13, 5, 23, 0.85) 100%);
    border: 1px solid rgba(220, 179, 101, 0.2);
    padding: 1.8rem 2rem;
    border-radius: var(--radius-md);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; width: 80%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 179, 101, 0.4), transparent);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 20px rgba(220, 179, 101, 0.08);
    border-color: rgba(220, 179, 101, 0.45);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 1rem;
    gap: 10px;
    flex-wrap: wrap;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 1rem;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.review-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(220, 179, 101, 0.1);
    border: 1px solid rgba(220, 179, 101, 0.3);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 0.8rem;
}

.review-stars {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.review-title {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.review-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    font-size: 0.95rem;
}

.appuntamenti-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 2rem; 
    max-width: 1100px; 
    margin: 0 auto; 
}

.app-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #11081f 100%);
    border: 1px solid rgba(220, 179, 101, 0.2);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-card h3 { 
    color: var(--gold-primary); 
    margin-bottom: 1.5rem; 
    font-size: 1.5rem; 
    border-bottom: 1px solid rgba(220, 179, 101, 0.2); 
    padding-bottom: 0.5rem; 
    font-family: var(--font-heading);
}

.app-card p { 
    color: var(--text-muted); 
    line-height: 1.6; 
}

.app-card a.tel-link { 
    color: var(--gold-light); 
    font-weight: 600; 
    text-decoration: underline; 
    text-decoration-color: rgba(220, 179, 101, 0.5); 
}

.app-card a.tel-link:hover { 
    color: var(--gold-primary); 
}

.promo-list { 
    list-style: none; 
    margin-top: 1.5rem; 
    margin-bottom: 1.5rem; 
}

.promo-list li { 
    margin-bottom: 1rem; 
    padding-left: 1.8rem; 
    position: relative; 
    color: var(--text-light); 
}

.promo-list li::before { 
    content: '♦'; 
    color: var(--gold-primary); 
    position: absolute; 
    left: 0; 
    top: 2px; 
    font-size: 1.2rem; 
    line-height: 1; 
}

.promo-list strong { 
    color: var(--gold-light); 
    font-weight: 600; 
}

.app-notice { 
    background: rgba(220, 179, 101, 0.05); 
    border-left: 4px solid var(--gold-primary); 
    padding: 1.2rem; 
    margin: 1.5rem 0; 
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0; 
}

.app-notice p { 
    color: var(--gold-light); 
    margin: 0; 
    font-weight: 500; 
}

.paypal-select { 
    width: 100%; 
    padding: 14px 15px; 
    background-color: rgba(2, 1, 5, 0.8); 
    border: 1px solid rgba(220, 179, 101, 0.3); 
    border-radius: var(--radius-sm); 
    color: var(--text-light); 
    font-family: var(--font-body); 
    font-size: 1rem; 
    margin-bottom: 1.5rem; 
    cursor: pointer;
    appearance: none;
    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%23dcb365%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 15px top 50%;
    background-size: 12px auto;
}

.paypal-select:focus { 
    outline: none; 
    border-color: var(--gold-light); 
    box-shadow: 0 0 10px rgba(220, 179, 101, 0.2); 
}

.paypal-select option { 
    background-color: var(--bg-main); 
    color: var(--text-light); 
    padding: 10px; 
}

.card-images { 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
    margin-top: 1.5rem; 
}

.card-images img { 
    width: 100%; 
    border-radius: var(--radius-sm); 
    border: 1px solid rgba(220, 179, 101, 0.2); 
    transition: all 0.3s ease; 
    opacity: 0.9;
}

.card-images a:hover img { 
    transform: translateY(-3px); 
    border-color: var(--gold-primary); 
    opacity: 1;
    box-shadow: 0 5px 15px rgba(220, 179, 101, 0.2);
}

.mt-auto { margin-top: auto; }

.vip-banner-img {
    display: inline-block;
    width: 100%;
    max-width: 1100px;
}

.vip-banner-img img {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid rgba(220, 179, 101, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.vip-banner-img:hover img {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 179, 101, 0.2);
    border-color: var(--gold-primary);
}

.payment-script-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-script-container table {
    width: 100%;
    border-collapse: collapse;
}

.payment-script-container td {
    padding: 0;
    width: 100%;
}

.payment-script-container select {
    width: 100%; 
    padding: 14px 15px; 
    background-color: rgba(2, 1, 5, 0.8); 
    border: 1px solid rgba(220, 179, 101, 0.3); 
    border-radius: var(--radius-sm); 
    color: var(--text-light); 
    font-family: var(--font-body); 
    font-size: 1rem; 
    margin-bottom: 1.5rem; 
    cursor: pointer;
    appearance: none;
    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%23dcb365%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 15px top 50%;
    background-size: 12px auto;
}

.payment-script-container select:focus {
    outline: none; 
    border-color: var(--gold-light); 
    box-shadow: 0 0 10px rgba(220, 179, 101, 0.2); 
}

.payment-script-container select option {
    background-color: var(--bg-main); 
    color: var(--text-light); 
    padding: 10px; 
}

.payment-script-container input[type="image"] {
    width: 300px;
    height: auto;
    transition: transform 0.2s, filter 0.2s, width 0.2s;
    filter: brightness(0.9) contrast(1.1);
    margin-top: 15px;
    border-radius: var(--radius-btn);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.payment-script-container input[type="image"]:hover {
    transform: scale(1.03);
    filter: brightness(1) contrast(1.2);
}

.hours-wrapper {
    display: inline-block;
    text-align: left; 
}

.hours-container {
    display: table;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 5px;
}

.hours-row {
    display: table-row;
}

.hours-label {
    display: table-cell;
    color: var(--gold-light);
    font-weight: 600;
    padding-right: 15px;
    padding-bottom: 5px;
    white-space: nowrap;
    width: 1%;
}

.hours-time {
    display: table-cell;
    padding-bottom: 5px;
    color: var(--text-light);
}

.hours-sep {
    width: 100%;
    margin: 15px auto 10px;
    padding-top: 12px;
    border-top: 1px dashed rgba(220, 179, 101, 0.25);
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
}

.support-hours.custom-card {
    background: rgba(2, 1, 5, 0.4);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(220, 179, 101, 0.15);
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(220, 179, 101, 0.2);
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
}

.faq-question {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.6;
}

.cartomante-card .card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}
.vip-card .card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

/* --- STILI NUMERO DI TELEFONO SERVIZIO CLIENTI --- */
.support-phone-wrapper {
    margin-top: 1.5rem;
    display: inline-block;
}

.support-phone-number {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-weight: 700;
    background: rgba(220, 179, 101, 0.08);
    padding: 12px 28px;
    border-radius: var(--radius-btn);
    border: 1px solid rgba(220, 179, 101, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(220, 179, 101, 0.2);
}

.support-phone-number i {
    color: var(--gold-primary);
    font-size: 1.8rem;
    animation: pulse-icon 2s infinite; /* Usa la stessa animazione pulsante che hai già */
}

.support-phone-number:hover {
    background: rgba(220, 179, 101, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 179, 101, 0.25);
    color: #fff;
    border-color: var(--gold-primary);
}

@media (max-width: 1200px) {
    .cartomante-card { flex-basis: 180px; max-width: 220px; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem 2rem;}
}

@media (max-width: 992px) {
    .hero { justify-content: center; text-align: center; padding-top: 6rem; }
    .hero-content { max-width: 100%; margin: 0 auto; }
    .hero-image { width: 100%; opacity: 0.35; }
    .hero-img-container img {
        object-position: center;
        -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
        mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
    }
    
    .vip-container { flex-direction: column; align-items: center; }
    .vip-card { width: 100%; max-width: 500px; }
    
    .support-banner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .support-hours {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(220, 179, 101, 0.15);
        border-bottom: 1px solid rgba(220, 179, 101, 0.15);
        padding: 1.5rem 0;
    }
    .servcli-list-container {
        flex-direction: column;
        width: 100%;
    }
    .servcli-main-icon {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(220, 179, 101, 0.2);
        padding-bottom: 1rem;
    }
    
    .action-banner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .action-banner-content { flex-direction: column; text-align: center; gap: 1rem; }
    .footer-container { 
        grid-template-columns: 1fr 1fr; /* Passa a 2 colonne */
        text-align: center; 
        gap: 3rem 2rem;
    }
    
    /* Centra il logo solo nel footer */
    .footer .logo { justify-content: center; }
    .cartomante-card { flex-basis: 160px; max-width: 200px; }

    .appuntamenti-grid { grid-template-columns: 1fr; }

    .support-phone-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .site-notice-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .mobile-menu-btn { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: rgba(5, 2, 10, 0.98); flex-direction: column; justify-content: center;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1); z-index: 1000;
    }
    .nav-links.active { right: 0; }
    .nav-links a:not(.btn-nav) { font-size: 1.2rem; }
    
    .cartomante-card { flex: 1 1 calc(50% - 1.5rem); max-width: 300px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-img-container { max-width: 400px; }
    .section-support, .section-action, .section-vip, .section-cartomanti { padding-left: 2%; padding-right: 2%; }
    .vip-card { flex-direction: column; text-align: center; padding: 2rem 1.5rem; gap: 1rem; }
    .vip-badge { left: 50%; transform: translateX(-50%); top: -15px; }
    .vip-content { flex-direction: column; gap: 1rem; }
    .vip-info { text-align: center; }
    .vip-actions { align-items: center; width: 100%; }
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .profile-tags { justify-content: center; }
    .profile-rating-summary { justify-content: center; }
    .profile-reviews-section { padding: 2rem 1rem; }
    .profile-status-badge { right: 50%; transform: translateX(50%); bottom: -15px; }
    
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .form-container { padding: 1.5rem; }
    
    .alt-contact-card {
        padding: 1.2rem;
        text-align: center;
    }
    .alt-contact-number {
        font-size: 2.2rem;
        justify-content: center;
    }
    .alt-contact-number i {
        font-size: 1.5rem;
    }
    .alt-contact-costs {
        text-align: center;
        border-left: none;
        padding-left: 0;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cartomante-card { flex: 1 1 calc(50% - 0.75rem); max-width: calc(50% - 0.75rem); padding: 1.2rem 0.5rem; }
    .card-nome { font-size: 1rem; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-container { 
        grid-template-columns: 1fr; /* Passa a 1 singola colonna */
        text-align: center; 
        gap: 2.5rem;
    }
    
    .footer-tel:hover {
        transform: scale(1.05); /* Su mobile l'effetto hover è un piccolo ingrandimento invece che spostamento */
    }
    .support-banner, .action-banner { padding: 2rem 1rem; }
    .servcli-row { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; gap: 5px; }
    .servcli-info { font-size: 0.95rem; }
    .action-banner-content { min-width: 100%; }
    .action-icon { font-size: 2.5rem; }
    .action-text h2 { font-size: 1.4rem; }
    .action-btn { min-width: 100%; }
    
    .alt-contact-number {
        font-size: 2rem;
    }

    .support-phone-number {
        font-size: 1.8rem;
        padding: 10px 20px;
    }
    
    .support-phone-number i {
        font-size: 1.4rem;
    }
}