/* ==========================================================================
   SEGNALA - PAGE SPECIFIC STYLES
   ========================================================================== */

/* Hero Section */
.segnala-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(https://pub-7161d024d86c4d04b3a2c7f8d3fce4ca.r2.dev/images/vendesi.png) center/cover no-repeat;
    overflow: hidden;
    text-align: center;
}

.segnala-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 2.8rem;
    color: var(--accent-gold);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
    background: var(--primary-dark);
    text-align: center;
}

.intro-section h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.intro-highlight {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), #e6c966);
    color: var(--primary-dark);
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}


.coverage-banner h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: var(--secondary-dark);
    text-align: center;
}

.steps-section h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.steps-intro {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.steps-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline Steps Layout */
.steps-container {
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
}

.steps-content {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Vertical dashed line */
.steps-content::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background-image: repeating-linear-gradient(
        to bottom,
        var(--accent-gold),
        var(--accent-gold) 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 0;
}

.steps-timeline {
    display: none;
}

.step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
    position: relative;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), #e6c966);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    text-align: left;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Divider per steps */
.steps-divider {
    max-width: 100px !important;
    margin: 2rem auto !important;
}

/* Warning Section */
.warning-section {
    padding: 0;
    width: 100%;
    background: #d32f2f;
    text-align: center;
    line-height: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;


}

.warning-section {
    width: 100%;
    background: #d32f2f;
    padding: 3rem 2.5rem;
    text-align: center;
}

.warning-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.warning-section ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.warning-section li {
    color: white;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    line-height: 1;
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.5rem;
    font-weight: 500;
}

.warning-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: var(--primary-dark);
    text-align: center;
}

.form-section h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.form-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.segnala-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.segnala-form input[type="text"],
.segnala-form input[type="email"],
.segnala-form input[type="tel"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.2rem;
    font-size: 1rem;
    color: var(--text-primary);
    width: 100%;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.segnala-form input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.segnala-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.checkbox-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.privacy-link {
    color: var(--accent-gold);
    text-decoration: underline;
}

.privacy-link:hover {
    color: #e6c966;
}

.btn-submit {
    width: fit-content;
    background: linear-gradient(135deg, var(--accent-gold), #e6c966);
    color: var(--primary-dark);
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
    margin: 0 auto;
    display: block;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .segnala-hero .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 2.2rem;
    }

    .steps-content::before {
        left: 35px;
    }

    .step-item {
        grid-template-columns: 70px 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .segnala-hero .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        line-height: 1.5;
    }

    .intro-section h2 {
        font-size: 1.6rem;
    }

    .intro-highlight {
        font-size: 1.3rem;
    }

    .coverage-banner h3 {
        font-size: 1.5rem;
    }

    .warning-section {
        padding: 2rem 1.5rem;
    }

    .warning-section h3 {
        font-size: 1.5rem;
    }

    .form-section h2 {
        font-size: 1.6rem;
    }

    .segnala-form {
        padding: 0 1rem;
    }

    .steps-container {
        padding: 0 1rem;
    }

    .steps-content {
        max-width: 100%;
    }

    .steps-content::before {
        left: 30px;
    }

    .step-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .checkbox-container {
        font-size: 0.85rem;
    }

    .checkbox-container input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}
