/*
Theme Name: TLF Italia
Description: Tema personalizzato per TLF Italia SRL - Autonoleggio Cosenza. Design flat minimale moderno.
Version: 2.0.0
Author: Pasquale Verta
Tags: automotive, car-rental, business, responsive, flat-design, minimal
*/

/* ==========================================================================
   TLF ITALIA - FLAT MINIMAL DESIGN SYSTEM
   Google Fonts caricati via PHP in setup.php per performance ottimali
   ========================================================================== */

:root {
    /* Brand Colors - Flat Palette */
    --tlf-red: #C63637;
    --tlf-red-dark: #a82d2e;
    --tlf-red-light: #d94445;
    --tlf-black: #000000;
    --tlf-white: #ffffff;

    /* Neutral Grays */
    --tlf-gray-50: #F8F8F8;
    --tlf-gray-100: #F5F5F5;
    --tlf-gray-200: #E8E8E8;
    --tlf-gray-300: #E0E0E0;
    --tlf-gray-400: #BDBDBD;
    --tlf-gray-500: #888888;
    --tlf-gray-600: #666666;
    --tlf-gray-700: #333333;
    --tlf-gray-800: #1a1a1a;

    /* Typography */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --section-padding: 80px;
    --border-radius: 4px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;

    /* Shadows - Subtle */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--tlf-gray-700);
    background: var(--tlf-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--tlf-black);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.tlf-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.tlf-section {
    padding: var(--section-padding) 0;
}

.tlf-section--gray {
    background: var(--tlf-gray-100);
}

.tlf-section--dark {
    background: #242424;
}

.tlf-section--dark .tlf-section-header h2 {
    color: var(--tlf-white);
}

.tlf-section--dark .tlf-section-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* Dark Section Vehicle Cards */
.tlf-section--dark .tlf-card {
    background: #2d2d2d;
    border: 1px solid #3a3a3a;
}

.tlf-section--dark .tlf-card:hover {
    border-color: var(--tlf-red);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.tlf-section--dark .tlf-vehicle-image {
    background: #1a1a1a;
}

.tlf-section--dark .tlf-vehicle-category {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.tlf-section--dark .tlf-vehicle-title,
.tlf-section--dark .tlf-vehicle-title a {
    color: var(--tlf-white);
}

.tlf-section--dark .tlf-vehicle-title a:hover {
    color: var(--tlf-red);
}

.tlf-section--dark .tlf-spec {
    color: rgba(255, 255, 255, 0.6);
}

.tlf-section--dark .tlf-spec-icon {
    color: rgba(255, 255, 255, 0.5);
}

.tlf-section--dark .tlf-vehicle-footer {
    border-top-color: #3a3a3a;
}

.tlf-section--dark .tlf-price-period {
    color: rgba(255, 255, 255, 0.5);
}

.tlf-section--dark .tlf-btn--outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--tlf-white);
}

.tlf-section--dark .tlf-btn--outline:hover {
    background: var(--tlf-red);
    border-color: var(--tlf-red);
    color: var(--tlf-white);
}

.tlf-section--dark .tlf-btn {
    background: var(--tlf-red);
    color: var(--tlf-white);
}

.tlf-section--dark .tlf-btn:hover {
    background: var(--tlf-red-dark);
}

/* ==========================================================================
   HEADER - FLAT MINIMAL
   ========================================================================== */

.tlf-header {
    background: var(--tlf-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.tlf-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.tlf-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.tlf-logo a {
    display: flex;
    align-items: center;
}

.tlf-logo-img {
    height: 64px;
    width: auto;
    transition: var(--transition-fast);
}

.tlf-header.scrolled .tlf-logo-img {
    height: 54px;
}

/* Mobile Menu Logo */
.tlf-menu-mobile-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tlf-menu-mobile-logo .tlf-logo-img {
    height: 52px;
}

/* Desktop Navigation */
.tlf-menu-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.tlf-nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.tlf-nav-menu a {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--tlf-gray-700);
    padding: 0.5rem 0;
    position: relative;
}

.tlf-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tlf-red);
    transition: var(--transition-fast);
}

.tlf-nav-menu a:hover,
.tlf-nav-menu .current-menu-item a {
    color: var(--tlf-red);
}

.tlf-nav-menu a:hover::after,
.tlf-nav-menu .current-menu-item a::after {
    width: 100%;
}

/* Header CTA */
.tlf-header-cta {
    display: flex;
    gap: 0.75rem;
}

.tlf-header-cta .tlf-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ==========================================================================
   BUTTONS - FLAT STYLE
   ========================================================================== */

.tlf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--tlf-red);
    color: var(--tlf-white);
}

.tlf-btn:hover {
    background: var(--tlf-red-dark);
    transform: translateY(-2px);
}

.tlf-btn--outline {
    background: transparent;
    color: var(--tlf-gray-700);
    border: 1px solid var(--tlf-gray-300);
}

.tlf-btn--outline:hover {
    border-color: var(--tlf-red);
    color: var(--tlf-red);
    background: transparent;
}

.tlf-btn--white {
    background: var(--tlf-white);
    color: var(--tlf-gray-700);
}

.tlf-btn--white:hover {
    background: var(--tlf-gray-100);
}

.tlf-btn--large {
    padding: 16px 32px;
    font-size: 0.9375rem;
}

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

/* ==========================================================================
   HOME HERO - MODERN LAYOUT WITH FORM
   ========================================================================== */

.tlf-home-hero {
    background: linear-gradient(135deg, var(--tlf-red) 0%, var(--tlf-red-dark) 100%);
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

/* Decorazione cerchi - stile CTA */
.tlf-home-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.tlf-home-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    z-index: 1;
}

.tlf-home-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.tlf-home-hero-content {
    color: var(--tlf-white);
}

.tlf-home-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--tlf-white);
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

.tlf-home-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.tlf-home-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 500px;
}

.tlf-home-hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Booking Card */
.tlf-booking-card {
    background: var(--tlf-white);
    border-radius: var(--border-radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.tlf-booking-card-header {
    text-align: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--tlf-gray-200);
}

.tlf-booking-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tlf-black);
    margin-bottom: 0.25rem;
}

.tlf-booking-card-header p {
    font-size: 0.875rem;
    color: var(--tlf-gray-600);
    margin: 0;
}

.tlf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

/* Outline White Button */
.tlf-btn--outline-white {
    background: transparent;
    border: 2px solid var(--tlf-white);
    color: var(--tlf-white);
}

.tlf-btn--outline-white:hover {
    background: var(--tlf-white);
    color: var(--tlf-red);
}

/* ==========================================================================
   HOMEPAGE FEATURES GRID
   ========================================================================== */

.tlf-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.tlf-feature-card {
    background: var(--tlf-white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.tlf-feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.tlf-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tlf-red) 0%, var(--tlf-red-dark) 100%);
    border-radius: var(--border-radius-lg);
    color: var(--tlf-white);
}

.tlf-feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.tlf-feature-card p {
    font-size: 0.9rem;
    color: var(--tlf-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   HOMEPAGE SERVICE CARDS
   ========================================================================== */

.tlf-services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.tlf-service-card {
    background: var(--tlf-white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--tlf-gray-200);
    text-align: center;
}

.tlf-service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--tlf-red);
}

.tlf-service-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tlf-gray-100);
    border-radius: var(--border-radius-lg);
    color: var(--tlf-red);
}

.tlf-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.tlf-service-card p {
    font-size: 0.95rem;
    color: var(--tlf-gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.tlf-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--tlf-red);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.tlf-link:hover {
    color: var(--tlf-red-dark);
}

.tlf-link span {
    transition: transform 0.2s ease;
}

.tlf-link:hover span {
    transform: translateX(4px);
}

/* Section CTA */
.tlf-section-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* General Booking Form */
.tlf-booking-form {
    background: var(--tlf-white);
    border-radius: var(--border-radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.tlf-form-header {
    text-align: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--tlf-gray-200);
}

.tlf-form-header h3 {
    color: var(--tlf-black);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.tlf-form-header p {
    color: var(--tlf-gray-600);
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.tlf-form-benefits {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tlf-form-benefits span {
    background: rgba(198, 54, 55, 0.08);
    color: var(--tlf-red);
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Form Elements */
.tlf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.tlf-form-group {
    margin-bottom: var(--space-sm);
}

.tlf-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--tlf-gray-700);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tlf-form-group input,
.tlf-form-group select,
.tlf-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    border: 1px solid var(--tlf-gray-300);
    border-radius: var(--border-radius);
    background: var(--tlf-white);
    color: var(--tlf-gray-700);
    transition: var(--transition-fast);
}

.tlf-form-group input::placeholder,
.tlf-form-group textarea::placeholder {
    color: var(--tlf-gray-500);
}

.tlf-form-group input:focus,
.tlf-form-group select:focus,
.tlf-form-group textarea:focus {
    outline: none;
    border-color: var(--tlf-red);
    box-shadow: 0 0 0 3px rgba(198, 54, 55, 0.1);
}

/* Checkbox */
.tlf-form-group--checkbox {
    margin-top: var(--space-sm);
}

.tlf-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--tlf-gray-600);
    cursor: pointer;
    line-height: 1.4;
}

.tlf-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--tlf-red);
    cursor: pointer;
}

.tlf-checkbox-label a {
    color: var(--tlf-red);
    text-decoration: underline;
}

.tlf-checkbox-label a:hover {
    color: var(--tlf-red-dark);
}

/* Submit Button */
.tlf-form-submit {
    margin-top: var(--space-md);
}

.tlf-form-submit .tlf-btn {
    width: 100%;
}

.tlf-form-note {
    font-size: 0.75rem;
    color: var(--tlf-gray-500);
    text-align: center;
    margin-top: var(--space-sm);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.tlf-section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.tlf-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tlf-gray-700);
    margin-bottom: 0.5rem;
}

.tlf-section-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--tlf-red);
    margin: 0.75rem auto 0;
}

.tlf-section-header h2 {
    margin-bottom: var(--space-sm);
}

.tlf-section-header p {
    font-size: 1rem;
    color: var(--tlf-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Badge style */
.tlf-section-badge {
    margin-bottom: var(--space-sm);
}

.tlf-section-badge span {
    display: inline-block;
    background: var(--tlf-red);
    color: var(--tlf-white);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* ==========================================================================
   GRID LAYOUTS
   ========================================================================== */

.tlf-grid {
    display: grid;
    gap: var(--space-md);
}

.tlf-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.tlf-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.tlf-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ==========================================================================
   VEHICLE CARDS - FLAT MINIMAL
   ========================================================================== */

.tlf-card {
    background: var(--tlf-white);
    border: 1px solid var(--tlf-gray-200);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.tlf-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.tlf-vehicle-card {
    display: flex;
    flex-direction: column;
}

.tlf-vehicle-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--tlf-gray-100);
}

.tlf-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tlf-vehicle-card:hover .tlf-vehicle-image img {
    transform: scale(1.05);
}

.tlf-vehicle-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--tlf-red);
    color: var(--tlf-white);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tlf-card-content {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tlf-vehicle-category {
    display: inline-block;
    background: var(--tlf-gray-100);
    color: var(--tlf-gray-600);
    padding: 4px 10px;
    border-radius: var(--border-radius);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.tlf-vehicle-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.tlf-vehicle-title a:hover {
    color: var(--tlf-red);
}

.tlf-vehicle-specs {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-sm);
}

.tlf-spec {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--tlf-gray-600);
}

.tlf-spec-icon {
    width: 16px;
    height: 16px;
    color: var(--tlf-gray-500);
}

.tlf-vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--tlf-gray-200);
}

.tlf-vehicle-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.15rem 0.25rem;
}

.tlf-price-from {
    width: 100%;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--tlf-gray-500);
    font-weight: 500;
}

.tlf-price-amount {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tlf-red);
}

.tlf-price-period {
    font-size: 0.875rem;
    color: var(--tlf-gray-500);
}

.tlf-vehicle-footer .tlf-btn--outline {
    padding: 10px 20px;
    font-size: 0.75rem;
}

/* Placeholder */
.tlf-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tlf-gray-200);
    color: var(--tlf-gray-600);
    font-weight: 600;
    text-align: center;
    width: 100%;
    height: 100%;
}

.tlf-placeholder--vehicle {
    font-size: 1rem;
}

/* ==========================================================================
   SERVICES SECTION - PREMIUM LAYOUT
   ========================================================================== */

.tlf-services-section {
    background: var(--tlf-white);
}

.tlf-services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Services Grid - Icon Cards */
.tlf-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.tlf-services-grid .tlf-service-card {
    padding: var(--space-md);
    text-align: left;
}

.tlf-service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-sm);
    color: var(--tlf-red);
}

.tlf-service-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tlf-service-card p {
    font-size: 0.875rem;
    color: var(--tlf-gray-600);
    margin: 0;
    line-height: 1.6;
}

/* Services Accordion */
.tlf-services-accordion {
    display: flex;
    flex-direction: column;
}

.tlf-service-item {
    border-bottom: 1px solid var(--tlf-gray-200);
}

.tlf-service-item:last-child {
    border-bottom: none;
}

.tlf-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tlf-service-header:hover h3 {
    color: var(--tlf-red);
}

.tlf-service-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    transition: var(--transition-fast);
}

.tlf-service-arrow {
    font-size: 1.25rem;
    color: var(--tlf-red);
    transition: var(--transition);
}

.tlf-service-item.active .tlf-service-arrow {
    transform: rotate(90deg);
}

.tlf-service-item.active .tlf-service-header h3 {
    color: var(--tlf-red);
}

.tlf-service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.tlf-service-item.active .tlf-service-content {
    max-height: 300px;
    padding-bottom: var(--space-md);
}

.tlf-service-content p {
    color: var(--tlf-gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.tlf-service-features {
    list-style: none;
    padding: 0;
}

.tlf-service-features li {
    position: relative;
    padding-left: 1.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-size: 0.875rem;
    color: var(--tlf-gray-600);
}

.tlf-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tlf-red);
    font-weight: 700;
}

/* Services Image */
.tlf-services-image {
    position: sticky;
    top: 100px;
}

.tlf-service-image-container {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tlf-service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(1.05);
}

.tlf-service-img.active {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.tlf-cta-section {
    background: var(--tlf-gray-100);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.tlf-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.tlf-cta-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tlf-gray-700);
    margin-bottom: 0.5rem;
}

.tlf-cta-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--tlf-red);
    margin: 0.75rem auto var(--space-md);
}

.tlf-cta-section h2 {
    margin-bottom: var(--space-sm);
}

.tlf-cta-section p {
    color: var(--tlf-gray-600);
    margin-bottom: var(--space-lg);
}

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Terms, etc.)
   ========================================================================== */

/* Page specific styling for privacy-policy */
.privacy-policy .tlf-page-content,
.page-termini-condizioni .tlf-page-content {
    max-width: 900px;
}

.privacy-policy .tlf-page-content h2,
.page-termini-condizioni .tlf-page-content h2 {
    color: var(--tlf-red);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--tlf-red);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-policy .tlf-page-content h2:first-of-type,
.page-termini-condizioni .tlf-page-content h2:first-of-type {
    margin-top: 0;
}

.privacy-policy .tlf-page-content p,
.page-termini-condizioni .tlf-page-content p {
    color: var(--tlf-gray-700);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.privacy-policy .tlf-page-content ul,
.page-termini-condizioni .tlf-page-content ul {
    background: var(--tlf-gray-100);
    border-left: 4px solid var(--tlf-red);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem 1.25rem 2rem;
    margin: 1rem 0 1.5rem;
    list-style: none;
}

.privacy-policy .tlf-page-content ul li,
.page-termini-condizioni .tlf-page-content ul li {
    position: relative;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--tlf-gray-700);
    line-height: 1.6;
}

.privacy-policy .tlf-page-content ul li::before,
.page-termini-condizioni .tlf-page-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 8px;
    height: 8px;
    background: var(--tlf-red);
    border-radius: 50%;
}

.privacy-policy .tlf-page-content ul li strong,
.page-termini-condizioni .tlf-page-content ul li strong {
    color: var(--tlf-black);
}

.privacy-policy .tlf-page-content a,
.page-termini-condizioni .tlf-page-content a {
    color: var(--tlf-red);
    text-decoration: underline;
    font-weight: 500;
}

.privacy-policy .tlf-page-content a:hover,
.page-termini-condizioni .tlf-page-content a:hover {
    color: var(--tlf-red-dark);
}

/* Info box for important sections */
.privacy-policy .tlf-page-content h2 + p strong:first-child,
.page-termini-condizioni .tlf-page-content h2 + p strong:first-child {
    color: var(--tlf-black);
}

/* First paragraph styling (company info) */
.privacy-policy .tlf-page-content > p:first-of-type {
    background: var(--tlf-gray-100);
    border-left: 4px solid var(--tlf-red);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--tlf-gray-700);
}

.privacy-policy .tlf-page-content > p:first-of-type strong {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.75rem;
    color: var(--tlf-black);
}

/* Last updated badge */
.privacy-policy .tlf-page-content p:last-of-type,
.page-termini-condizioni .tlf-page-content p:last-of-type {
    background: var(--tlf-gray-100);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--tlf-gray-600);
    margin-top: 2rem;
}

/* ==========================================================================
   FOOTER - MINIMAL BLACK
   ========================================================================== */

.tlf-footer {
    background: var(--tlf-black);
    color: var(--tlf-white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.tlf-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.tlf-footer-brand h4 {
    font-size: 1.25rem;
    color: var(--tlf-white);
    margin-bottom: var(--space-sm);
}

.tlf-footer-brand h4 span {
    color: var(--tlf-red);
}

.tlf-footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.tlf-footer-address {
    line-height: 1.6;
}

.tlf-footer-address a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tlf-footer-address a:hover {
    color: var(--tlf-white);
}

.tlf-footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tlf-footer-contact a:hover {
    color: var(--tlf-white);
}

.tlf-footer-social {
    display: flex;
    gap: 0.75rem;
}

.tlf-footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--tlf-white);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.tlf-footer-social a:hover {
    background: var(--tlf-red);
    border-color: var(--tlf-red);
}

.tlf-footer-column h5 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tlf-white);
    margin-bottom: var(--space-md);
}

.tlf-footer-links {
    list-style: none;
}

.tlf-footer-links li {
    margin-bottom: 0.75rem;
}

.tlf-footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.tlf-footer-links a:hover {
    color: var(--tlf-red);
}

.tlf-footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.tlf-footer-contact .contact-icon {
    flex-shrink: 0;
}

.tlf-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-md);
    text-align: center;
}

.tlf-footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.8125rem;
    margin: 0;
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */

.tlf-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--tlf-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.tlf-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */

.tlf-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
}

.tlf-hamburger-icon {
    font-size: 24px;
    color: var(--tlf-black);
}

.tlf-menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--tlf-black);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.tlf-menu-mobile.active {
    transform: translateX(0);
}

.tlf-menu-mobile-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.tlf-menu-mobile-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--space-lg);
    position: relative;
}

.tlf-menu-mobile-logo a {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--tlf-white);
}

.tlf-menu-mobile-close {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}

.tlf-menu-mobile-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--tlf-white);
}

.tlf-menu-mobile-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.tlf-menu-mobile-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.tlf-menu-mobile-list {
    list-style: none;
    flex: 1;
}

.tlf-menu-mobile-list li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tlf-menu-mobile-list a {
    display: block;
    padding: var(--space-md) 0;
    color: var(--tlf-white);
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tlf-menu-mobile-list a:hover {
    color: var(--tlf-red);
}

.tlf-menu-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.tlf-menu-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
}

.tlf-menu-mobile-btn--primary {
    background: var(--tlf-red);
    color: var(--tlf-white);
}

.tlf-menu-mobile-btn--secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--tlf-white);
}

.tlf-menu-mobile-footer {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.tlf-menu-mobile-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .tlf-hero-bg {
        width: 50%;
        opacity: 0.6;
    }

    .tlf-hero-left {
        max-width: 420px;
    }

    .tlf-hero-text h1 {
        font-size: 2rem;
    }

    .tlf-services-container {
        gap: var(--space-xl);
    }

    .tlf-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Header Mobile */
    .tlf-menu-desktop {
        display: none;
    }

    .tlf-hamburger {
        display: flex;
        position: absolute;
        right: 0;
    }

    .tlf-navigation {
        height: 64px;
        position: relative;
    }

    .tlf-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .tlf-logo-img {
        height: 50px;
    }

    /* Home Hero Mobile */
    .tlf-home-hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }

    .tlf-home-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .tlf-home-hero-content {
        text-align: center;
    }

    .tlf-home-hero-content h1 {
        font-size: 2rem;
    }

    .tlf-home-hero-desc {
        max-width: 100%;
    }

    .tlf-home-hero-cta {
        justify-content: center;
    }

    .tlf-form-row {
        grid-template-columns: 1fr;
    }

    /* Features Grid Mobile */
    .tlf-features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .tlf-feature-card {
        padding: var(--space-md);
    }

    .tlf-feature-icon {
        width: 52px;
        height: 52px;
    }

    .tlf-feature-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Service Cards Mobile */
    .tlf-services-cards {
        grid-template-columns: 1fr;
    }

    .tlf-service-card {
        text-align: center;
    }

    .tlf-service-card-icon {
        margin-left: auto;
        margin-right: auto;
    }

    /* Old Hero Mobile (kept for compatibility) */
    .tlf-hero {
        min-height: auto;
        padding: var(--space-xl) 0;
        background: linear-gradient(135deg, var(--tlf-gray-50) 0%, var(--tlf-white) 100%);
    }

    .tlf-hero .tlf-container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    .tlf-hero-bg {
        display: none;
    }

    .tlf-hero-left {
        width: 100%;
        max-width: 100%;
        padding: 0 var(--space-sm);
    }

    .tlf-hero-text {
        text-align: center;
        margin-bottom: var(--space-lg);
    }

    .tlf-hero-text h1 {
        font-size: 1.75rem;
        line-height: 1.15;
        margin-bottom: var(--space-xs);
    }

    .tlf-hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }

    .tlf-hero-desc {
        font-size: 0.875rem;
        max-width: 320px;
        margin: 0 auto;
    }

    .tlf-hero .tlf-booking-form {
        max-width: 100%;
        padding: var(--space-md);
    }

    .tlf-hero .tlf-form-header h3 {
        font-size: 1.125rem;
    }

    .tlf-hero .tlf-form-group {
        margin-bottom: var(--space-sm);
    }

    .tlf-hero .tlf-form-group input,
    .tlf-hero .tlf-form-group select {
        padding: 12px 14px;
        font-size: 16px;
    }

    /* Form Mobile */
    .tlf-form-row {
        grid-template-columns: 1fr;
    }

    .tlf-form-group input,
    .tlf-form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Grid Mobile */
    .tlf-grid--2,
    .tlf-grid--3,
    .tlf-grid--4 {
        grid-template-columns: 1fr;
    }

    /* Services Mobile */
    .tlf-services-container {
        grid-template-columns: 1fr;
    }

    .tlf-services-image {
        order: -1;
        position: relative;
        top: auto;
    }

    .tlf-service-image-container {
        aspect-ratio: 16/9;
        margin-bottom: var(--space-lg);
    }

    /* Footer Mobile */
    .tlf-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .tlf-footer-social {
        justify-content: center;
    }

    .tlf-footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }

    .tlf-container {
        padding: 0 var(--space-sm);
    }

    /* Hero Extra Small */
    .tlf-hero {
        padding: var(--space-lg) 0;
    }

    .tlf-hero .tlf-container {
        padding: 0;
    }

    .tlf-hero-left {
        max-width: 100%;
        padding: 0 var(--space-xs);
    }

    .tlf-hero-text h1 {
        font-size: 1.5rem;
    }

    .tlf-hero-subtitle {
        font-size: 0.9375rem;
    }

    .tlf-hero-desc {
        font-size: 0.8125rem;
        max-width: 280px;
    }

    .tlf-hero .tlf-booking-form {
        padding: var(--space-sm);
        border-radius: var(--border-radius-lg);
    }

    .tlf-hero .tlf-form-header {
        margin-bottom: var(--space-xs);
    }

    .tlf-hero .tlf-form-header h3 {
        font-size: 1rem;
    }

    .tlf-hero .tlf-form-group {
        margin-bottom: 0.625rem;
    }

    .tlf-hero .tlf-form-group label {
        font-size: 0.625rem;
        margin-bottom: 0.125rem;
    }

    .tlf-hero .tlf-form-group input,
    .tlf-hero .tlf-form-group select {
        padding: 10px 12px;
    }

    .tlf-hero .tlf-btn {
        padding: 12px 16px;
        font-size: 0.8125rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .tlf-booking-form {
        padding: var(--space-md);
    }

    .tlf-btn {
        padding: 12px 24px;
        font-size: 0.8125rem;
    }

    .tlf-whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   SINGLE VEHICLE PAGE
   ========================================================================== */

/* Vehicle Detail Grid Layout */
.tlf-vehicle-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Gallery Wrapper */
.tlf-vehicle-gallery-wrapper {
    position: sticky;
    top: 100px;
}

.tlf-gallery-main {
    margin-bottom: 1rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--tlf-gray-100);
    position: relative;
}

.tlf-gallery-main-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Navigation Arrows - Hidden on desktop */
.tlf-gallery-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: var(--transition-fast);
    z-index: 10;
    color: var(--tlf-black);
}

.tlf-gallery-arrow:hover {
    background: var(--tlf-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tlf-gallery-arrow--prev {
    left: 10px;
}

.tlf-gallery-arrow--next {
    right: 10px;
}

/* Gallery Dots - Hidden on desktop */
.tlf-gallery-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
}

.tlf-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--tlf-gray-300);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.tlf-gallery-dot:hover {
    background: var(--tlf-gray-400);
}

.tlf-gallery-dot.active {
    background: var(--tlf-red);
    transform: scale(1.2);
}

.tlf-gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--tlf-gray-400);
    gap: var(--space-md);
}

.tlf-gallery-placeholder span {
    font-size: 1rem;
    color: var(--tlf-gray-500);
}

.tlf-gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.tlf-gallery-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-fast);
    flex-shrink: 0;
    border: 2px solid transparent;
}

.tlf-gallery-thumb:hover {
    opacity: 0.9;
}

.tlf-gallery-thumb.active {
    opacity: 1;
    border-color: var(--tlf-red);
}

/* Vehicle Detail Info */
.tlf-vehicle-detail-info {
    padding-top: var(--space-sm);
}

/* Price Badge */
.tlf-vehicle-price-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--tlf-red) 0%, var(--tlf-red-dark) 100%);
    color: var(--tlf-white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-lg);
}

.tlf-vehicle-price-badge .tlf-price-label {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-bottom: 0.125rem;
}

.tlf-vehicle-price-badge .tlf-price-main {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.tlf-vehicle-price-badge .tlf-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tlf-white);
}

.tlf-vehicle-price-badge .tlf-price-period {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Specs Grid */
.tlf-vehicle-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.tlf-spec-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--tlf-white);
    border: 1px solid var(--tlf-gray-200);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    transition: var(--transition-fast);
}

.tlf-spec-card:hover {
    border-color: var(--tlf-gray-300);
    box-shadow: var(--shadow-sm);
}

.tlf-spec-card--available {
    border-color: #22c55e;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(34, 197, 94, 0.02) 100%);
}

.tlf-spec-card--available .tlf-spec-card-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.tlf-spec-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tlf-red) 0%, var(--tlf-red-dark) 100%);
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.tlf-spec-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--tlf-white);
    stroke: var(--tlf-white);
}

.tlf-spec-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tlf-spec-card-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--tlf-gray-800);
}

.tlf-spec-card-label {
    font-size: 0.8125rem;
    color: var(--tlf-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Description and Features */
.tlf-vehicle-detail-description,
.tlf-vehicle-detail-features {
    margin-bottom: var(--space-xl);
}

.tlf-vehicle-detail-description h3,
.tlf-vehicle-detail-features h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tlf-gray-800);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.tlf-vehicle-detail-description h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--tlf-red);
    border-radius: 2px;
}

.tlf-vehicle-detail-features h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--tlf-red);
    border-radius: 2px;
}

.tlf-vehicle-detail-description p,
.tlf-vehicle-detail-features p {
    line-height: 1.8;
    color: var(--tlf-gray-600);
}

/* CTA Buttons */
.tlf-vehicle-detail-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.tlf-vehicle-detail-cta .tlf-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.tlf-vehicle-detail-cta .tlf-btn svg {
    flex-shrink: 0;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .tlf-vehicle-detail-grid {
        gap: var(--space-xl);
    }

    .tlf-vehicle-gallery-wrapper {
        position: static;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tlf-vehicle-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .tlf-vehicle-price-badge {
        width: 100%;
        justify-content: center;
    }

    .tlf-vehicle-price-badge .tlf-price-amount {
        font-size: 2rem;
    }

    .tlf-vehicle-specs-grid {
        grid-template-columns: 1fr;
    }

    .tlf-gallery-thumbs {
        display: none;
    }

    .tlf-gallery-arrows,
    .tlf-gallery-arrow {
        display: flex;
    }

    .tlf-gallery-dots {
        display: flex;
    }

    .tlf-vehicle-detail-cta {
        flex-direction: column;
    }

    .tlf-vehicle-detail-cta .tlf-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .tlf-vehicle-price-badge .tlf-price-amount {
        font-size: 1.75rem;
    }

    .tlf-spec-card {
        padding: var(--space-sm);
    }

    .tlf-spec-card-icon {
        width: 40px;
        height: 40px;
    }

    .tlf-spec-card-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.tlf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tlf-modal.active {
    opacity: 1;
    visibility: visible;
}

.tlf-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.tlf-modal-content {
    position: relative;
    background: var(--tlf-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.tlf-modal.active .tlf-modal-content {
    transform: translateY(0);
}

.tlf-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--tlf-gray-500);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.tlf-modal-close:hover {
    color: var(--tlf-gray-700);
}

.tlf-modal .tlf-booking-form {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.tlf-modal .tlf-form-header {
    margin-bottom: 1.5rem;
}

.tlf-modal .tlf-form-header h3 {
    font-size: 1.5rem;
    color: var(--tlf-black);
    margin: 0;
}

/* Readonly input style */
.tlf-input-readonly {
    background-color: var(--tlf-gray-100) !important;
    color: var(--tlf-gray-600);
    cursor: not-allowed;
    border-color: var(--tlf-gray-300);
}

/* Form row for side-by-side inputs */
.tlf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .tlf-form-row {
        grid-template-columns: 1fr;
    }

    .tlf-modal-content {
        padding: 1.5rem;
    }

    .tlf-modal .tlf-form-header h3 {
        font-size: 1.25rem;
        padding-right: 2rem;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   CHI SIAMO PAGE STYLES
   ========================================================================== */

/* Page Hero */
.tlf-page-hero {
    background: linear-gradient(135deg, var(--tlf-black) 0%, var(--tlf-red-dark) 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.tlf-page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.tlf-page-hero h1 {
    color: var(--tlf-white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.tlf-page-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.6;
}

/* About Grid Layout */
.tlf-about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.tlf-about-content {
    line-height: 1.8;
}

.tlf-about-text h2 {
    color: var(--tlf-gray-800);
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.tlf-about-text p {
    margin-bottom: var(--space-md);
    color: var(--tlf-gray-600);
}

/* Mission Box */
.tlf-mission-box {
    background: var(--tlf-gray-100);
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--tlf-red);
    margin-top: var(--space-lg);
}

.tlf-mission-box h3 {
    color: var(--tlf-red);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.tlf-mission-box p {
    margin: 0;
    color: var(--tlf-gray-700);
}

/* About Intro Section */
.tlf-about-intro {
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.tlf-about-intro--large {
    max-width: 100%;
    text-align: left;
}

.tlf-about-intro-content {
    background: var(--tlf-white);
    border-radius: var(--border-radius-xl);
    padding: var(--space-xl);
}

.tlf-about-intro--large .tlf-about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-2xl) 0;
}

.tlf-about-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tlf-gray-800);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-md);
}

.tlf-about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--tlf-red);
    border-radius: 2px;
}

.tlf-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--tlf-gray-700);
    margin-bottom: var(--space-md);
}

.tlf-about-intro-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--tlf-gray-600);
    margin-bottom: var(--space-md);
}

.tlf-about-intro-content p:last-child {
    margin-bottom: 0;
}

/* Stats Row - Horizontal Stats */
.tlf-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.tlf-stat-box {
    background: var(--tlf-white);
    border: 1px solid var(--tlf-gray-200);
    border-radius: var(--border-radius-xl);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition);
}

.tlf-stat-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.tlf-stat-box .tlf-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tlf-red);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.tlf-stat-box .tlf-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--tlf-gray-500);
    font-weight: 500;
}

/* Mission Wrapper - Centered Mission Section */
.tlf-mission-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tlf-mission-wrapper h2 {
    font-size: 2rem;
    color: var(--tlf-gray-800);
    margin-bottom: var(--space-md);
}

.tlf-mission-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--tlf-gray-600);
    margin: 0;
}

/* Services Grid for Chi Siamo Page */
.tlf-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.tlf-service-card {
    background: var(--tlf-white);
    border: 1px solid var(--tlf-gray-200);
    border-radius: var(--border-radius-xl);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition);
}

.tlf-service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.tlf-service-icon {
    width: 60px;
    height: 60px;
    background: var(--tlf-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--tlf-red);
}

.tlf-service-card h4 {
    color: var(--tlf-gray-800);
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.tlf-service-card p {
    color: var(--tlf-gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Guarantees Grid */
.tlf-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.tlf-guarantee-card {
    background: var(--tlf-white);
    border: 1px solid var(--tlf-gray-200);
    border-radius: var(--border-radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition);
}

.tlf-guarantee-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.tlf-guarantee-icon {
    width: 64px;
    height: 64px;
    background: var(--tlf-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--tlf-red);
}

.tlf-guarantee-card h4 {
    color: var(--tlf-gray-800);
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.tlf-guarantee-card p {
    color: var(--tlf-gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Value Icon SVG Styling */
.tlf-value-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.tlf-value-icon svg {
    color: var(--tlf-white);
    stroke: var(--tlf-white);
}

/* Stats Card */
.tlf-stats-card {
    background: var(--tlf-white);
    border: 1px solid var(--tlf-gray-200);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}

.tlf-stats-card h3 {
    color: var(--tlf-red);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.tlf-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.tlf-stat-item {
    text-align: center;
    padding: var(--space-sm);
    background: var(--tlf-gray-100);
    border-radius: var(--border-radius);
}

.tlf-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--tlf-red);
    font-family: var(--font-heading);
}

.tlf-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--tlf-gray-500);
    margin-top: 0.25rem;
}

/* Contact Card */
.tlf-contact-card {
    background: var(--tlf-white);
    border: 1px solid var(--tlf-gray-200);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
}

.tlf-contact-card h3 {
    color: var(--tlf-red);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.tlf-contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.tlf-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--tlf-gray-700);
    font-weight: 500;
    transition: var(--transition-fast);
}

.tlf-contact-item:hover {
    color: var(--tlf-red);
}

.tlf-contact-icon {
    font-size: 1.1rem;
}

/* Values Section */
.tlf-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.tlf-value-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition);
}

.tlf-value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.tlf-value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.tlf-value-card h4 {
    color: var(--tlf-white);
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.tlf-value-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Team Section */
.tlf-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.tlf-team-placeholder {
    background: var(--tlf-gray-200);
    border-radius: var(--border-radius-xl);
    padding: var(--space-3xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.tlf-team-placeholder span {
    font-size: 5rem;
    margin-bottom: var(--space-sm);
}

.tlf-team-placeholder p {
    color: var(--tlf-gray-500);
    font-size: 1.1rem;
    margin: 0;
}

.tlf-team-content h2 {
    font-size: 2rem;
    color: var(--tlf-gray-800);
    margin-bottom: var(--space-sm);
}

.tlf-team-content > p {
    color: var(--tlf-gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.tlf-team-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tlf-team-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--tlf-gray-700);
}

.tlf-check {
    color: var(--tlf-red);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Certifications Section */
.tlf-certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.tlf-cert-card {
    background: var(--tlf-white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.tlf-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.tlf-cert-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.tlf-cert-card h4 {
    color: var(--tlf-gray-800);
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.tlf-cert-card p {
    color: var(--tlf-gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Chi Siamo Responsive */
@media (max-width: 992px) {
    .tlf-about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .tlf-about-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .tlf-stats-card,
    .tlf-contact-card {
        margin-bottom: 0;
    }

    .tlf-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tlf-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .tlf-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tlf-guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tlf-team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .tlf-team-image {
        order: 2;
    }

    .tlf-team-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .tlf-page-hero {
        padding: var(--space-2xl) 0;
    }

    .tlf-page-hero h1 {
        font-size: 2rem;
    }

    .tlf-page-hero-subtitle {
        font-size: 1rem;
    }

    .tlf-about-sidebar {
        grid-template-columns: 1fr;
    }

    .tlf-about-intro-content {
        padding: var(--space-lg);
    }

    .tlf-lead {
        font-size: 1.05rem;
    }

    .tlf-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .tlf-stat-box {
        padding: var(--space-md);
    }

    .tlf-stat-box .tlf-stat-number {
        font-size: 2rem;
    }

    .tlf-values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .tlf-value-card {
        padding: var(--space-md);
    }

    .tlf-services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .tlf-service-card {
        padding: var(--space-md);
    }

    .tlf-guarantees-grid {
        grid-template-columns: 1fr;
    }

    .tlf-guarantee-card {
        padding: var(--space-lg);
    }

    .tlf-certifications-grid {
        grid-template-columns: 1fr;
    }

    .tlf-team-placeholder {
        min-height: 250px;
        padding: var(--space-xl);
    }

    .tlf-team-placeholder span {
        font-size: 3rem;
    }
}

/* ==========================================================================
   SERVIZI PAGE STYLES
   ========================================================================== */

/* Services Showcase - Accordion + Image Layout */
.tlf-services-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Services Accordion Full */
.tlf-services-accordion-full {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.tlf-service-accordion-item {
    background: var(--tlf-white);
    border: 1px solid var(--tlf-gray-200);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.tlf-service-accordion-item:hover {
    border-color: var(--tlf-red);
}

.tlf-service-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    transition: var(--transition);
}

.tlf-service-accordion-item.active .tlf-service-accordion-header {
    background: var(--tlf-red);
}

.tlf-service-accordion-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.tlf-service-accordion-icon {
    font-size: 1.5rem;
}

.tlf-service-accordion-title h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tlf-gray-800);
    margin: 0;
    transition: var(--transition);
}

.tlf-service-accordion-item.active .tlf-service-accordion-title h3 {
    color: var(--tlf-white);
}

.tlf-service-accordion-arrow {
    font-size: 1.25rem;
    color: var(--tlf-red);
    transition: var(--transition);
}

.tlf-service-accordion-item.active .tlf-service-accordion-arrow {
    color: var(--tlf-white);
    transform: rotate(90deg);
}

.tlf-service-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.tlf-service-accordion-item.active .tlf-service-accordion-body {
    max-height: 500px;
    padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.tlf-service-accordion-body p {
    color: var(--tlf-gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.tlf-service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs) var(--space-md);
}

.tlf-service-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--tlf-gray-700);
}

.tlf-service-feature .tlf-check {
    color: var(--tlf-red);
    font-weight: 700;
}

/* Services Image Showcase */
.tlf-services-image-showcase {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--tlf-gray-200);
}

.tlf-service-showcase-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tlf-service-showcase-img.active {
    opacity: 1;
}

/* Benefits Grid */
.tlf-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.tlf-benefit-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition);
}

.tlf-benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.tlf-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--tlf-white);
}

.tlf-benefit-icon svg {
    stroke: var(--tlf-white);
}

.tlf-benefit-card h3 {
    color: var(--tlf-white);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.tlf-benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Steps Grid */
.tlf-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.tlf-step-card {
    text-align: center;
    padding: var(--space-lg);
}

.tlf-step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--tlf-red);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.tlf-step-card h3 {
    font-size: 1.25rem;
    color: var(--tlf-gray-800);
    margin-bottom: var(--space-sm);
}

.tlf-step-card p {
    color: var(--tlf-gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Buttons */
.tlf-cta-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.tlf-btn--outline-white {
    background: transparent;
    border: 2px solid var(--tlf-white) !important;
    color: var(--tlf-white) !important;
}

.tlf-btn--outline-white:hover {
    background: var(--tlf-white) !important;
    color: var(--tlf-red) !important;
}

/* White Button */
.tlf-btn--white {
    background: var(--tlf-white);
    color: var(--tlf-red);
    border: 2px solid var(--tlf-white);
}

.tlf-btn--white:hover {
    background: transparent;
    color: var(--tlf-white);
}

/* CTA Section Red Variant */
.tlf-cta-section--red {
    background: var(--tlf-red);
}

.tlf-cta-section--red .tlf-cta-content h2,
.tlf-cta-section--red .tlf-cta-content p,
.tlf-cta-section--red .tlf-cta-label {
    color: var(--tlf-white);
}

.tlf-cta-section--red .tlf-cta-label {
    background: rgba(255, 255, 255, 0.2);
}

/* Servizi Page Responsive */
@media (max-width: 992px) {
    .tlf-services-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .tlf-services-image-showcase {
        order: -1;
        max-height: 300px;
    }

    .tlf-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tlf-steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .tlf-service-features-grid {
        grid-template-columns: 1fr;
    }

    .tlf-benefits-grid {
        grid-template-columns: 1fr;
    }

    .tlf-benefit-card {
        padding: var(--space-md);
    }

    .tlf-step-number {
        font-size: 2.5rem;
    }

    .tlf-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tlf-cta-buttons .tlf-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   FLOTTA PAGE STYLES
   ============================================ */

/* Fleet Filters */
.tlf-fleet-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-xl);
}

.tlf-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    background: var(--tlf-white);
    border: 2px solid var(--tlf-gray-light);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--tlf-gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tlf-filter-btn:hover {
    border-color: var(--tlf-red);
    color: var(--tlf-red);
    background: rgba(175, 45, 36, 0.05);
}

.tlf-filter-btn.active {
    background: var(--tlf-red);
    border-color: var(--tlf-red);
    color: var(--tlf-white);
}

.tlf-filter-emoji {
    font-size: 1.1rem;
}

/* Fleet Grid */
.tlf-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.tlf-fleet-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Gray section background */
.tlf-section--gray {
    background: var(--tlf-gray-light);
}

/* Fleet Empty/No Results States */
.tlf-fleet-empty,
.tlf-fleet-no-results {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.tlf-fleet-empty-content,
.tlf-fleet-no-results-content {
    max-width: 500px;
    margin: 0 auto;
}

.tlf-fleet-empty-icon,
.tlf-fleet-no-results-icon {
    display: block;
    font-size: 4rem;
    margin-bottom: var(--space-lg);
}

.tlf-fleet-empty h3,
.tlf-fleet-no-results h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--tlf-black);
}

.tlf-fleet-empty p,
.tlf-fleet-no-results p {
    color: var(--tlf-gray-medium);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.tlf-fleet-empty-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Fleet Features */
.tlf-fleet-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.tlf-fleet-feature {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--tlf-white);
    border-radius: 12px;
    box-shadow: var(--tlf-shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tlf-fleet-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--tlf-shadow-medium);
}

.tlf-fleet-feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tlf-red) 0%, var(--tlf-red-dark) 100%);
    border-radius: 12px;
    font-size: 1.8rem;
}

.tlf-fleet-feature-icon svg {
    stroke: var(--tlf-white);
}

.tlf-fleet-feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--tlf-black);
}

.tlf-fleet-feature-content p {
    font-size: 0.95rem;
    color: var(--tlf-gray-medium);
    line-height: 1.6;
    margin: 0;
}

/* Fleet Features Dark Variant */
.tlf-fleet-features--dark .tlf-fleet-feature {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tlf-fleet-features--dark .tlf-fleet-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.tlf-fleet-features--dark .tlf-fleet-feature-icon {
    background: var(--tlf-red);
}

.tlf-fleet-features--dark .tlf-fleet-feature-content h3 {
    color: var(--tlf-white);
}

.tlf-fleet-features--dark .tlf-fleet-feature-content p {
    color: rgba(255, 255, 255, 0.7);
}

/* Fleet Stats */
.tlf-fleet-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.tlf-fleet-stat {
    padding: var(--space-lg);
}

.tlf-fleet-stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--tlf-red);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.tlf-fleet-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fleet Stats Light Variant */
.tlf-fleet-stats--light .tlf-fleet-stat-label {
    color: var(--tlf-gray-medium);
}

/* Flotta Page Responsive */
@media (max-width: 1200px) {
    .tlf-fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .tlf-fleet-features {
        grid-template-columns: 1fr;
    }

    .tlf-fleet-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tlf-fleet-filters {
        gap: var(--space-xs);
    }

    .tlf-filter-btn {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.85rem;
    }

    .tlf-fleet-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .tlf-fleet-feature {
        flex-direction: column;
        text-align: center;
    }

    .tlf-fleet-feature-icon {
        margin: 0 auto;
    }

    .tlf-fleet-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .tlf-fleet-stat-number {
        font-size: 2.2rem;
    }

    .tlf-fleet-stat-label {
        font-size: 0.85rem;
    }
}

/* ============================================
   CTA FINAL SECTION (Enhanced)
   ============================================ */

.tlf-cta-final {
    background: linear-gradient(135deg, var(--tlf-red) 0%, var(--tlf-red-dark) 100%);
    color: var(--tlf-white);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.tlf-cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.tlf-cta-final::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.tlf-cta-final-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.tlf-cta-final-content h2 {
    font-size: 2.5rem;
    color: var(--tlf-white);
    margin-bottom: var(--space-md);
}

.tlf-cta-final-content > p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.tlf-section-badge--light span {
    background: rgba(255, 255, 255, 0.2);
    color: var(--tlf-white);
}

/* CTA Buttons Large */
.tlf-cta-final-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.tlf-btn--lg {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.tlf-btn-icon {
    font-size: 1.5rem;
}

.tlf-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.tlf-btn-label {
    font-weight: 600;
    font-size: 1rem;
}

.tlf-btn-sub {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.tlf-btn--whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: var(--tlf-white);
}

.tlf-btn--whatsapp:hover {
    background: #20BA5A;
    border-color: #20BA5A;
}

/* CTA Features List */
.tlf-cta-final-features {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.tlf-cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.95rem;
}

.tlf-cta-feature-icon {
    color: #4ade80;
    font-weight: 700;
}

/* CTA Info Cards */
.tlf-cta-final-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.tlf-cta-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.tlf-cta-info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.tlf-cta-info-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.tlf-cta-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--tlf-white);
}

.tlf-cta-info-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

/* CTA Final Responsive */
@media (max-width: 992px) {
    .tlf-cta-final-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .tlf-cta-final-info {
        flex-direction: row;
    }

    .tlf-cta-info-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .tlf-cta-final {
        padding: var(--space-2xl) 0;
    }

    .tlf-cta-final-content h2 {
        font-size: 1.8rem;
    }

    .tlf-cta-final-buttons {
        flex-direction: column;
    }

    .tlf-btn--lg {
        width: 100%;
        justify-content: center;
    }

    .tlf-cta-final-features {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .tlf-cta-final-info {
        flex-direction: column;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Quick Contact Cards */
.tlf-quick-contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.tlf-quick-contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--tlf-white);
    border: 2px solid var(--tlf-gray-light);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.tlf-quick-contact-card:hover {
    border-color: var(--tlf-red);
    transform: translateY(-4px);
    box-shadow: var(--tlf-shadow-medium);
}

.tlf-quick-contact-card--whatsapp:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
}

.tlf-quick-contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tlf-gray-light);
    border-radius: 12px;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.tlf-quick-contact-card:hover .tlf-quick-contact-icon {
    background: var(--tlf-red);
}

.tlf-quick-contact-card--whatsapp:hover .tlf-quick-contact-icon {
    background: #25D366;
}

.tlf-quick-contact-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--tlf-black);
}

.tlf-quick-contact-content p {
    font-size: 0.95rem;
    color: var(--tlf-gray-medium);
    margin: 0;
}

.tlf-quick-contact-cta {
    display: block;
    margin-top: var(--space-xs);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tlf-red);
}

.tlf-quick-contact-card--whatsapp .tlf-quick-contact-cta {
    color: #25D366;
}

/* Contact Grid */
.tlf-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

/* Contact Form Wrapper */
.tlf-contact-form-wrapper {
    background: var(--tlf-white);
    padding: var(--space-2xl);
    border-radius: 16px;
    box-shadow: var(--tlf-shadow-light);
}

.tlf-contact-form-wrapper h2 {
    margin-bottom: var(--space-sm);
}

.tlf-contact-form-intro {
    color: var(--tlf-gray-medium);
    margin-bottom: var(--space-xl);
}

/* Modern Form Styles */
.tlf-contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.tlf-form-group-modern {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.tlf-form-group-modern label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--tlf-black);
}

.tlf-form-group-modern input,
.tlf-form-group-modern select,
.tlf-form-group-modern textarea {
    padding: var(--space-md);
    border: 2px solid var(--tlf-gray-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    background: var(--tlf-white);
}

.tlf-form-group-modern input:focus,
.tlf-form-group-modern select:focus,
.tlf-form-group-modern textarea:focus {
    outline: none;
    border-color: var(--tlf-red);
    box-shadow: 0 0 0 3px rgba(175, 45, 36, 0.1);
}

.tlf-form-group-modern input::placeholder,
.tlf-form-group-modern textarea::placeholder {
    color: var(--tlf-gray-medium);
    opacity: 0.7;
}

.tlf-form-group-modern textarea {
    resize: vertical;
    min-height: 120px;
}

.tlf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.tlf-btn--full {
    width: 100%;
    justify-content: center;
}

.tlf-form-disclaimer {
    font-size: 0.85rem;
    color: var(--tlf-gray-medium);
    text-align: center;
    margin-top: var(--space-sm);
}

/* Contact Sidebar */
.tlf-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.tlf-contact-info-box {
    background: var(--tlf-white);
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: var(--tlf-shadow-light);
}

.tlf-contact-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--tlf-gray-light);
}

.tlf-contact-info-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--tlf-gray-light);
}

.tlf-contact-info-item:last-child {
    border-bottom: none;
}

.tlf-contact-info-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tlf-red) 0%, var(--tlf-red-dark) 100%);
    border-radius: 10px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.tlf-contact-info-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--tlf-black);
}

.tlf-contact-info-content p {
    font-size: 0.9rem;
    color: var(--tlf-gray-medium);
    line-height: 1.6;
    margin: 0;
}

.tlf-contact-info-content a {
    color: var(--tlf-gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tlf-contact-info-content a:hover {
    color: var(--tlf-red);
}

/* WhatsApp Box */
.tlf-contact-whatsapp-box {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: var(--space-xl);
    border-radius: 16px;
    text-align: center;
    color: var(--tlf-white);
}

.tlf-whatsapp-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.tlf-contact-whatsapp-box h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: var(--tlf-white);
}

.tlf-contact-whatsapp-box p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: var(--space-md);
}

.tlf-contact-whatsapp-box .tlf-btn--whatsapp {
    background: var(--tlf-white);
    color: #25D366;
    border-color: var(--tlf-white);
}

.tlf-contact-whatsapp-box .tlf-btn--whatsapp:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Map Section */
.tlf-map-wrapper {
    margin-bottom: var(--space-2xl);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--tlf-shadow-medium);
}

.tlf-map-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.tlf-map-info-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--tlf-white);
    border-radius: 12px;
    box-shadow: var(--tlf-shadow-light);
}

.tlf-map-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tlf-map-info-item h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--tlf-black);
}

.tlf-map-info-item p {
    font-size: 0.9rem;
    color: var(--tlf-gray-medium);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   CONTACT PAGE - NEW COMPONENTS
   ========================================================================== */

/* Contact Options - 3 centered cards */
.tlf-contact-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.tlf-contact-options--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.tlf-contact-option {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--tlf-white);
    padding: var(--space-lg);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: var(--tlf-black);
    transition: var(--transition);
    border: 1px solid var(--tlf-gray-200);
}

.tlf-contact-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--tlf-red);
}

.tlf-contact-option--whatsapp {
    /* Usa stile base (sfondo bianco) */
}

.tlf-contact-option--whatsapp:hover {
    /* Usa hover base */
}

.tlf-contact-option-icon {
    width: 56px;
    height: 56px;
    background: rgba(175, 45, 36, 0.08);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tlf-red);
    flex-shrink: 0;
}

.tlf-contact-option--whatsapp .tlf-contact-option-icon {
    /* Usa stile icona base (rosso) */
}

.tlf-contact-option-content {
    flex: 1;
    min-width: 0;
}

.tlf-contact-option-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.tlf-contact-option-value {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.tlf-contact-option-desc {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
}

.tlf-contact-option-arrow {
    font-size: 1.25rem;
    opacity: 0.4;
    transition: var(--transition-fast);
}

.tlf-contact-option:hover .tlf-contact-option-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Contact Form Wrapper - Full Width */
.tlf-contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Address Box */
.tlf-address-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--tlf-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
    border: 1px solid var(--tlf-gray-200);
    gap: var(--space-md);
}

.tlf-address-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.tlf-address-icon {
    width: 48px;
    height: 48px;
    background: var(--tlf-red);
    color: var(--tlf-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tlf-address-icon svg {
    width: 24px;
    height: 24px;
}

.tlf-address-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tlf-address-text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--tlf-black);
}

.tlf-address-text span {
    font-size: 0.95rem;
    color: var(--tlf-gray-600);
    line-height: 1.4;
}

.tlf-address-box .tlf-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 768px) {
    .tlf-address-box {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }

    .tlf-address-info {
        flex-direction: column;
    }

    .tlf-address-box .tlf-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Map Container */
.tlf-map-container {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
}

.tlf-map-container iframe {
    display: block;
    width: 100%;
}

/* Directions */
.tlf-directions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.tlf-direction-card {
    background: var(--tlf-white);
    padding: var(--space-lg);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--tlf-gray-200);
}

.tlf-direction-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tlf-direction-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    color: var(--tlf-red);
}

.tlf-direction-icon svg {
    display: block;
    margin: 0 auto;
}

.tlf-direction-card h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--tlf-black);
}

.tlf-direction-card p {
    font-size: 0.9rem;
    color: var(--tlf-gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .tlf-contact-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .tlf-contact-options--3 {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }

    .tlf-directions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tlf-contact-options,
    .tlf-contact-options--3 {
        grid-template-columns: 1fr;
    }

    .tlf-contact-option {
        padding: var(--space-md);
    }

    .tlf-contact-option-icon {
        width: 48px;
        height: 48px;
    }

    .tlf-form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   BLOG STYLES
   ========================================================================== */

/* Blog Page Hero */
.tlf-page-hero--blog,
.tlf-page-hero--article {
    background: linear-gradient(135deg, var(--tlf-gray-800) 0%, var(--tlf-black) 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.tlf-page-hero--blog h1,
.tlf-page-hero--article h1 {
    color: var(--tlf-white);
    margin-bottom: var(--space-sm);
}

.tlf-page-hero--blog .tlf-page-hero-subtitle,
.tlf-page-hero--article .tlf-page-hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Section */
.tlf-blog-section {
    background: var(--tlf-gray-50);
}

/* Blog Grid */
.tlf-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 992px) {
    .tlf-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tlf-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Post Card */
.tlf-post-card {
    background: var(--tlf-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.tlf-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Post Card Image */
.tlf-post-card-image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--tlf-gray-100);
}

.tlf-post-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tlf-post-card:hover .tlf-post-card-img {
    transform: scale(1.05);
}

.tlf-post-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tlf-gray-400);
}

.tlf-post-card-category {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--tlf-red);
    color: var(--tlf-white);
    padding: 4px 12px;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Post Card Content */
.tlf-post-card-content {
    padding: var(--space-md);
}

.tlf-post-card-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.tlf-post-card-date,
.tlf-post-card-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--tlf-gray-500);
}

.tlf-post-card-date svg,
.tlf-post-card-author svg {
    opacity: 0.7;
}

.tlf-post-card-title {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    line-height: 1.4;
}

.tlf-post-card-title a {
    color: var(--tlf-black);
    transition: var(--transition-fast);
}

.tlf-post-card-title a:hover {
    color: var(--tlf-red);
}

.tlf-post-card-excerpt {
    color: var(--tlf-gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.tlf-post-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--tlf-red);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.tlf-post-card-link:hover {
    gap: 10px;
}

.tlf-post-card-link svg {
    transition: var(--transition-fast);
}

/* Blog Pagination */
.tlf-blog-pagination {
    margin-top: var(--space-2xl);
    display: flex;
    justify-content: center;
}

.tlf-blog-pagination .nav-links {
    display: flex;
    gap: var(--space-xs);
    align-items: center;
}

.tlf-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-sm);
    background: var(--tlf-white);
    border: 1px solid var(--tlf-gray-300);
    border-radius: var(--border-radius);
    font-weight: 500;
    color: var(--tlf-gray-700);
    transition: var(--transition-fast);
}

.tlf-blog-pagination .page-numbers:hover {
    border-color: var(--tlf-red);
    color: var(--tlf-red);
}

.tlf-blog-pagination .page-numbers.current {
    background: var(--tlf-red);
    border-color: var(--tlf-red);
    color: var(--tlf-white);
}

.tlf-blog-pagination .prev,
.tlf-blog-pagination .next {
    gap: 6px;
}

/* Blog Empty State */
.tlf-blog-empty {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    background: var(--tlf-white);
    border-radius: var(--border-radius-lg);
}

.tlf-blog-empty-icon {
    margin-bottom: var(--space-md);
    color: var(--tlf-gray-400);
}

.tlf-blog-empty h2 {
    margin-bottom: var(--space-sm);
}

.tlf-blog-empty p {
    color: var(--tlf-gray-500);
    margin-bottom: var(--space-lg);
}

/* ==========================================================================
   SINGLE ARTICLE STYLES
   ========================================================================== */

/* Article Meta in Hero */
.tlf-article-meta {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.tlf-article-date,
.tlf-article-author,
.tlf-article-reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.tlf-article-date svg,
.tlf-article-author svg,
.tlf-article-reading-time svg {
    opacity: 0.7;
}

/* Badge Link */
.tlf-section-badge--link {
    transition: var(--transition-fast);
}

.tlf-section-badge--link:hover {
    background: var(--tlf-red);
    color: var(--tlf-white);
}

/* Article Layout */
.tlf-article {
    padding: var(--space-2xl) 0;
    background: var(--tlf-white);
}

.tlf-article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 992px) {
    .tlf-article-layout {
        grid-template-columns: 1fr;
    }
}

/* Article Content */
.tlf-article-content {
    max-width: 100%;
}

.tlf-article-featured-image {
    margin-bottom: var(--space-lg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.tlf-article-image {
    width: 100%;
    height: auto;
}

.tlf-article-featured-image figcaption {
    padding: var(--space-sm);
    background: var(--tlf-gray-100);
    font-size: 0.875rem;
    color: var(--tlf-gray-600);
    text-align: center;
}

/* Article Body - Typography */
.tlf-article-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--tlf-gray-700);
}

.tlf-article-body h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.tlf-article-body h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.tlf-article-body p {
    margin-bottom: var(--space-md);
}

.tlf-article-body a {
    color: var(--tlf-red);
    text-decoration: underline;
}

.tlf-article-body a:hover {
    color: var(--tlf-red-dark);
}

.tlf-article-body ul,
.tlf-article-body ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.tlf-article-body li {
    margin-bottom: var(--space-xs);
}

.tlf-article-body blockquote {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    background: var(--tlf-gray-100);
    border-left: 4px solid var(--tlf-red);
    font-style: italic;
    color: var(--tlf-gray-600);
}

.tlf-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: var(--space-md) 0;
}

.tlf-article-body pre {
    background: var(--tlf-gray-800);
    color: var(--tlf-white);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    overflow-x: auto;
    font-size: 0.875rem;
    margin: var(--space-md) 0;
}

.tlf-article-body code {
    background: var(--tlf-gray-100);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.9em;
}

.tlf-article-body pre code {
    background: transparent;
    padding: 0;
}

/* Article Tags */
.tlf-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--tlf-gray-200);
}

.tlf-article-tags-label {
    font-weight: 600;
    color: var(--tlf-gray-700);
    margin-right: var(--space-xs);
}

.tlf-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--tlf-gray-100);
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    color: var(--tlf-gray-600);
    transition: var(--transition-fast);
}

.tlf-tag:hover {
    background: var(--tlf-red);
    color: var(--tlf-white);
}

/* Article Share */
.tlf-article-share {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--tlf-gray-50);
    border-radius: var(--border-radius);
}

.tlf-article-share-label {
    font-weight: 600;
    color: var(--tlf-gray-700);
}

.tlf-share-buttons {
    display: flex;
    gap: var(--space-xs);
}

.tlf-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--tlf-white);
    transition: var(--transition-fast);
}

.tlf-share-btn:hover {
    transform: translateY(-2px);
}

.tlf-share-btn--facebook { background: #1877f2; }
.tlf-share-btn--twitter { background: #000000; }
.tlf-share-btn--linkedin { background: #0a66c2; }
.tlf-share-btn--whatsapp { background: #25d366; }

/* Post Navigation */
.tlf-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--tlf-gray-200);
}

@media (max-width: 576px) {
    .tlf-post-navigation {
        grid-template-columns: 1fr;
    }
}

.tlf-post-nav-link {
    display: flex;
    flex-direction: column;
    padding: var(--space-md);
    background: var(--tlf-gray-50);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.tlf-post-nav-link:hover {
    background: var(--tlf-gray-100);
}

.tlf-post-nav-link--next {
    text-align: right;
}

.tlf-post-nav-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--tlf-gray-500);
    margin-bottom: 4px;
}

.tlf-post-nav-link--next .tlf-post-nav-label {
    justify-content: flex-end;
}

.tlf-post-nav-title {
    font-weight: 600;
    color: var(--tlf-gray-800);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ==========================================================================
   ARTICLE SIDEBAR
   ========================================================================== */

.tlf-article-sidebar {
    position: sticky;
    top: 100px;
}

.tlf-sidebar-widget {
    background: var(--tlf-gray-50);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.tlf-widget-title {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--tlf-red);
}

/* Author Box */
.tlf-author-box {
    text-align: center;
}

.tlf-author-avatar {
    margin-bottom: var(--space-sm);
}

.tlf-author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
}

.tlf-author-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.tlf-author-info p {
    font-size: 0.875rem;
    color: var(--tlf-gray-600);
    margin: 0;
}

/* Related Posts */
.tlf-related-list {
    list-style: none;
}

.tlf-related-list li {
    margin-bottom: var(--space-sm);
}

.tlf-related-list li:last-child {
    margin-bottom: 0;
}

.tlf-related-list a {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-xs);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.tlf-related-list a:hover {
    background: var(--tlf-gray-100);
}

.tlf-related-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.tlf-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tlf-related-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tlf-related-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--tlf-gray-800);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tlf-related-date {
    font-size: 0.75rem;
    color: var(--tlf-gray-500);
    margin-top: 4px;
}

/* Sidebar CTA */
.tlf-sidebar-cta {
    background: var(--tlf-red);
    color: var(--tlf-white);
    text-align: center;
}

.tlf-sidebar-cta h4 {
    color: var(--tlf-white);
    margin-bottom: var(--space-xs);
}

.tlf-sidebar-cta p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: var(--space-md);
}

.tlf-sidebar-cta .tlf-btn--full {
    background: var(--tlf-white);
    color: var(--tlf-red);
}

.tlf-sidebar-cta .tlf-btn--full:hover {
    background: var(--tlf-gray-100);
}

/* Outline White Button */
.tlf-btn--outline-white {
    background: transparent;
    border: 2px solid var(--tlf-white);
    color: var(--tlf-white);
}

.tlf-btn--outline-white:hover {
    background: var(--tlf-white);
    color: var(--tlf-red);
}

/* ==========================================================================
   SINGLE ARTICLE - MODERN HERO DESIGN
   ========================================================================== */

/* Article Hero with Background Image */
.tlf-article-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-color: var(--tlf-gray-800);
}

.tlf-article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.tlf-article-hero .tlf-container {
    position: relative;
    z-index: 2;
    padding-bottom: var(--space-3xl);
}

.tlf-article-hero-content {
    max-width: 900px;
}

/* Category Badge */
.tlf-article-category {
    display: inline-block;
    background: var(--tlf-red);
    color: var(--tlf-white);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: var(--space-md);
    transition: var(--transition-fast);
}

.tlf-article-category:hover {
    background: var(--tlf-red-dark);
    color: var(--tlf-white);
    transform: translateY(-2px);
}

/* Article Title in Hero */
.tlf-article-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--tlf-white);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Meta Info in Hero */
.tlf-article-meta-hero {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.tlf-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.tlf-meta-item svg {
    opacity: 0.8;
}

.tlf-meta-divider {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* ==========================================================================
   ARTICLE MAIN CONTENT
   ========================================================================== */

.tlf-article-main {
    background: var(--tlf-white);
    padding: var(--space-3xl) 0;
}

.tlf-article-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.tlf-article-body-wrapper {
    width: 100%;
}

/* Article Body Typography */
.tlf-article-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--tlf-gray-700);
}

.tlf-article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--tlf-gray-800);
    margin: var(--space-xl) 0 var(--space-md);
    padding-top: var(--space-md);
}

.tlf-article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--tlf-gray-800);
    margin: var(--space-lg) 0 var(--space-sm);
}

.tlf-article-body h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--tlf-gray-800);
    margin: var(--space-md) 0 var(--space-sm);
}

.tlf-article-body p {
    margin-bottom: var(--space-md);
}

.tlf-article-body a {
    color: var(--tlf-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tlf-article-body a:hover {
    color: var(--tlf-red-dark);
}

.tlf-article-body ul,
.tlf-article-body ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.tlf-article-body li {
    margin-bottom: var(--space-xs);
}

.tlf-article-body li::marker {
    color: var(--tlf-red);
}

.tlf-article-body blockquote {
    border-left: 4px solid var(--tlf-red);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    background: var(--tlf-gray-50);
    font-style: italic;
    color: var(--tlf-gray-600);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.tlf-article-body img {
    border-radius: var(--border-radius-lg);
    margin: var(--space-lg) 0;
}

.tlf-article-body figure {
    margin: var(--space-lg) 0;
}

.tlf-article-body figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--tlf-gray-500);
    margin-top: var(--space-sm);
}

.tlf-article-body pre {
    background: var(--tlf-gray-800);
    color: var(--tlf-gray-100);
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    overflow-x: auto;
    margin: var(--space-lg) 0;
}

.tlf-article-body code {
    background: var(--tlf-gray-100);
    padding: 2px 8px;
    border-radius: var(--border-radius);
    font-size: 0.9em;
}

.tlf-article-body pre code {
    background: none;
    padding: 0;
}

/* ==========================================================================
   SHARE SECTION
   ========================================================================== */

.tlf-article-share-section {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--tlf-gray-200);
}

.tlf-article-share-section h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tlf-gray-800);
    margin-bottom: var(--space-md);
}

.tlf-share-buttons-inline {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.tlf-share-btn-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--border-radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--tlf-white);
    transition: var(--transition-fast);
}

.tlf-share-btn-inline:hover {
    transform: translateY(-2px);
    color: var(--tlf-white);
}

.tlf-share-btn--facebook {
    background: #1877F2;
}

.tlf-share-btn--facebook:hover {
    background: #166fe5;
}

.tlf-share-btn--whatsapp {
    background: #25D366;
}

.tlf-share-btn--whatsapp:hover {
    background: #22c55e;
}

.tlf-share-btn--twitter {
    background: var(--tlf-gray-800);
}

.tlf-share-btn--twitter:hover {
    background: var(--tlf-black);
}

/* ==========================================================================
   POST NAVIGATION - MODERN STYLE
   ========================================================================== */

.tlf-post-nav-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--tlf-gray-200);
}

.tlf-post-nav-item {
    display: flex;
    flex-direction: column;
    padding: var(--space-lg);
    background: var(--tlf-gray-50);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.tlf-post-nav-item:hover {
    background: var(--tlf-gray-100);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tlf-post-nav-item--empty {
    background: transparent;
}

.tlf-post-nav-item--next {
    text-align: right;
    align-items: flex-end;
}

.tlf-post-nav-direction {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--tlf-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tlf-post-nav-direction svg {
    stroke: var(--tlf-red);
}

.tlf-post-nav-item--next .tlf-post-nav-direction {
    flex-direction: row;
}

.tlf-post-nav-item-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--tlf-gray-800);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   RELATED ARTICLES SECTION
   ========================================================================== */

.tlf-related-section {
    background: var(--tlf-gray-50);
    padding: var(--space-3xl) 0;
}

.tlf-related-section .tlf-section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.tlf-related-section .tlf-section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--tlf-gray-800);
    margin-bottom: var(--space-xs);
}

.tlf-related-section .tlf-section-header p {
    color: var(--tlf-gray-600);
    font-size: 1.1rem;
}

.tlf-section-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ==========================================================================
   ARTICLE CTA SECTION
   ========================================================================== */

.tlf-article-cta {
    background: var(--tlf-red);
    padding: var(--space-3xl) 0;
}

.tlf-article-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.tlf-article-cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--tlf-white);
    margin-bottom: var(--space-sm);
}

.tlf-article-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

.tlf-article-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.tlf-btn--white {
    background: var(--tlf-white);
    color: var(--tlf-red);
    border: 2px solid var(--tlf-white);
}

.tlf-btn--white:hover {
    background: transparent;
    color: var(--tlf-white);
}

/* ==========================================================================
   RESPONSIVE - SINGLE ARTICLE
   ========================================================================== */

@media (max-width: 768px) {
    .tlf-article-hero {
        min-height: 60vh;
    }

    .tlf-article-hero .tlf-container {
        padding-bottom: var(--space-xl);
    }

    .tlf-article-title {
        font-size: 1.75rem;
    }

    .tlf-article-meta-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }

    .tlf-meta-divider {
        display: none;
    }

    .tlf-article-main {
        padding: var(--space-xl) 0;
    }

    .tlf-article-body {
        font-size: 1rem;
    }

    .tlf-post-nav-modern {
        grid-template-columns: 1fr;
    }

    .tlf-post-nav-item--next {
        text-align: left;
        align-items: flex-start;
    }

    .tlf-share-buttons-inline {
        flex-direction: column;
    }

    .tlf-share-btn-inline {
        justify-content: center;
    }

    .tlf-article-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tlf-article-cta-buttons .tlf-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   BLOG PAGE - MODERN DESIGN
   ========================================================================== */

/* Blog Hero */
.tlf-blog-hero {
    background: linear-gradient(135deg, var(--tlf-red) 0%, var(--tlf-red-dark) 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.tlf-blog-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.tlf-blog-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--tlf-white);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: var(--space-md);
}

.tlf-blog-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--tlf-white);
    margin-bottom: var(--space-sm);
}

.tlf-blog-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Blog Main Section */
.tlf-blog-main {
    padding: var(--space-3xl) 0;
    background: var(--tlf-gray-50);
}

/* Blog Grid Modern */
.tlf-blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 992px) {
    .tlf-blog-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tlf-blog-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* Blog Card */
.tlf-blog-card {
    background: var(--tlf-white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tlf-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.tlf-blog-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    display: block;
}

.tlf-blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tlf-blog-card:hover .tlf-blog-card-img {
    transform: scale(1.08);
}

.tlf-blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: var(--transition);
}

.tlf-blog-card:hover .tlf-blog-card-overlay {
    opacity: 1;
}

.tlf-blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--tlf-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tlf-gray-400);
}

.tlf-blog-card-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--tlf-red);
    color: var(--tlf-white);
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    z-index: 2;
}

.tlf-blog-card-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tlf-blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.tlf-blog-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--tlf-gray-500);
}

.tlf-blog-card-date svg {
    color: var(--tlf-gray-400);
}

.tlf-blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.tlf-blog-card-title a {
    color: var(--tlf-gray-800);
    transition: var(--transition-fast);
}

.tlf-blog-card-title a:hover {
    color: var(--tlf-red);
}

.tlf-blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--tlf-gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.tlf-blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--tlf-red);
    transition: var(--transition-fast);
}

.tlf-blog-card-link:hover {
    color: var(--tlf-red-dark);
    gap: 12px;
}

.tlf-blog-card-link svg {
    transition: var(--transition-fast);
}

/* Blog Pagination Modern */
.tlf-blog-pagination-modern {
    margin-top: var(--space-3xl);
    display: flex;
    justify-content: center;
}

.tlf-blog-pagination-modern .nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.tlf-blog-pagination-modern .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--space-sm);
    background: var(--tlf-white);
    color: var(--tlf-gray-700);
    font-weight: 500;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.tlf-blog-pagination-modern .page-numbers:hover {
    background: var(--tlf-gray-100);
    color: var(--tlf-red);
}

.tlf-blog-pagination-modern .page-numbers.current {
    background: var(--tlf-red);
    color: var(--tlf-white);
}

.tlf-blog-pagination-modern .prev,
.tlf-blog-pagination-modern .next {
    gap: 6px;
    padding: 0 var(--space-md);
}

.tlf-blog-pagination-modern .prev svg,
.tlf-blog-pagination-modern .next svg {
    flex-shrink: 0;
}

/* Blog Empty State */
.tlf-blog-empty-modern {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    background: var(--tlf-white);
    border-radius: var(--border-radius-xl);
}

.tlf-blog-empty-modern .tlf-blog-empty-icon {
    color: var(--tlf-gray-300);
    margin-bottom: var(--space-lg);
}

.tlf-blog-empty-modern h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--tlf-gray-800);
    margin-bottom: var(--space-sm);
}

.tlf-blog-empty-modern p {
    color: var(--tlf-gray-600);
    margin-bottom: var(--space-lg);
}

/* Responsive Blog Hero */
@media (max-width: 768px) {
    .tlf-blog-hero {
        padding: var(--space-xl) 0;
    }

    .tlf-blog-hero-title {
        font-size: 2rem;
    }

    .tlf-blog-hero-subtitle {
        font-size: 1rem;
    }

    .tlf-blog-main {
        padding: var(--space-xl) 0;
    }

    .tlf-blog-card-content {
        padding: var(--space-md);
    }

    .tlf-blog-card-title {
        font-size: 1.1rem;
    }
}
