/*
Theme Name: Nottello
Theme URI: https://nottello.it
Author: Nottello S.r.l.
Author URI: https://nottello.it
Description: Tema ufficiale per Nottello - La prima piattaforma italiana dove il prezzo lo decidi tu. Prenota camere d'hotel dopo le 18 proponendo il tuo prezzo.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nottello
Tags: one-column, custom-menu, custom-logo, featured-images, theme-options, translation-ready

Nottello Theme - Dove il prezzo lo decidi tu
*/

/* ==========================================================================
   CSS Variables & Root
   ========================================================================== */
:root {
    /* Brand Colors */
    --nottello-gold: #F5B041;
    --nottello-gold-light: #F9D276;
    --nottello-gold-dark: #D4941C;
    --nottello-blue: #6B7FD7;
    --nottello-blue-light: #8B9BE8;
    --nottello-blue-dark: #5468C5;
    --nottello-purple: #7B68C4;
    
    /* Background Colors */
    --bg-dark: #0B0B1A;
    --bg-darker: #060612;
    --bg-card: rgba(107, 127, 215, 0.08);
    --bg-card-hover: rgba(107, 127, 215, 0.15);
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Border Colors */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(245, 176, 65, 0.3);
    --border-blue: rgba(107, 127, 215, 0.3);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--nottello-gold), var(--nottello-gold-dark));
    --gradient-blue: linear-gradient(135deg, var(--nottello-blue), var(--nottello-blue-dark));
    --gradient-hero: linear-gradient(180deg, var(--bg-dark) 0%, #0d1025 50%, var(--bg-dark) 100%);
    --gradient-card: linear-gradient(135deg, rgba(107, 127, 215, 0.1), rgba(245, 176, 65, 0.05));
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 40px rgba(245, 176, 65, 0.25);
    --shadow-blue: 0 10px 40px rgba(107, 127, 215, 0.25);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: justify;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.font-display {
    font-family: var(--font-display);
}

.text-gold {
    color: var(--nottello-gold);
}

.text-blue {
    color: var(--nottello-blue);
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.nottello-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.nottello-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.nottello-section--dark {
    background: var(--bg-darker);
}

.nottello-section--gradient {
    background: var(--gradient-hero);
}

/* ==========================================================================
   Background Effects
   ========================================================================== */
.nottello-bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.nottello-bg-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.nottello-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.nottello-bg-glow--gold {
    top: -300px;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 176, 65, 0.15) 0%, transparent 70%);
    animation: nottelloFloat 20s ease-in-out infinite;
}

.nottello-bg-glow--blue {
    bottom: -300px;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 127, 215, 0.2) 0%, transparent 70%);
    animation: nottelloFloat 25s ease-in-out infinite reverse;
}

.nottello-stars {
    position: absolute;
    inset: 0;
}

.nottello-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: nottelloTwinkle 3s ease-in-out infinite;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes nottelloFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-50px) rotate(5deg); }
}

@keyframes nottelloTwinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

@keyframes nottelloPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 176, 65, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(245, 176, 65, 0); }
}

@keyframes nottelloSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes nottelloFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.nottello-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-transform: none;
    letter-spacing: 0.02em;
}

.nottello-btn--gold {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.nottello-btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(245, 176, 65, 0.35);
}

.nottello-btn--blue {
    background: var(--gradient-blue);
    color: #fff;
    box-shadow: var(--shadow-blue);
}

.nottello-btn--blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(107, 127, 215, 0.35);
}

.nottello-btn--outline-gold {
    background: transparent;
    border: 2px solid var(--nottello-gold);
    color: var(--nottello-gold);
}

.nottello-btn--outline-gold:hover {
    background: rgba(245, 176, 65, 0.1);
    transform: translateY(-3px);
}

.nottello-btn--outline-blue {
    background: transparent;
    border: 2px solid var(--nottello-blue);
    color: var(--nottello-blue);
}

.nottello-btn--outline-blue:hover {
    background: rgba(107, 127, 215, 0.1);
    transform: translateY(-3px);
}

.nottello-btn--large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.nottello-btn--small {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.nottello-btn--full {
    width: 100%;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.nottello-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.nottello-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: var(--transition-normal);
}

.nottello-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
}

.nottello-card:hover::before {
    opacity: 1;
}

.nottello-card__content {
    position: relative;
    z-index: 1;
}

.nottello-card--gold {
    border-color: var(--border-gold);
    background: linear-gradient(135deg, rgba(245, 176, 65, 0.1), rgba(245, 176, 65, 0.02));
}

.nottello-card--blue {
    border-color: var(--border-blue);
    background: linear-gradient(135deg, rgba(107, 127, 215, 0.1), rgba(107, 127, 215, 0.02));
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.nottello-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.nottello-header--scrolled {
    background: rgba(11, 11, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.nottello-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nottello-logo {
    display: flex;
    align-items: center;
}

.nottello-logo img {
    height: 50px;
    width: auto;
}

.nottello-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nottello-nav__menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nottello-nav__link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nottello-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-normal);
}

.nottello-nav__link:hover {
    color: var(--text-primary);
}

.nottello-nav__link:hover::after {
    width: 100%;
}

.nottello-nav__buttons {
    display: flex;
    gap: 15px;
}

.nottello-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px;
}

.nottello-mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: currentColor;
    margin: 6px 0;
    transition: var(--transition-normal);
}

/* Mobile Menu */
.nottello-mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(11, 11, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-top: 1px solid var(--border-light);
}

.nottello-mobile-menu.active {
    display: block;
}

.nottello-mobile-menu .nottello-nav__menu {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.nottello-mobile-menu .nottello-nav__link {
    font-size: 1.1rem;
}

.nottello-mobile-menu .nottello-nav__buttons {
    flex-direction: column;
}

.nottello-mobile-menu .nottello-btn {
    width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.nottello-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 100px;
    position: relative;
    z-index: 10;
}

.nottello-hero__content {
    text-align: center;
    max-width: 900px;
}

.nottello-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    margin-bottom: 30px;
    animation: nottelloSlideUp 0.8s ease;
}

.nottello-hero__badge-icon {
    color: var(--nottello-gold);
}

.nottello-hero__badge-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.nottello-hero__title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: nottelloSlideUp 0.8s ease 0.1s backwards;
}

.nottello-hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: nottelloSlideUp 0.8s ease 0.2s backwards;
}

.nottello-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: nottelloSlideUp 0.8s ease 0.3s backwards;
}

.nottello-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    animation: nottelloSlideUp 0.8s ease 0.4s backwards;
}

.nottello-hero__stat {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.nottello-hero__stat:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
}

.nottello-hero__stat-icon {
    color: var(--nottello-gold);
    margin-bottom: 12px;
}

.nottello-hero__stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.nottello-hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Scroll Indicator */
.nottello-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: nottelloFloat 2s ease-in-out infinite;
}

.nottello-scroll-indicator__inner {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.nottello-scroll-indicator__dot {
    width: 6px;
    height: 14px;
    background: var(--nottello-gold);
    border-radius: 4px;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.nottello-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.nottello-section__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.nottello-section__subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Concept Section
   ========================================================================== */
.nottello-concept {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nottello-concept__text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 30px;
}

.nottello-concept__text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.nottello-concept__card {
    position: relative;
}

.nottello-concept__card-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(245, 176, 65, 0.15), rgba(107, 127, 215, 0.15));
    border-radius: var(--radius-xl);
    filter: blur(40px);
}

.nottello-concept__card-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.nottello-concept__card h3 {
    font-size: 1.75rem;
    color: var(--nottello-gold);
    margin-bottom: 30px;
}

.nottello-concept__step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.nottello-concept__step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.nottello-concept__step-number--gold {
    background: rgba(245, 176, 65, 0.2);
    color: var(--nottello-gold);
}

.nottello-concept__step-number--blue {
    background: rgba(107, 127, 215, 0.2);
    color: var(--nottello-blue);
}

.nottello-concept__step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.nottello-concept__step strong {
    color: var(--text-primary);
}

.nottello-concept__highlight {
    margin-top: 30px;
    padding: 20px;
    background: rgba(245, 176, 65, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    text-align: center;
}

.nottello-concept__highlight strong {
    color: var(--nottello-gold);
}

/* ==========================================================================
   Steps Section
   ========================================================================== */
.nottello-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nottello-step {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.nottello-step:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
}

.nottello-step__icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(245, 176, 65, 0.15), rgba(107, 127, 215, 0.15));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nottello-step__icon svg {
    color: var(--nottello-gold);
    width: 40px;
    height: 40px;
}

.nottello-step__badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: var(--nottello-gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.nottello-step__title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.nottello-step__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   Comparison Section
   ========================================================================== */
.nottello-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.nottello-comparison__card {
    border-radius: var(--radius-xl);
    padding: 40px;
}

.nottello-comparison__card--ota {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(220, 53, 69, 0.05));
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.nottello-comparison__card--nottello {
    background: linear-gradient(135deg, rgba(245, 176, 65, 0.15), rgba(107, 127, 215, 0.08));
    border: 1px solid var(--border-gold);
    position: relative;
}

.nottello-comparison__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 14px;
    background: var(--nottello-gold);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nottello-comparison__title {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.nottello-comparison__card--ota .nottello-comparison__title {
    color: #f87171;
}

.nottello-comparison__card--nottello .nottello-comparison__title {
    color: var(--nottello-gold);
}

.nottello-comparison__list {
    list-style: none;
}

.nottello-comparison__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.nottello-comparison__item svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.nottello-comparison__card--ota .nottello-comparison__item svg {
    color: #f87171;
}

.nottello-comparison__card--nottello .nottello-comparison__item svg {
    color: var(--nottello-gold);
}

.nottello-comparison__item strong {
    color: var(--text-primary);
}

/* Benefits Grid */
.nottello-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nottello-benefit {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.nottello-benefit:hover {
    border-color: var(--border-blue);
}

.nottello-benefit__icon {
    color: var(--nottello-blue);
    margin-bottom: 16px;
}

.nottello-benefit__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.nottello-benefit__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Quote Box */
.nottello-quote {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(to right, rgba(245, 176, 65, 0.08), transparent, rgba(107, 127, 215, 0.08));
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    text-align: center;
}

.nottello-quote p {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Pricing Section (Hotels)
   ========================================================================== */
.nottello-pricing {
    text-align: center;
}

.nottello-pricing__card {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(245, 176, 65, 0.12), rgba(245, 176, 65, 0.03));
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.nottello-pricing__card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 176, 65, 0.1) 0%, transparent 50%);
    animation: nottelloFloat 10s ease-in-out infinite;
}

.nottello-pricing__content {
    position: relative;
    z-index: 1;
}

.nottello-pricing__label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.nottello-pricing__price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--nottello-gold);
    margin-bottom: 10px;
}

.nottello-pricing__price span {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.nottello-pricing__period {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.nottello-pricing__features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.nottello-pricing__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.nottello-pricing__feature:last-child {
    border-bottom: none;
}

.nottello-pricing__feature svg {
    color: var(--nottello-gold);
    flex-shrink: 0;
}

/* ==========================================================================
   Partners Section (Agencies)
   ========================================================================== */
.nottello-partners__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.nottello-partner-tier {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.nottello-partner-tier:hover {
    border-color: var(--border-blue);
    transform: translateY(-5px);
}

.nottello-partner-tier__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nottello-partner-tier__badge--bronze {
    background: rgba(234, 88, 12, 0.2);
    color: #fb923c;
}

.nottello-partner-tier__badge--silver {
    background: rgba(156, 163, 175, 0.2);
    color: #d1d5db;
}

.nottello-partner-tier__badge--gold {
    background: rgba(245, 176, 65, 0.2);
    color: var(--nottello-gold);
}

.nottello-partner-tier__badge--platinum {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.nottello-partner-tier__hotels {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.nottello-partner-tier__commission {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nottello-blue);
    margin-bottom: 8px;
}

.nottello-partner-tier__bonus {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.nottello-partners__cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(107, 127, 215, 0.12), rgba(107, 127, 215, 0.03));
    border: 2px solid var(--border-blue);
    border-radius: var(--radius-xl);
}

.nottello-partners__cta h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.nottello-partners__cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.nottello-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.nottello-contact__info h2 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    color: var(--nottello-gold);
    margin-bottom: 20px;
}

.nottello-contact__info > p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.nottello-contact__item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.nottello-contact__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(245, 176, 65, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nottello-contact__icon svg {
    color: var(--nottello-gold);
}

.nottello-contact__text p:first-child {
    font-weight: 600;
    margin-bottom: 4px;
}

.nottello-contact__text p:last-child {
    color: var(--text-secondary);
}

.nottello-contact__form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.nottello-contact__form h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.nottello-form-group {
    margin-bottom: 20px;
}

.nottello-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nottello-form-input,
.nottello-form-select,
.nottello-form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.nottello-form-input::placeholder,
.nottello-form-textarea::placeholder {
    color: var(--text-muted);
}

.nottello-form-input:focus,
.nottello-form-select:focus,
.nottello-form-textarea:focus {
    outline: none;
    border-color: var(--nottello-gold);
    box-shadow: 0 0 0 3px rgba(245, 176, 65, 0.1);
}

.nottello-form-select {
    cursor: pointer;
    color: var(--text-secondary);
}

.nottello-form-select option {
    background: var(--bg-dark);
}

.nottello-form-textarea {
    resize: none;
    min-height: 140px;
}

.nottello-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0;
}

.nottello-form-checkbox input {
    margin-top: 4px;
    accent-color: var(--nottello-gold);
}

.nottello-form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.nottello-form-checkbox a {
    color: var(--nottello-gold);
}

.nottello-form-checkbox a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.nottello-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 30px;
    position: relative;
    z-index: 10;
}

.nottello-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.nottello-footer__brand {
    max-width: 300px;
}

.nottello-footer__brand img {
    height: 60px;
    margin-bottom: 20px;
}

.nottello-footer__brand p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.nottello-footer__column h4 {
    color: var(--nottello-gold);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.nottello-footer__links li {
    margin-bottom: 12px;
}

.nottello-footer__links a {
    color: var(--text-secondary);
}

.nottello-footer__links a:hover {
    color: var(--text-primary);
}

.nottello-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.nottello-footer__contact-item svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

.nottello-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.nottello-footer__social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.nottello-footer__social-link:hover {
    background: rgba(245, 176, 65, 0.2);
}

.nottello-footer__social-link svg {
    color: var(--text-primary);
}

.nottello-footer__bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.nottello-footer__bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.nottello-footer__bottom .confidential {
    font-style: italic;
    font-size: 0.85rem;
}

/* ==========================================================================
   Modal
   ========================================================================== */
.nottello-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.nottello-modal.active {
    display: flex;
}

.nottello-modal__content {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: nottelloSlideUp 0.4s ease;
}

.nottello-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition-normal);
    font-size: 1.5rem;
}

.nottello-modal__close:hover {
    color: var(--text-primary);
}

.nottello-modal__header {
    padding: 40px 40px 0;
    text-align: center;
}

.nottello-modal__header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.nottello-modal__header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.nottello-modal__body {
    padding: 40px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.nottello-cta {
    text-align: center;
    padding: 80px;
    background: linear-gradient(to right, rgba(245, 176, 65, 0.05), rgba(107, 127, 215, 0.05), rgba(245, 176, 65, 0.05));
    border-radius: var(--radius-xl);
}

.nottello-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.nottello-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nottello-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }
    
    .nottello-hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nottello-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nottello-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nottello-partners__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nottello-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nottello-nav__menu,
    .nottello-nav__buttons {
        display: none;
    }
    
    .nottello-mobile-toggle {
        display: block;
    }
    
    .nottello-concept {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .nottello-comparison {
        grid-template-columns: 1fr;
    }
    
    .nottello-contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nottello-hero {
        padding: 120px 24px 80px;
    }
    
    .nottello-hero__stats {
        grid-template-columns: 1fr;
    }
    
    .nottello-hero__buttons {
        flex-direction: column;
    }
    
    .nottello-hero__buttons .nottello-btn {
        width: 100%;
    }
    
    .nottello-steps {
        grid-template-columns: 1fr;
    }
    
    .nottello-benefits {
        grid-template-columns: 1fr;
    }
    
    .nottello-partners__grid {
        grid-template-columns: 1fr;
    }
    
    .nottello-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nottello-form-row {
        grid-template-columns: 1fr;
    }
    
    .nottello-cta {
        padding: 50px 30px;
    }
    
    .nottello-cta__buttons {
        flex-direction: column;
    }
    
    .nottello-cta__buttons .nottello-btn {
        width: 100%;
    }
    
    .nottello-quote p {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nottello-pricing__price {
        font-size: 3rem;
    }
    
    .nottello-modal__header,
    .nottello-modal__body {
        padding: 30px;
    }
    
    .nottello-contact__form {
        padding: 30px;
    }
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.wp-caption {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    max-width: 100%;
    padding: 10px;
    border-radius: var(--radius-sm);
}

.wp-caption img {
    border: 0 none;
    height: auto;
    max-width: 100%;
    width: auto;
}

.wp-caption .wp-caption-text {
    font-size: 0.9rem;
    margin: 0;
    padding: 10px 0 0;
    color: var(--text-secondary);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--bg-card);
    border-radius: var(--radius-sm);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: var(--text-primary);
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
