/* =========================================
   tuo.immo — Theme CSS
   Palette: Verde scuro + Oro caldo + Crema
   Fonts: Playfair Display + DM Sans
   ========================================= */

:root {
    /* Brand colors */
    --ti-primary: #0B3D2E;
    --ti-primary-light: #1A6B4F;
    --ti-primary-lighter: #8CB5A0;
    --ti-primary-pale: #E1F0EA;
    --ti-accent: #C8956C;
    --ti-accent-light: #DDB892;
    --ti-accent-dark: #A0724D;
    --ti-cream: #E8DDD0;
    --ti-ivory: #F5F2ED;
    --ti-dark: #1A1A1A;
    --ti-gray-700: #3D3D3D;
    --ti-gray-500: #6B6B6B;
    --ti-gray-300: #B0B0B0;
    --ti-gray-100: #EBEBEB;
    --ti-white: #FFFFFF;
    --ti-danger: #D04040;
    --ti-success: #2D8C5A;

    /* Fonts */
    --ti-font-display: 'Playfair Display', Georgia, serif;
    --ti-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --ti-section-py: 5rem;
    --ti-radius: 8px;
    --ti-radius-lg: 12px;
    --ti-radius-xl: 16px;

    /* Shadows */
    --ti-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --ti-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --ti-shadow-lg: 0 8px 30px rgba(0,0,0,0.1);

    /* Transitions */
    --ti-transition: 0.2s ease;
}

/* ---- Reset & Base ---- */
body {
    font-family: var(--ti-font-body);
    color: var(--ti-dark);
    background: var(--ti-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ti-font-display);
    font-weight: 600;
    color: var(--ti-dark);
}

a {
    color: var(--ti-primary);
    text-decoration: none;
    transition: color var(--ti-transition);
}
a:hover {
    color: var(--ti-accent);
}

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


/* =========================================
   TOPBAR
   ========================================= */
.ti-topbar {
    background: var(--ti-primary);
    padding: 6px 0;
    font-size: 13px;
}
.ti-topbar__link {
    color: var(--ti-primary-lighter);
    margin-right: 20px;
    transition: color var(--ti-transition);
}
.ti-topbar__link:hover { color: var(--ti-cream); }
.ti-topbar__link i { margin-right: 4px; }
.ti-topbar__social {
    color: var(--ti-primary-lighter);
    margin-left: 12px;
    font-size: 15px;
    transition: color var(--ti-transition);
}
.ti-topbar__social:hover { color: var(--ti-cream); }


/* =========================================
   NAVBAR
   ========================================= */
.ti-navbar {
    background: var(--ti-white);
    padding: 12px 0;
    border-bottom: 1px solid var(--ti-gray-100);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: box-shadow var(--ti-transition);
}
.ti-navbar.scrolled {
    box-shadow: var(--ti-shadow);
}

/* Logo */
.ti-logo {
    font-size: 28px;
    letter-spacing: -0.5px;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}
.ti-logo__tuo {
    font-family: var(--ti-font-display);
    font-weight: 600;
    color: var(--ti-dark);
}
.ti-logo__dot {
    font-family: var(--ti-font-display);
    font-weight: 600;
    color: var(--ti-accent);
}
.ti-logo__immo {
    font-family: var(--ti-font-body);
    font-weight: 300;
    color: var(--ti-primary);
}
.ti-logo--footer { font-size: 24px; }
.ti-logo--footer .ti-logo__tuo { color: var(--ti-cream); }
.ti-logo--footer .ti-logo__immo { color: var(--ti-primary-lighter); }

/* Nav links */
.ti-navbar .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--ti-gray-700);
    padding: 8px 14px !important;
    border-radius: var(--ti-radius);
    transition: all var(--ti-transition);
}
.ti-navbar .nav-link:hover,
.ti-navbar .nav-link.active {
    color: var(--ti-primary);
    background: var(--ti-primary-pale);
}

/* Dropdown */
.ti-dropdown {
    border: 1px solid var(--ti-gray-100);
    border-radius: var(--ti-radius-lg);
    box-shadow: var(--ti-shadow-lg);
    padding: 8px;
    min-width: 220px;
}
.ti-dropdown .dropdown-item {
    border-radius: var(--ti-radius);
    padding: 8px 14px;
    font-size: 14px;
    color: var(--ti-gray-700);
    transition: all var(--ti-transition);
}
.ti-dropdown .dropdown-item:hover {
    background: var(--ti-primary-pale);
    color: var(--ti-primary);
}

/* Mobile toggler */
.ti-toggler {
    border: none;
    background: none;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.ti-toggler__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ti-dark);
    border-radius: 2px;
    transition: all var(--ti-transition);
}


/* =========================================
   OFFCANVAS (Mobile menu)
   ========================================= */
.ti-offcanvas {
    width: 320px;
    border-left: none;
}
.ti-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--ti-gray-100);
    padding: 16px 20px;
}
.ti-offcanvas .offcanvas-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.ti-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ti-mobile-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--ti-gray-700);
    border-bottom: 1px solid var(--ti-gray-100);
    transition: color var(--ti-transition);
}
.ti-mobile-nav li a:hover { color: var(--ti-primary); }
.ti-mobile-nav li a i { font-size: 18px; color: var(--ti-accent); width: 24px; text-align: center; }
.ti-mobile-nav__heading {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ti-gray-300);
    padding: 16px 0 4px;
    font-weight: 500;
}
.ti-mobile-nav__divider {
    height: 1px;
    background: var(--ti-gray-100);
    margin: 8px 0;
    list-style: none;
}
.ti-mobile-nav__footer {
    padding-top: 20px;
    border-top: 1px solid var(--ti-gray-100);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ti-mobile-nav__footer a {
    font-size: 14px;
    color: var(--ti-gray-500);
}
.ti-mobile-nav__footer a i { margin-right: 6px; }


/* =========================================
   BUTTONS
   ========================================= */
.ti-btn {
    font-family: var(--ti-font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 10px 24px;
    border-radius: var(--ti-radius);
    border: none;
    cursor: pointer;
    transition: all var(--ti-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.ti-btn--accent {
    background: var(--ti-accent);
    color: var(--ti-white);
}
.ti-btn--accent:hover {
    background: var(--ti-accent-dark);
    color: var(--ti-white);
}
.ti-btn--primary {
    background: var(--ti-primary);
    color: var(--ti-cream);
}
.ti-btn--primary:hover {
    background: var(--ti-primary-light);
    color: var(--ti-cream);
}
.ti-btn--light {
    background: var(--ti-cream);
    color: var(--ti-primary);
}
.ti-btn--light:hover {
    background: var(--ti-white);
    color: var(--ti-primary);
}
.ti-btn--outline-light {
    background: transparent;
    color: var(--ti-cream);
    border: 1px solid var(--ti-primary-lighter);
}
.ti-btn--outline-light:hover {
    background: rgba(255,255,255,0.1);
    color: var(--ti-white);
}

.ti-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--ti-accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--ti-transition);
}
.ti-link:hover {
    color: var(--ti-accent-dark);
    gap: 8px;
}


/* =========================================
   SECTIONS
   ========================================= */
.ti-section {
    padding: var(--ti-section-py) 0;
}
.ti-section__header {
    margin-bottom: 2.5rem;
}
.ti-section__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.ti-section__sub {
    font-size: 16px;
    color: var(--ti-gray-500);
    margin-bottom: 0;
}


/* =========================================
   HERO
   ========================================= */
.ti-hero {
    position: relative;
    background: var(--ti-primary);
    padding: 6rem 0 5rem;
    overflow: hidden;
}
.ti-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(26,107,79,0.5), transparent),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,149,108,0.15), transparent);
}
.ti-hero__content {
    position: relative;
    z-index: 2;
    max-width: 740px;
}
.ti-hero__label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ti-accent);
    margin-bottom: 1rem;
    font-weight: 500;
}
.ti-hero__title {
    font-family: var(--ti-font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--ti-cream);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.ti-hero__sub {
    font-size: 18px;
    color: var(--ti-primary-lighter);
    margin-bottom: 2rem;
    max-width: 520px;
}

/* Hero Search Box */
.ti-hero-search {
    background: var(--ti-white);
    border-radius: var(--ti-radius-xl);
    padding: 6px;
    box-shadow: var(--ti-shadow-lg);
}
.ti-hero-search__form {
    display: flex;
    align-items: center;
    gap: 0;
}
.ti-hero-search__field {
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-right: 1px solid var(--ti-gray-100);
    min-height: 48px;
}
.ti-hero-search__field:last-of-type { border-right: none; }
.ti-hero-search__field--text {
    flex: 1;
    gap: 8px;
}
.ti-hero-search__field--text i {
    color: var(--ti-gray-300);
    font-size: 18px;
}
.ti-hero-search__field .form-control,
.ti-hero-search__field .form-select {
    border: none;
    box-shadow: none;
    font-size: 15px;
    padding: 8px 4px;
    background: transparent;
    color: var(--ti-dark);
    min-width: 120px;
}
.ti-hero-search__field .form-control:focus,
.ti-hero-search__field .form-select:focus {
    box-shadow: none;
}
.ti-hero-search__btn {
    border-radius: var(--ti-radius-lg) !important;
    padding: 12px 24px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Quick links */
.ti-hero__quick {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.ti-hero__quick-label {
    font-size: 13px;
    color: var(--ti-primary-lighter);
}
.ti-hero__quick-link {
    font-size: 13px;
    color: var(--ti-cream);
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 20px;
    transition: all var(--ti-transition);
}
.ti-hero__quick-link:hover {
    background: rgba(255,255,255,0.2);
    color: var(--ti-white);
}

/* Mobile hero search */
@media (max-width: 767.98px) {
    .ti-hero { padding: 4rem 0 3rem; }
    .ti-hero-search__form {
        flex-wrap: wrap;
    }
    .ti-hero-search__field {
        border-right: none;
        border-bottom: 1px solid var(--ti-gray-100);
        width: 100%;
    }
    .ti-hero-search__field:last-of-type { border-bottom: none; }
    .ti-hero-search__btn { width: 100%; margin-top: 4px; }
}


/* =========================================
   CATEGORY CARDS
   ========================================= */
.ti-categories { background: var(--ti-ivory); }

.ti-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background: var(--ti-white);
    border-radius: var(--ti-radius-lg);
    border: 1px solid var(--ti-gray-100);
    transition: all var(--ti-transition);
    text-decoration: none;
    color: inherit;
}
.ti-cat-card:hover {
    border-color: var(--ti-primary-lighter);
    box-shadow: var(--ti-shadow);
    transform: translateY(-2px);
    color: inherit;
}
.ti-cat-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ti-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.ti-cat-card__icon i {
    font-size: 22px;
    color: var(--ti-accent);
}
.ti-cat-card__title {
    font-family: var(--ti-font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.ti-cat-card__count {
    font-size: 13px;
    color: var(--ti-gray-500);
    margin: 0;
}


/* =========================================
   ANNUNCIO CARD
   ========================================= */
.ti-card {
    background: var(--ti-white);
    border-radius: var(--ti-radius-lg);
    border: 1px solid var(--ti-gray-100);
    overflow: hidden;
    transition: all var(--ti-transition);
}
.ti-card:hover {
    box-shadow: var(--ti-shadow);
    transform: translateY(-2px);
}
.ti-card__img {
    height: 200px;
    background: var(--ti-ivory);
    position: relative;
    overflow: hidden;
}
.ti-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ti-card__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ti-primary-pale), var(--ti-ivory));
}
.ti-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ti-accent);
    color: var(--ti-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}
.ti-card__body { padding: 16px; }
.ti-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
}
.ti-card__type {
    color: var(--ti-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ti-card__location {
    color: var(--ti-gray-500);
}
.ti-card__location i { margin-right: 2px; }
.ti-card__title {
    font-family: var(--ti-font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ti-card__features {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: var(--ti-gray-500);
    margin-bottom: 12px;
}
.ti-card__features i { margin-right: 3px; color: var(--ti-primary-lighter); }
.ti-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--ti-gray-100);
}
.ti-card__price {
    font-family: var(--ti-font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ti-primary);
}


/* =========================================
   HOW IT WORKS
   ========================================= */
.ti-how__tabs {
    display: flex;
    gap: 4px;
    justify-content: center;
}
.ti-how__tab {
    background: var(--ti-ivory);
    border: 1px solid var(--ti-gray-100);
    border-radius: var(--ti-radius);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ti-gray-500);
    cursor: pointer;
    transition: all var(--ti-transition);
}
.ti-how__tab:hover { color: var(--ti-dark); }
.ti-how__tab.active {
    background: var(--ti-primary);
    color: var(--ti-cream);
    border-color: var(--ti-primary);
}
.ti-how__panel { display: none; }
.ti-how__panel.active { display: block; }

.ti-step { text-align: center; padding: 1.5rem; }
.ti-step__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ti-primary-pale);
    color: var(--ti-primary);
    font-family: var(--ti-font-display);
    font-size: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.ti-step__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.ti-step__text {
    font-size: 15px;
    color: var(--ti-gray-500);
    line-height: 1.6;
}


/* =========================================
   TRUST BAR
   ========================================= */
.ti-trust {
    background: var(--ti-primary);
    padding: 3.5rem 0;
}
.ti-trust__number {
    font-family: var(--ti-font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--ti-cream);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.ti-trust__label {
    font-size: 14px;
    color: var(--ti-primary-lighter);
    font-weight: 500;
}


/* =========================================
   BLOG CARD
   ========================================= */
.ti-blog-card {
    background: var(--ti-white);
    border-radius: var(--ti-radius-lg);
    border: 1px solid var(--ti-gray-100);
    overflow: hidden;
    transition: all var(--ti-transition);
}
.ti-blog-card:hover {
    box-shadow: var(--ti-shadow);
    transform: translateY(-2px);
}
.ti-blog-card__img {
    height: 180px;
    background: var(--ti-ivory);
    overflow: hidden;
}
.ti-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ti-blog-card__img--placeholder {
    background: linear-gradient(135deg, var(--ti-primary-pale), var(--ti-cream));
}
.ti-blog-card__body { padding: 16px; }
.ti-blog-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--ti-accent);
    margin-bottom: 6px;
}
.ti-blog-card__title {
    font-family: var(--ti-font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ti-blog-card__excerpt {
    font-size: 14px;
    color: var(--ti-gray-500);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* =========================================
   PRE-FOOTER CTA
   ========================================= */
.ti-prefooter {
    background: var(--ti-primary);
    padding: 4rem 0;
}
.ti-prefooter__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.ti-prefooter__title {
    font-size: 1.8rem;
    color: var(--ti-cream);
    margin-bottom: 0.5rem;
}
.ti-prefooter__sub {
    font-size: 16px;
    color: var(--ti-primary-lighter);
    margin: 0;
    max-width: 480px;
}
.ti-prefooter__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .ti-prefooter__inner { text-align: center; justify-content: center; }
    .ti-prefooter__actions { width: 100%; justify-content: center; }
}


/* =========================================
   FOOTER
   ========================================= */
.ti-footer__main {
    background: var(--ti-dark);
    padding: 4rem 0 3rem;
}
.ti-footer__desc {
    font-size: 14px;
    color: var(--ti-gray-500);
    line-height: 1.6;
    max-width: 300px;
}
.ti-footer__social {
    display: flex;
    gap: 12px;
}
.ti-footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ti-gray-300);
    font-size: 16px;
    transition: all var(--ti-transition);
}
.ti-footer__social a:hover {
    background: var(--ti-accent);
    color: var(--ti-white);
}

.ti-footer__heading {
    font-family: var(--ti-font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ti-cream);
    margin-bottom: 1rem;
}
.ti-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ti-footer__links li { margin-bottom: 8px; }
.ti-footer__links a {
    font-size: 14px;
    color: var(--ti-gray-500);
    transition: color var(--ti-transition);
}
.ti-footer__links a:hover { color: var(--ti-cream); }

.ti-footer__links--contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--ti-gray-500);
}
.ti-footer__links--contact li i {
    color: var(--ti-accent);
    margin-top: 3px;
    font-size: 14px;
}

.ti-footer__bottom {
    background: var(--ti-dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.2rem 0;
    font-size: 13px;
    color: var(--ti-gray-500);
}
.ti-footer__bottom a {
    color: var(--ti-accent);
}
.ti-footer__bottom a:hover {
    color: var(--ti-accent-light);
}


/* =========================================
   UTILITIES
   ========================================= */
.ti-bg-ivory { background: var(--ti-ivory); }
.ti-bg-primary { background: var(--ti-primary); }
.ti-text-accent { color: var(--ti-accent); }


/* =========================================
   LISTING PAGES
   ========================================= */
.ti-listing-page { padding-top: 2.5rem; }

.ti-listing-toolbar {
    background: var(--ti-ivory);
    padding: 10px 16px;
    border-radius: var(--ti-radius);
    font-size: 14px;
    color: var(--ti-gray-500);
}
.ti-listing-toolbar .form-select {
    width: auto;
    font-size: 14px;
}

.ti-empty-state i { opacity: 0.4; }
.ti-empty-state h3 {
    font-family: var(--ti-font-body);
    font-size: 1.2rem;
}

.pagination .page-link {
    color: var(--ti-primary);
    border-radius: var(--ti-radius) !important;
    margin: 0 2px;
    font-size: 14px;
}
.pagination .page-item.active .page-link {
    background: var(--ti-primary);
    border-color: var(--ti-primary);
}


/* =========================================
   FILTERS SIDEBAR
   ========================================= */
.ti-filters {
    background: var(--ti-ivory);
    border-radius: var(--ti-radius-lg);
    padding: 20px;
    position: sticky;
    top: 80px;
}
.ti-filters__label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ti-gray-700);
    margin-bottom: 6px;
    display: block;
}
.ti-filters .form-control,
.ti-filters .form-select {
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .ti-filters {
        position: static;
        margin-bottom: 1.5rem;
    }
}


/* =========================================
   DETAIL PAGE
   ========================================= */
.ti-gallery__main img {
    border-radius: var(--ti-radius-lg);
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}
.ti-gallery__thumb {
    width: 100px;
    height: 70px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--ti-transition);
    overflow: hidden;
    border-radius: var(--ti-radius);
}
.ti-gallery__thumb:hover { opacity: 1; }
.ti-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ti-feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 20px;
    background: var(--ti-ivory);
    border-radius: var(--ti-radius);
    min-width: 80px;
}
.ti-feature-badge i {
    font-size: 20px;
    color: var(--ti-primary);
    margin-bottom: 4px;
}
.ti-feature-badge strong {
    font-size: 16px;
    color: var(--ti-dark);
    line-height: 1.2;
}
.ti-feature-badge small {
    font-size: 11px;
    color: var(--ti-gray-500);
    margin-top: 2px;
}

.ti-prose {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ti-gray-700);
}
.ti-prose p { margin-bottom: 1em; }

.ti-contact-card .form-control {
    font-size: 14px;
}


/* =========================================
   BREADCRUMBS
   ========================================= */
.breadcrumb-item a {
    color: var(--ti-gray-500);
}
.breadcrumb-item.active {
    color: var(--ti-gray-300);
}


/* =========================================
   FORM STYLES (Contatti)
   ========================================= */
.form-control:focus,
.form-select:focus {
    border-color: var(--ti-primary-lighter);
    box-shadow: 0 0 0 3px rgba(11, 61, 46, 0.1);
}


/* =========================================
   RESPONSIVE FINE-TUNING
   ========================================= */
@media (max-width: 575.98px) {
    .ti-section { padding: 3rem 0; }
    .ti-section__title { font-size: 1.5rem; }
    .ti-prefooter { padding: 3rem 0; }
    .ti-prefooter__title { font-size: 1.4rem; }
    .ti-trust__number { font-size: 2rem; }
    .ti-hero__title { font-size: 2rem; }

    .ti-feature-badge {
        padding: 8px 12px;
        min-width: 60px;
    }
    .ti-feature-badge strong { font-size: 14px; }
}
