/* =========================================================
   PAOLA ORO - CSS DEDICATO
   Caricare dopo: css/custom.css
   Palette: #003d24, #17231f, #e4a711, #e6eeee, #000, #fff
========================================================= */

:root {
    --paola-green: #003d24;
    --paola-dark: #17231f;
    --paola-dark-green: #17231f;
    --paola-gold: #e4a711;
    --paola-light: #e6eeee;
    --paola-black: #000000;
    --paola-white: #ffffff;
    --paola-text: #17231f;
    --paola-muted: rgba(23, 35, 31, 0.72);
    --accent-color: #e4a711;
}

/* =========================================================
   01. RESET / OVERRIDE TEMPLATE
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    color: var(--paola-text);
}

img {
    max-width: 100%;
}

/* Colore accento del template */
.section-title h3,
.paola-section-title h3 {
    color: var(--paola-gold) !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h3::before,
.paola-section-title h3::before {
    background: none !important;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background-color: var(--paola-gold) !important;
}

.paola-section-title h2 {
    color: var(--paola-dark);
}

.paola-section-title h2 span,
.section-title h2 span {
    color: var(--paola-green);
}

.section-title-content p {
    color: var(--paola-muted);
}

/* Bottone standard del template adattato */
.paola-btn-default {
    background: var(--paola-green) !important;
    color: var(--paola-white) !important;
    border-color: var(--paola-green) !important;
}

.paola-btn-default::before {
    background-color: var(--paola-gold) !important;
}

.paola-btn-default:hover {
    background: var(--paola-gold) !important;
    color: var(--paola-green) !important;
    border-color: var(--paola-gold) !important;
}

.paola-btn-default:hover::before {
    background-color: var(--paola-white) !important;
}

/* =========================================================
   02. HEADER STICKY
========================================================= */

.paola-header {
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--paola-green);
    border-bottom: 0;
}

.paola-header .header-sticky,
.paola-header-sticky {
    position: relative !important;
    top: auto !important;
    width: 100%;
    background: rgba(0, 61, 36, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
    transform: none !important;
}

.paola-header .header-sticky.active,
.paola-header .header-sticky.hide {
    position: relative !important;
    transform: none !important;
    background: rgba(0, 61, 36, 0.97);
}

.paola-topbar {
    width: 100%;
    background: var(--paola-dark);
    color: var(--paola-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.paola-topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.paola-topbar-left,
.paola-topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.paola-topbar a,
.paola-topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.paola-topbar i {
    color: var(--paola-gold);
    font-size: 14px;
}

.paola-topbar a:hover {
    color: var(--paola-gold);
}

.paola-navbar {
    padding: 8px 0;
    background: transparent;
}

.paola-navbar .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.paola-logo {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.paola-logo img {
    max-width: 190px;
    max-height: 90px;
    width: auto;
    height: auto;
}

.paola-main-menu {
    justify-content: flex-end;
}

.paola-main-menu .nav-menu-wrapper {
    margin-left: auto;
}

.paola-main-menu .navbar-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.paola-main-menu .navbar-nav .nav-item {
    margin: 0;
}

.paola-main-menu .navbar-nav .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
    padding: 13px 14px !important;
    transition: all 0.3s ease;
}

.paola-main-menu .navbar-nav .nav-link:before {
    display: none;
}

.paola-main-menu .navbar-nav .nav-link:after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--paola-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.paola-main-menu .navbar-nav .nav-link:hover,
.paola-main-menu .navbar-nav .nav-link.active {
    color: var(--paola-white) !important;
}

.paola-main-menu .navbar-nav .nav-link:hover:after,
.paola-main-menu .navbar-nav .nav-link.active:after {
    transform: scaleX(1);
}

.paola-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 28px;
}

.paola-price-badge {
    min-width: 135px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 9px 15px;
    border-radius: 16px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(228, 167, 17, 0.35);
    transition: all 0.3s ease;
}
.paola-price-badge.active{
    border: 1px solid rgb(228, 167, 17);
}

.paola-price-badge span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.paola-price-badge strong {
    color: var(--paola-gold);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
}

.paola-price-badge:hover {
    background: rgba(228, 167, 17, 0.13);
    border-color: var(--paola-gold);
}

.paola-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--paola-gold);
    color: var(--paola-green) !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    border: 1px solid var(--paola-gold);
    box-shadow: 0 12px 30px rgba(228, 167, 17, 0.24);
    transition: all 0.3s ease;
}

.paola-header-btn:hover {
    background: var(--paola-white);
    border-color: var(--paola-white);
    color: var(--paola-green) !important;
    transform: translateY(-2px);
}

.paola-header .navbar-toggle {
    margin-left: auto;
}

.paola-header .slicknav_btn {
    width: 44px;
    height: 44px;
    background: var(--paola-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paola-header .slicknav_icon {
    margin: 0;
}

.paola-header .slicknav_icon .slicknav_icon-bar {
    background-color: var(--paola-green);
    width: 22px;
    height: 2px;
    margin: 4px 0;
}

.paola-header .slicknav_menu {
    background: var(--paola-green);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.paola-header .slicknav_nav {
    padding: 10px 0 14px;
}

.paola-header .slicknav_nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.paola-header .slicknav_nav li:last-child {
    border-bottom: 0;
}

.paola-header .slicknav_nav a,
.paola-header .slicknav_nav .slicknav_row {
    color: var(--paola-white);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 20px;
    margin: 0;
    border-radius: 0;
    text-transform: none;
}

.paola-header .slicknav_nav a:hover,
.paola-header .slicknav_nav .slicknav_row:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--paola-gold);
}

/* =========================================================
   03. HERO + MODULO QUOTAZIONE
========================================================= */

.paola-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
    background:
        radial-gradient(circle at top right, rgba(228, 167, 17, 0.18), transparent 34%),
        linear-gradient(135deg, var(--paola-green) 0%, var(--paola-dark) 100%);
    color: var(--paola-white);
}

.paola-hero:before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.10);
    pointer-events: none;
}

.paola-hero:after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(230, 238, 238, 0.08);
    pointer-events: none;
}

.paola-hero .container {
    position: relative;
    z-index: 2;
}

.paola-hero-content {
    max-width: 650px;
}

.paola-section-tag {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(228, 167, 17, 0.12);
    border: 1px solid rgba(228, 167, 17, 0.35);
    color: var(--paola-gold);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.paola-hero-content h1 {
    color: var(--paola-white);
    font-size: 68px;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -2.6px;
    margin-bottom: 26px;
}

.paola-hero-content h1 span {
    color: var(--paola-gold);
}

.paola-hero-content p {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 30px;
}

.paola-hero-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.paola-hero-list-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--paola-white);
    font-size: 12px;
    font-weight: 700;
}

.paola-hero-list-item i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--paola-gold);
    color: var(--paola-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.paola-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 42px;
}

.paola-btn-primary,
.paola-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.paola-btn-primary {
    background: var(--paola-gold);
    color: var(--paola-green) !important;
    border: 1px solid var(--paola-gold);
    box-shadow: 0 16px 36px rgba(228, 167, 17, 0.26);
}

.paola-btn-primary:hover {
    background: var(--paola-white);
    border-color: var(--paola-white);
    transform: translateY(-3px);
}

.paola-btn-whatsapp {
    gap: 9px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--paola-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.paola-btn-whatsapp i {
    color: var(--paola-gold);
    font-size: 20px;
}

.paola-btn-whatsapp:hover {
    background: var(--paola-white);
    color: var(--paola-green) !important;
    transform: translateY(-3px);
}

.paola-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 560px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.paola-hero-trust div {
    padding: 20px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.paola-hero-trust div:last-child {
    border-right: 0;
}

.paola-hero-trust strong {
    display: block;
    color: var(--paola-gold);
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 7px;
}

.paola-hero-trust span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.paola-quote-box {
    position: relative;
    max-width: 560px;
    margin-left: auto;
    padding: 34px;
    border-radius: 34px;
    background: var(--paola-white);
    color: var(--paola-dark);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.paola-quote-box:before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 26px;
    border: 1px solid rgba(228, 167, 17, 0.28);
    pointer-events: none;
}

.paola-quote-head,
.paola-quote-form,
.paola-quote-note {
    position: relative;
    z-index: 2;
}

.paola-quote-head {
    margin-bottom: 26px;
}

.paola-quote-head span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--paola-gold);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.paola-quote-head h2 {
    color: var(--paola-green);
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1.2px;
    line-height: 1.12;
    margin-bottom: 10px;
}

.paola-quote-head p {
    color: rgba(23, 35, 31, 0.72);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.paola-quote-form .form-group {
    margin-bottom: 18px;
}

.paola-quote-form label {
    display: block;
    color: var(--paola-dark);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
}

.paola-quote-form .form-control {
    width: 100%;
    height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(23, 35, 31, 0.14);
    background: #f7f9f9;
    color: var(--paola-dark);
    font-size: 15px;
    font-weight: 600;
    padding: 0 16px;
    box-shadow: none;
    outline: none;
    transition: all 0.3s ease;
}

.paola-quote-form .form-control:focus {
    border-color: var(--paola-gold);
    background: var(--paola-white);
    box-shadow: 0 0 0 4px rgba(228, 167, 17, 0.14);
}

.paola-quote-form select.form-control {
    appearance: auto;
    cursor: pointer;
}

.paola-input-weight {
    position: relative;
}

.paola-input-weight .form-control {
    padding-right: 88px;
}

.paola-input-weight span {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(23, 35, 31, 0.58);
    font-size: 14px;
    font-weight: 800;
}

.paola-estimate-result {
    margin: 4px 0 20px;
    padding: 20px;
    border-radius: 20px;
    background: var(--paola-light);
    border: 1px solid rgba(0, 61, 36, 0.10);
}

.paola-estimate-result span {
    display: block;
    color: rgba(23, 35, 31, 0.68);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.paola-estimate-result strong {
    display: block;
    color: var(--paola-green);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.paola-estimate-result small {
    display: block;
    color: rgba(23, 35, 31, 0.60);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.paola-privacy-text {
    color: rgba(23, 35, 31, 0.58);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 18px;
}

.paola-privacy-check {
    margin-bottom: 18px;
}

.paola-privacy-check label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.paola-privacy-check input {
    margin-top: 4px;
    accent-color: var(--paola-gold);
}

.paola-privacy-check span {
    color: rgba(23, 35, 31, 0.62);
    font-size: 12px;
    line-height: 1.5;
}

.paola-form-btn {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    background: var(--paola-green);
    color: var(--paola-white);
    font-size: 16px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paola-form-btn i {
    color: var(--paola-gold);
}

.paola-form-btn:hover {
    background: var(--paola-gold);
    color: var(--paola-green);
    transform: translateY(-3px);
}

.paola-form-btn:hover i {
    color: var(--paola-green);
}

.paola-quote-note {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: rgba(23, 35, 31, 0.68);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.paola-quote-note i {
    color: var(--paola-gold);
}

/* =========================================================
   04. SCROLLING TICKER
========================================================= */

.paola-scrolling-ticker {
    position: relative;
    overflow: hidden;
    background: var(--paola-gold);
    padding: 0;
    border-top: 1px solid rgba(228, 167, 17, 0.35);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.paola-scrolling-ticker .scrolling-ticker-box {
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.paola-scrolling-ticker .scrolling-content {
    display: flex;
    align-items: center;
    animation: paolaTickerScroll 36s linear infinite;
}

.paola-scrolling-ticker .scrolling-content span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--paola-green);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 24px 26px;
}

.paola-scrolling-ticker .scrolling-content span i {
    color: var(--paola-green);
    font-size: 8px;
    opacity: 0.65;
}

@keyframes paolaTickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.paola-scrolling-ticker:hover .scrolling-content {
    animation-play-state: paused;
}

/* =========================================================
   05. QUOTAZIONI ORO E ARGENTO
========================================================= */

.paola-rates-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: var(--paola-light);
}

.paola-rates-section:before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.16);
    pointer-events: none;
}

.paola-rates-section:after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -160px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(0, 61, 36, 0.08);
    pointer-events: none;
}

.paola-rates-section .container {
    position: relative;
    z-index: 2;
}

.paola-rates-section .section-title-content p {
    color: rgba(23, 35, 31, 0.72);
}

.paola-rates-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 35px;
}

.paola-rate-panel {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 32px;
    background: var(--paola-green);
    box-shadow: 0 24px 70px rgba(0, 61, 36, 0.18);
}

.paola-rate-panel:before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.18);
    pointer-events: none;
}

.paola-rate-panel-light {
    background: var(--paola-dark);
}

.paola-rate-panel-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.paola-rate-panel-head span {
    display: inline-block;
    color: var(--paola-gold);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 8px;
}

.paola-rate-panel-head h3 {
    color: var(--paola-white);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
}

.paola-rate-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    background: var(--paola-gold);
    color: var(--paola-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex: 0 0 auto;
    box-shadow: 0 14px 34px rgba(228, 167, 17, 0.28);
}

.paola-rate-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

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

.paola-rate-card {
    position: relative;
    overflow: hidden;
    min-height: 158px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.paola-rate-card:before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.14);
    transition: all 0.3s ease;
}

.paola-rate-card span {
    position: relative;
    z-index: 2;
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 18px;
}

.paola-rate-card strong {
    position: relative;
    z-index: 2;
    display: block;
    color: var(--paola-gold);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.paola-rate-card small {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 700;
}

.paola-rate-card em {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--paola-white);
    color: var(--paola-green);
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.paola-rate-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(228, 167, 17, 0.45);
}

.paola-rate-card:hover:before {
    transform: scale(1.35);
}

.paola-rate-card.featured {
    background: var(--paola-gold);
    border-color: var(--paola-gold);
}

.paola-rate-card.featured span,
.paola-rate-card.featured small {
    color: rgba(0, 61, 36, 0.72);
}

.paola-rate-card.featured strong {
    color: var(--paola-green);
}

.paola-rate-card.featured:before {
    background: rgba(255, 255, 255, 0.28);
}

.paola-rate-card.featured em {
    background: var(--paola-green);
    color: var(--paola-white);
}

.paola-rates-note {
    margin-top: 30px;
    padding: 26px;
    border-radius: 28px;
    background: var(--paola-white);
    border: 1px solid rgba(0, 61, 36, 0.10);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}

.paola-rates-note-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(228, 167, 17, 0.15);
    color: var(--paola-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.paola-rates-note-content h4 {
    color: var(--paola-green);
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 7px;
}

.paola-rates-note-content p {
    color: rgba(23, 35, 31, 0.68);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.paola-rates-note-btn {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--paola-green);
    color: var(--paola-white) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.paola-rates-note-btn i {
    color: var(--paola-gold);
}

.paola-rates-note-btn:hover {
    background: var(--paola-gold);
    color: var(--paola-green) !important;
    transform: translateY(-3px);
}

.paola-rates-note-btn:hover i {
    color: var(--paola-green);
}

/* =========================================================
   06. PERCHE SCEGLIERCI
========================================================= */

.paola-why-choose {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: var(--paola-white);
}

.paola-why-choose:before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.12);
    pointer-events: none;
}

.paola-why-choose:after {
    content: "";
    position: absolute;
    bottom: -190px;
    left: -170px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(0, 61, 36, 0.06);
    pointer-events: none;
}

.paola-why-choose .container {
    position: relative;
    z-index: 2;
}

.paola-why-choose .section-btn {
    text-align: right;
}

.paola-why-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    height: 100%;
}

.paola-why-card {
    position: relative;
    overflow: hidden;
    min-height: 255px;
    padding: 28px;
    border-radius: 28px;
    background: var(--paola-light);
    border: 1px solid rgba(0, 61, 36, 0.10);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.paola-why-card:before {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.16);
    transition: all 0.35s ease;
    pointer-events: none;
}

.paola-why-card:hover {
    transform: translateY(-6px);
    background: var(--paola-green);
    border-color: var(--paola-green);
    box-shadow: 0 26px 70px rgba(0, 61, 36, 0.18);
}

.paola-why-card:hover:before {
    transform: scale(1.25);
    background: rgba(228, 167, 17, 0.20);
}

.paola-why-card-main {
    background: var(--paola-green);
    border-color: var(--paola-green);
}

.paola-why-card-main:before {
    background: rgba(228, 167, 17, 0.20);
}

.paola-why-card-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--paola-gold);
    color: var(--paola-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 28px;
    box-shadow: 0 14px 32px rgba(228, 167, 17, 0.24);
}

.paola-why-card-content {
    position: relative;
    z-index: 2;
}

.paola-why-card-content span {
    display: block;
    color: rgba(0, 61, 36, 0.34);
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 14px;
}

.paola-why-card-content h3 {
    color: var(--paola-green);
    font-size: 23px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    text-transform: none;
}

.paola-why-card-content p {
    color: rgba(23, 35, 31, 0.70);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.paola-why-card-main .paola-why-card-content span,
.paola-why-card:hover .paola-why-card-content span {
    color: rgba(255, 255, 255, 0.14);
}

.paola-why-card-main .paola-why-card-content h3,
.paola-why-card:hover .paola-why-card-content h3 {
    color: var(--paola-white);
}

.paola-why-card-main .paola-why-card-content p,
.paola-why-card:hover .paola-why-card-content p {
    color: rgba(255, 255, 255, 0.74);
}

.paola-why-side-card {
    position: sticky;
    top: 120px;
    overflow: hidden;
    height: 100%;
    min-height: 100%;
    border-radius: 32px;
    background: var(--paola-dark);
    box-shadow: 0 24px 70px rgba(0, 61, 36, 0.18);
}

.paola-why-image {
    position: relative;
    overflow: hidden;
    min-height: 330px;
}

.paola-why-image figure {
    height: 100%;
    margin: 0;
}

.paola-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.paola-why-side-content {
    padding: 30px;
}

.paola-why-side-content span {
    display: inline-flex;
    color: var(--paola-gold);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 12px;
}

.paola-why-side-content h3 {
    color: var(--paola-white);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

.paola-why-side-content p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.paola-side-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--paola-gold) !important;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
}

.paola-side-link i {
    transition: all 0.3s ease;
}

.paola-side-link:hover {
    color: var(--paola-white) !important;
}

.paola-side-link:hover i {
    transform: translateX(4px);
}

/* =========================================================
   07. RECENSIONI CLIENTI
========================================================= */

.paola-testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: var(--paola-light);
}

.paola-testimonials-section:before {
    content: "";
    position: absolute;
    top: -170px;
    left: -160px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(0, 61, 36, 0.08);
    pointer-events: none;
}

.paola-testimonials-section:after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -190px;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.15);
    pointer-events: none;
}

.paola-testimonials-section .container {
    position: relative;
    z-index: 2;
}

.paola-testimonials-section .section-title-content p {
    color: rgba(23, 35, 31, 0.72);
}

.paola-testimonials-wrapper {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    margin-top: 40px;
}

.paola-review-summary {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 32px;
    background: var(--paola-green);
    color: var(--paola-white);
    box-shadow: 0 24px 70px rgba(0, 61, 36, 0.20);
}

.paola-review-summary:before {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.18);
    pointer-events: none;
}

.paola-review-score {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 12px;
}

.paola-review-score strong {
    color: var(--paola-gold);
    font-size: 74px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
}

.paola-review-score span {
    color: rgba(255, 255, 255, 0.70);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.paola-review-stars,
.paola-review-card-stars {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--paola-gold);
}

.paola-review-stars {
    margin-bottom: 24px;
}

.paola-review-stars i {
    font-size: 18px;
}

.paola-review-summary h3 {
    position: relative;
    z-index: 2;
    color: var(--paola-white);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

.paola-review-summary p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.70);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.paola-review-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--paola-gold) !important;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
}

.paola-review-link i {
    transition: all 0.3s ease;
}

.paola-review-link:hover {
    color: var(--paola-white) !important;
}

.paola-review-link:hover i {
    transform: translateX(4px);
}

.paola-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.paola-review-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 28px;
    border-radius: 28px;
    background: var(--paola-white);
    border: 1px solid rgba(0, 61, 36, 0.10);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.paola-review-card:before {
    content: "“";
    position: absolute;
    right: 22px;
    bottom: -28px;
    color: rgba(228, 167, 17, 0.18);
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.paola-review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(228, 167, 17, 0.45);
    box-shadow: 0 26px 70px rgba(0, 61, 36, 0.12);
}

.paola-review-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.paola-review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--paola-green);
    color: var(--paola-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    flex: 0 0 auto;
}

.paola-review-card-head h4 {
    color: var(--paola-green);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 5px;
}

.paola-review-card-head span {
    color: rgba(23, 35, 31, 0.58);
    font-size: 13px;
    font-weight: 700;
}

.paola-review-card-stars {
    margin-bottom: 18px;
}

.paola-review-card-stars i {
    font-size: 14px;
}

.paola-review-card p {
    position: relative;
    z-index: 2;
    color: rgba(23, 35, 31, 0.74);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* =========================================================
   08. CTA FINALE + CONTATTI
========================================================= */

.paola-final-cta {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: var(--paola-white);
}

.paola-final-cta:before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.12);
    pointer-events: none;
}

.paola-final-cta:after {
    content: "";
    position: absolute;
    bottom: -190px;
    left: -170px;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background: rgba(0, 61, 36, 0.07);
    pointer-events: none;
}

.paola-final-cta .container {
    position: relative;
    z-index: 2;
}

.paola-final-cta-box {
    position: relative;
    overflow: hidden;
    padding: 56px;
    border-radius: 38px;
    background:
        radial-gradient(circle at top right, rgba(228, 167, 17, 0.20), transparent 34%),
        linear-gradient(135deg, var(--paola-green) 0%, var(--paola-dark) 100%);
    box-shadow: 0 30px 90px rgba(0, 61, 36, 0.22);
}

.paola-final-cta-box:before {
    content: "";
    position: absolute;
    top: -130px;
    right: -110px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.16);
    pointer-events: none;
}

.paola-final-cta-box:after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -110px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.paola-final-cta-content,
.paola-final-contact-card {
    position: relative;
    z-index: 2;
}

.paola-final-cta-content {
    max-width: 680px;
}

.paola-final-tag {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(228, 167, 17, 0.14);
    border: 1px solid rgba(228, 167, 17, 0.35);
    color: var(--paola-gold);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.paola-final-cta-content h2 {
    color: var(--paola-white);
    font-size: 54px;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.paola-final-cta-content h2 span {
    color: var(--paola-gold);
}

.paola-final-cta-content p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 34px;
}

.paola-final-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.paola-final-btn-primary,
.paola-final-btn-whatsapp {
    min-height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.paola-final-btn-primary {
    background: var(--paola-gold);
    color: var(--paola-green) !important;
    border: 1px solid var(--paola-gold);
    box-shadow: 0 16px 36px rgba(228, 167, 17, 0.24);
}

.paola-final-btn-primary:hover {
    background: var(--paola-white);
    border-color: var(--paola-white);
    transform: translateY(-3px);
}

.paola-final-btn-whatsapp {
    background: rgba(255, 255, 255, 0.08);
    color: var(--paola-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.paola-final-btn-whatsapp i {
    color: var(--paola-gold);
    font-size: 20px;
}

.paola-final-btn-whatsapp:hover {
    background: var(--paola-white);
    color: var(--paola-green) !important;
    transform: translateY(-3px);
}

.paola-final-btn-whatsapp:hover i {
    color: var(--paola-green);
}

.paola-final-contact-card {
    padding: 32px;
    border-radius: 30px;
    background: var(--paola-white);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.paola-final-contact-card h3 {
    color: var(--paola-green);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 24px;
}

.paola-final-contact-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.paola-final-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: var(--paola-light);
    border: 1px solid rgba(0, 61, 36, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}

.paola-final-contact-item:hover {
    background: var(--paola-green);
    border-color: var(--paola-green);
    transform: translateY(-3px);
}

.paola-final-contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--paola-gold);
    color: var(--paola-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: 0 0 auto;
}

.paola-final-contact-item span {
    display: block;
    color: rgba(23, 35, 31, 0.58);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
}

.paola-final-contact-item strong {
    display: block;
    color: var(--paola-green);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.paola-final-contact-item:hover span {
    color: rgba(255, 255, 255, 0.64);
}

.paola-final-contact-item:hover strong {
    color: var(--paola-white);
}

.paola-final-hours {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background: var(--paola-green);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.paola-final-hours-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--paola-gold);
    color: var(--paola-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: 0 0 auto;
}

.paola-final-hours span {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 7px;
}

.paola-final-hours strong {
    display: block;
    color: var(--paola-white);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 5px;
}

.paola-final-hours small {
    display: block;
    color: var(--paola-gold);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

/* =========================================================
   09. FOOTER
========================================================= */

.paola-footer {
    position: relative;
    overflow: hidden;
    padding: 90px 0 28px;
    background:
        radial-gradient(circle at top left, rgba(228, 167, 17, 0.13), transparent 34%),
        linear-gradient(135deg, var(--paola-dark) 0%, var(--paola-green) 100%);
    color: var(--paola-white);
}

.paola-footer:before {
    content: "";
    position: absolute;
    top: -170px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.12);
    pointer-events: none;
}

.paola-footer:after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -160px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.paola-footer .container {
    position: relative;
    z-index: 2;
}

.paola-footer-top {
    padding-bottom: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.paola-footer-widget {
    margin-bottom: 30px;
}

.paola-footer-logo {
    display: inline-flex;
    margin-bottom: 24px;
}

.paola-footer-logo img {
    max-width: 190px;
    max-height: 62px;
    width: auto;
    height: auto;
}

.paola-footer-about p {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 26px;
}

.paola-footer-company {
    margin: 0 0 24px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.paola-footer-company strong {
    display: block;
    color: var(--paola-white);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 5px;
}

.paola-footer-company span {
    display: block;
    color: var(--paola-gold);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.paola-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.paola-footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--paola-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
}

.paola-footer-social a:hover {
    background: var(--paola-gold);
    color: var(--paola-green);
    transform: translateY(-3px);
}

.paola-footer-widget h3 {
    color: var(--paola-white);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.paola-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paola-footer-links li {
    margin-bottom: 13px;
}

.paola-footer-links li:last-child {
    margin-bottom: 0;
}

.paola-footer-links a {
    color: rgba(255, 255, 255, 0.70);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.paola-footer-links a:hover {
    color: var(--paola-gold);
    padding-left: 5px;
}

.paola-footer-contact-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.paola-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    transition: all 0.3s ease;
}

.paola-footer-contact-item i {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: rgba(228, 167, 17, 0.14);
    color: var(--paola-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.paola-footer-contact-item:hover {
    color: var(--paola-gold);
}

.paola-footer-contact-item:hover i {
    background: var(--paola-gold);
    color: var(--paola-green);
}

.paola-footer-hours {
    margin-top: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.paola-footer-hours i {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: rgba(228, 167, 17, 0.14);
    color: var(--paola-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex: 0 0 auto;
}

.paola-footer-hours span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.paola-footer-middle {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.paola-footer-quote {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.paola-footer-quote span {
    display: block;
    color: var(--paola-gold);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 8px;
}

.paola-footer-quote strong {
    display: block;
    color: var(--paola-white);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.35;
}

.paola-footer-quote a {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--paola-gold);
    color: var(--paola-green) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.paola-footer-quote a:hover {
    background: var(--paola-white);
    transform: translateY(-3px);
}

.paola-footer-bottom {
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.paola-footer-legal p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.paola-footer-credit {
    margin-top: 6px !important;
}

.paola-footer-credit a {
    color: var(--paola-gold);
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
}

.paola-footer-credit a:hover {
    color: var(--paola-white);
}

.paola-footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.paola-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.paola-footer-bottom-links a:hover {
    color: var(--paola-gold);
}

.paola-footer-disclaimer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.paola-footer-disclaimer p {
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
}

.btn svg path {
    fill: #E4A711;
}
.silver-green-icon path{
    fill: #073A20
}


/* =========================================================
   10. RESPONSIVE
========================================================= */

@media only screen and (max-width: 1199px) {
    .paola-main-menu .navbar-nav .nav-link {
        font-size: 15px;
        padding: 13px 10px !important;
    }

    .paola-header-actions {
        margin-left: 18px;
        gap: 10px;
    }

    .paola-price-badge {
        display: none;
    }

    .paola-header-btn {
        padding: 0 18px;
    }

    .paola-hero-content h1 {
        font-size: 58px;
    }

    .paola-quote-box,
    .paola-review-summary,
    .paola-final-contact-card {
        padding: 30px;
    }

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

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

    .paola-why-card {
        min-height: 275px;
    }

    .paola-why-side-content h3 {
        font-size: 25px;
    }

    .paola-testimonials-wrapper {
        grid-template-columns: 320px 1fr;
    }

    .paola-final-cta-box {
        padding: 44px;
    }

    .paola-final-cta-content h2 {
        font-size: 46px;
    }
}

@media only screen and (max-width: 991px) {
    .paola-header {
        position: sticky !important;
    }

    .paola-topbar {
        display: none;
    }

    .paola-navbar {
        padding: 14px 0;
    }

    .paola-logo img {
        max-width: 165px;
        max-height: 52px;
    }

    .paola-main-menu,
    .paola-header-actions {
        display: none !important;
    }

    .paola-header .navbar-toggle,
    .paola-header .responsive-menu {
        display: block;
    }

    .paola-hero,
    .paola-rates-section,
    .paola-why-choose,
    .paola-testimonials-section,
    .paola-final-cta {
        padding: 80px 0;
    }

    .paola-hero-content {
        max-width: 100%;
        margin-bottom: 45px;
    }

    .paola-hero-content h1 {
        font-size: 50px;
    }

    .paola-quote-box {
        max-width: 100%;
        margin-left: 0;
    }

    .paola-rate-panel {
        padding: 28px;
        border-radius: 28px;
    }

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

    .paola-rates-note {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .paola-rates-note-icon {
        margin: 0 auto;
    }

    .paola-rates-note-btn {
        width: 100%;
    }

    .paola-why-choose .section-btn {
        text-align: left;
    }

    .paola-why-boxes {
        margin-bottom: 30px;
    }

    .paola-why-side-card {
        position: relative;
        top: auto;
    }

    .paola-why-image img {
        height: auto;
    }

    .paola-testimonials-wrapper {
        grid-template-columns: 1fr;
    }

    .paola-final-cta-content {
        margin-bottom: 36px;
    }

    .paola-final-cta-box {
        padding: 38px;
        border-radius: 32px;
    }

    .paola-footer {
        padding: 75px 0 26px;
    }

    .paola-footer-top {
        padding-bottom: 30px;
    }

    .paola-footer-quote {
        flex-direction: column;
        align-items: flex-start;
    }

    .paola-footer-quote a {
        width: 100%;
    }

    .paola-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 767px) {


    .paola-header .slicknav_nav a.active {
      color: var(--paola-gold);
    }

    .paola-hero,
    .paola-rates-section,
    .paola-why-choose,
    .paola-testimonials-section,
    .paola-final-cta {
        padding: 65px 0;
    }

    .paola-hero-content h1 {
        font-size: 42px;
        letter-spacing: -1.6px;
    }

    .paola-hero-content p {
        font-size: 17px;
    }

    .paola-hero-actions,
    .paola-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .paola-btn-primary,
    .paola-btn-whatsapp,
    .paola-final-btn-primary,
    .paola-final-btn-whatsapp {
        width: 100%;
    }

    .paola-hero-trust {
        grid-template-columns: 1fr;
    }

    .paola-hero-trust div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .paola-hero-trust div:last-child {
        border-bottom: 0;
    }

    .paola-quote-box,
    .paola-final-contact-card,
    .paola-review-summary,
    .paola-review-card {
        border-radius: 24px;
        padding: 20px 16px;
    }

    .paola-quote-box:before {
        border-radius: 20px;
    }

    .paola-quote-head h2 {
        font-size: 29px;
    }

    .paola-scrolling-ticker .scrolling-content span {
        font-size: 15px;
        padding: 20px 22px;
    }

    .paola-rate-panel-head {
        align-items: flex-start;
    }

    .paola-rate-panel-head h3 {
        font-size: 28px;
    }

    .paola-rate-icon {
        width: 56px;
        height: 56px;
        font-size: 23px;
    }

    .paola-rate-grid,
    .paola-rate-grid-3,
    .paola-why-boxes,
    .paola-reviews-grid {
        grid-template-columns: 1fr;
    }

    .paola-rate-card,
    .paola-review-card {
        min-height: auto;
    }

    .paola-why-boxes,
    .paola-reviews-grid {
        gap: 18px;
    }

    .paola-why-card {
        min-height: auto;
        padding: 26px 24px;
        border-radius: 24px;
    }

    .paola-why-card-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
        margin-bottom: 24px;
    }

    .paola-why-card-content span {
        font-size: 40px;
    }

    .paola-why-card-content h3 {
        font-size: 21px;
    }

    .paola-why-image img {
        height: auto;
    }

    .paola-why-side-content {
        padding: 26px 24px;
    }

    .paola-why-side-content h3,
    .paola-review-summary h3,
    .paola-final-contact-card h3 {
        font-size: 24px;
    }

    .paola-review-score strong {
        font-size: 62px;
    }

    .paola-final-cta-box {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .paola-final-cta-content h2 {
        font-size: 36px;
        letter-spacing: -1.4px;
    }

    .paola-final-cta-content p {
        font-size: 16px;
    }

    .paola-final-contact-item,
    .paola-final-hours {
        padding: 15px;
    }

    .paola-footer {
        padding: 60px 0 24px;
    }

    .paola-footer-logo img {
        max-width: 155px;
    }

    .paola-footer-widget h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .paola-footer-quote {
        padding: 22px;
        border-radius: 22px;
    }

    .paola-footer-quote strong {
        font-size: 18px;
    }

    .paola-footer-bottom-links {
        gap: 12px 16px;
    }

    .paola-rate-grid, .paola-rate-grid-3, .paola-why-boxes, .paola-reviews-grid {
        grid-template-columns: 80%;
        grid-auto-flow: column;
        grid-auto-columns: 80%;
        overflow-x: auto;
        align-content: start;
    }
}

@media only screen and (max-width: 575px) {
    .paola-navbar {
        padding: 12px 0;
    }

    .paola-logo img {
        max-width: 145px;
        max-height: 48px;
    }

    .paola-hero-content h1 {
        font-size: 36px;
    }

    .paola-section-tag,
    .paola-final-tag {
        font-size: 12px;
    }

    .paola-quote-box,
    .paola-rate-panel,
    .paola-rate-card,
    .paola-rates-note {
        padding: 22px;
    }

    .paola-estimate-result strong,
    .paola-rate-card strong {
        font-size: 30px;
    }

    .paola-scrolling-ticker .scrolling-content {
        animation-duration: 28s;
    }

    .paola-scrolling-ticker .scrolling-content span {
        font-size: 13px;
        padding: 18px 18px;
        letter-spacing: 0.3px;
    }
}


/* =========================================
   Paola Oro - Hero 3 Colonne Oro / Argento
========================================= */

.paola-hero-three {
    position: relative;
    overflow: hidden;
}

.paola-hero-three .row {
    position: relative;
    z-index: 2;
}

.paola-hero-content-three {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.paola-hero-content-three h1 {
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -2.2px;
}

.paola-hero-content-three p {
    font-size: 17px;
    line-height: 1.7;
}

.paola-hero-content-three .paola-hero-list {
    margin-bottom: 28px;
}

.paola-hero-content-three .paola-hero-actions {
    margin-bottom: 30px;
}

.paola-hero-content-three .paola-hero-trust {
    margin-top: auto;
}

/* Box metallo */
.paola-metal-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 28px;
    border-radius: 34px;
    background: var(--paola-white);
    color: var(--paola-dark);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.paola-metal-box:before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 26px;
    border: 1px solid rgba(228, 167, 17, 0.24);
    pointer-events: none;
}

.paola-metal-box:after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.12);
    pointer-events: none;
}

.paola-metal-box-silver:after {
    background: rgba(0, 61, 36, 0.08);
}

.paola-metal-box-head,
.paola-metal-box-text,
.paola-metal-box-form {
    position: relative;
    z-index: 2;
}

.paola-metal-box-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.paola-metal-box-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--paola-gold);
    color: var(--paola-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    flex: 0 0 auto;
    box-shadow: 0 12px 28px rgba(228, 167, 17, 0.24);
}

.paola-metal-box-head span {
    display: block;
    color: var(--paola-gold);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 7px;
}

.paola-metal-box-head h2 {
    color: var(--paola-green);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.2px;
    margin: 0;
}

.paola-metal-box-text {
    color: rgba(23, 35, 31, 0.68);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 20px;
}

/* Bottoni titolo */
.paola-metal-title-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 18px;
}


.paola-metal-title-buttons button {
    min-height: 44px;
    border: 1px solid rgba(0, 61, 36, 0.14);
    border-radius: 999px;
    background: var(--paola-light);
    color: var(--paola-green);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paola-metal-title-buttons button:hover,
.paola-metal-title-buttons button.active {
    background: var(--paola-green);
    color: var(--paola-white);
    border-color: var(--paola-green);
    box-shadow: 0 10px 24px rgba(0, 61, 36, 0.14);
}

/* Peso */
.paola-metal-weight-box {
    margin-bottom: 16px;
}

.paola-metal-weight-box label {
    display: block;
    color: var(--paola-dark);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

.paola-metal-weight-field {
    position: relative;
}

.paola-metal-weight-field input {
    width: 100%;
    height: 54px;
    border-radius: 15px;
    border: 1px solid rgba(23, 35, 31, 0.14);
    background: #f7f9f9;
    color: var(--paola-dark);
    font-size: 15px;
    font-weight: 700;
    padding: 0 88px 0 16px;
    outline: none;
    transition: all 0.3s ease;
}

.paola-metal-weight-field input:focus {
    border-color: var(--paola-gold);
    background: var(--paola-white);
    box-shadow: 0 0 0 4px rgba(228, 167, 17, 0.14);
}

.paola-metal-weight-field span {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(23, 35, 31, 0.58);
    font-size: 13px;
    font-weight: 900;
}

/* Valore */
.paola-metal-value-box {
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 22px;
    background: var(--paola-light);
    border: 1px solid rgba(0, 61, 36, 0.08);
}

.paola-metal-value-box span {
     display: block;
    color: rgb(23 35 31);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 7px;
}



.paola-quote-value-box span {
    display: block;
    color: rgb(23 35 31);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 7px;
}

.paola-metal-value-box strong {
    display: block;
    color: var(--paola-green);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.2px;
    margin-bottom: 10px;
}

.paola-metal-value-box small {
        display: block;
    color: rgb(6 6 6);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

/* Campi contatto */
.paola-metal-contact-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 14px;
}

.paola-metal-contact-fields input {
    width: 100%;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(23, 35, 31, 0.14);
    background: #f7f9f9;
    color: var(--paola-dark);
    font-size: 14px;
    font-weight: 700;
    padding: 0 14px;
    outline: none;
    transition: all 0.3s ease;
}

.paola-metal-contact-fields input:focus {
    border-color: var(--paola-gold);
    background: var(--paola-white);
    box-shadow: 0 0 0 4px rgba(228, 167, 17, 0.14);
}

/* Privacy */
.paola-metal-privacy-small {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 16px;
    cursor: pointer;
}

.paola-metal-privacy-small input {
    margin-top: 3px;
    accent-color: var(--paola-gold);
    flex: 0 0 auto;
}

.paola-metal-privacy-small span {
    color: rgba(23, 35, 31, 0.62);
    font-size: 11px;
    line-height: 1.45;
}

/* Submit */
.paola-metal-box-submit {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    background: var(--paola-green);
    color: var(--paola-white);
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paola-metal-box-submit i {
    color: var(--paola-gold);
    transition: all 0.3s ease;
}

.paola-metal-box-submit:hover {
    background: var(--paola-gold);
    color: var(--paola-green);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(228, 167, 17, 0.24);
}

.paola-metal-box-submit:hover i {
    color: var(--paola-green);
    transform: translateX(4px);
}

/** Footer cta **/
.footer-cta-mobile {
    display: none;
}

/* Responsive */
@media only screen and (max-width: 1199px) {
    .paola-hero-content-three h1 {
        font-size: 46px;
    }

    .paola-metal-box {
        padding: 24px;
    }

    .paola-metal-box-head h2 {
        font-size: 30px;
    }

    .paola-metal-value-box strong {
        font-size: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .paola-hero-content-three {
        margin-bottom: 10px;
    }

    .paola-metal-box {
        height: auto;
    }

    .footer-cta-mobile {
        position: fixed;
        z-index: 99;
        width: 100%;
        bottom: 0;
        background: #003D24;
        padding: .5rem 0;
        display: block;
    }
    .footer-cta-mobile .paola-header-actions {
        margin-left: 0;
        display: flex;
        justify-content: space-evenly;
    }
    .paola-price-badge {
        display: flex;
    }
    .paola-header-actions {
        display: flex !important;
    }

    .grecaptcha-badge {
        bottom: 150px !important;
    }
    .paola-footer-disclaimer {
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .paola-hero-content-three h1 {
        font-size: 38px;
        letter-spacing: -1.4px;
    }

    .paola-hero-content-three p {
        font-size: 16px;
    }

    .paola-metal-box {
        padding: 22px;
        border-radius: 26px;
    }

    .paola-metal-box:before {
        border-radius: 20px;
    }

    .paola-metal-box-head h2 {
        font-size: 28px;
    }

    .paola-metal-title-buttons,
    .paola-metal-title-buttons-gold {
        grid-template-columns: repeat(2, 1fr);
    }

    .paola-metal-box-silver .paola-metal-title-buttons {
        grid-template-columns: repeat(3, 1fr);
    }

    .paola-metal-value-box strong {
        font-size: 30px;
    }
}


/* =========================================
   Paola Oro - Hero Quotazione Unica Oro / Argento
========================================= */

.paola-quote-hero-single {
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
    background:
        radial-gradient(circle at top right, rgba(228, 167, 17, 0.18), transparent 34%),
        linear-gradient(135deg, var(--paola-green) 0%, var(--paola-dark) 100%);
    color: var(--paola-white);
}

.paola-quote-hero-single:before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.10);
    pointer-events: none;
}

.paola-quote-hero-single:after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(230, 238, 238, 0.08);
    pointer-events: none;
}

.paola-quote-hero-single .container {
    position: relative;
    z-index: 2;
}

/* Content */
.paola-quote-hero-content h1 {
    color: var(--paola-white);
    font-size: 66px;
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -2.8px;
    margin-bottom: 26px;
}

.paola-quote-hero-content h1 span {
    color: var(--paola-gold);
}

.paola-quote-hero-content p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.paola-quote-hero-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.paola-quote-hero-list div {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--paola-white);
    font-size: 15px;
    font-weight: 800;
}

.paola-quote-hero-list i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--paola-gold);
    color: var(--paola-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.paola-quote-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}

.paola-quote-btn-primary,
.paola-quote-btn-whatsapp {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.paola-quote-btn-primary {
    background: var(--paola-gold);
    color: var(--paola-green) !important;
    border: 1px solid var(--paola-gold);
    box-shadow: 0 16px 36px rgba(228, 167, 17, 0.26);
}

.paola-quote-btn-primary:hover {
    background: var(--paola-white);
    border-color: var(--paola-white);
    transform: translateY(-3px);
}

.paola-quote-btn-whatsapp {
    background: rgba(255, 255, 255, 0.08);
    color: var(--paola-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.paola-quote-btn-whatsapp i {
    color: var(--paola-gold);
    font-size: 20px;
}

.paola-quote-btn-whatsapp:hover {
    background: var(--paola-white);
    color: var(--paola-green) !important;
    transform: translateY(-3px);
}

.paola-quote-btn-whatsapp:hover i {
    color: var(--paola-green);
}

/* Trust */
.paola-quote-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 620px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.paola-quote-hero-trust div {
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.paola-quote-hero-trust div:last-child {
    border-right: 0;
}

.paola-quote-hero-trust strong {
    display: block;
    color: var(--paola-gold);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 7px;
}

.paola-quote-hero-trust span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

/* Form Card */
.paola-quote-form-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 36px;
    background: var(--paola-white);
    color: var(--paola-dark);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.paola-quote-form-card:before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 28px;
    border: 1px solid rgba(228, 167, 17, 0.26);
    pointer-events: none;
}

.paola-quote-form-card:after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(228, 167, 17, 0.12);
    pointer-events: none;
}

.paola-quote-form-head,
.paola-quote-form-text,
.paola-quote-form {
    position: relative;
    z-index: 2;
}

.paola-quote-form-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.paola-quote-form-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: var(--paola-gold);
    color: var(--paola-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    flex: 0 0 auto;
    box-shadow: 0 12px 28px rgba(228, 167, 17, 0.24);
}

.paola-quote-form-head span {
    display: block;
    color: var(--paola-gold);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 8px;
}

.paola-quote-form-head h2 {
    color: var(--paola-green);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.1px;
    margin: 0;
}

.paola-quote-form-text {
    color: rgba(23, 35, 31, 0.68);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Tabs */
.paola-quote-metal-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin-bottom: 22px;
}

.paola-quote-metal-tabs button {
    min-height: 58px;
    border: 1px solid rgba(0, 61, 36, 0.12);
    border-radius: 18px;
    background: var(--paola-light);
    color: var(--paola-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paola-quote-metal-tabs button i {
    color: var(--paola-gold);
    font-size: 18px;
}

.paola-quote-metal-tabs button:hover,
.paola-quote-metal-tabs button.active {
    background: var(--paola-green);
    color: var(--paola-white);
    border-color: var(--paola-green);
    box-shadow: 0 12px 28px rgba(0, 61, 36, 0.16);
}

.paola-quote-metal-tabs button:hover i,
.paola-quote-metal-tabs button.active i {
    color: var(--paola-gold);
}

/* Title Groups */
.paola-quote-title-group {
    display: none;
    margin-bottom: 18px;
}

.paola-quote-title-group.active {
    display: block;
}

.paola-quote-title-group label,
.paola-quote-weight-box label {
    display: block;
    color: var(--paola-dark);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 9px;
}

.paola-quote-title-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}

.paola-quote-title-group[data-metal-group="argento"] .paola-quote-title-buttons {
    grid-template-columns: repeat(3, 1fr);
}

.paola-quote-title-buttons button {
    min-height: 44px;
    border: 1px solid rgba(0, 61, 36, 0.14);
    border-radius: 999px;
    background: var(--paola-light);
    color: var(--paola-green);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paola-quote-title-buttons button:hover,
.paola-quote-title-buttons button.active {
    background: var(--paola-green);
    color: var(--paola-white);
    border-color: var(--paola-green);
    box-shadow: 0 10px 24px rgba(0, 61, 36, 0.14);
}

/* Weight */
.paola-quote-weight-box {
    margin-bottom: 16px;
}

.paola-quote-weight-field {
    position: relative;
}

.paola-quote-weight-field input {
    width: 100%;
    height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(23, 35, 31, 0.14);
    background: #f7f9f9;
    color: var(--paola-dark);
    font-size: 15px;
    font-weight: 700;
    padding: 0 88px 0 16px;
    outline: none;
    transition: all 0.3s ease;
}

.paola-quote-weight-field input:focus {
    border-color: var(--paola-gold);
    background: var(--paola-white);
    box-shadow: 0 0 0 4px rgba(228, 167, 17, 0.14);
}

.paola-quote-weight-field span {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(23, 35, 31, 0.58);
    font-size: 13px;
    font-weight: 900;
}

/* Value */
.paola-quote-value-box {
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 22px;
    background: var(--paola-light);
    border: 1px solid rgba(0, 61, 36, 0.08);
}

.paola-quote-value-box span {
    display: block;
    color: rgb(23 35 31);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 7px;
}

.paola-quote-value-box small {
    display: block;
    color: rgb(6 6 6);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.paola-quote-value-box strong {
    display: block;
    color: var(--paola-green);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.2px;
    margin-bottom: 10px;
}

/* Contact */
.paola-quote-contact-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.paola-quote-contact-fields input {
    width: 100%;
    height: 50px;
    border-radius: 15px;
    border: 1px solid rgba(23, 35, 31, 0.14);
    background: #f7f9f9;
    color: var(--paola-dark);
    font-size: 14px;
    font-weight: 700;
    padding: 0 14px;
    outline: none;
    transition: all 0.3s ease;
}

.paola-quote-contact-fields input:focus {
    border-color: var(--paola-gold);
    background: var(--paola-white);
    box-shadow: 0 0 0 4px rgba(228, 167, 17, 0.14);
}

/* Privacy */
.paola-quote-privacy {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 16px;
    cursor: pointer;
}

.paola-quote-privacy input {
    margin-top: 3px;
    accent-color: var(--paola-gold);
    flex: 0 0 auto;
}

.paola-quote-privacy span {
    color: rgba(23, 35, 31, 0.62);
    font-size: 11px;
    line-height: 1.45;
}

/* Submit */
.paola-quote-submit {
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 999px;
    background: var(--paola-green);
    color: var(--paola-white);
    font-size: 15px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paola-quote-submit i {
    color: var(--paola-gold);
    transition: all 0.3s ease;
}

.paola-quote-submit:hover {
    background: var(--paola-gold);
    color: var(--paola-green);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(228, 167, 17, 0.24);
}

.paola-quote-submit:hover i {
    color: var(--paola-green);
    transform: translateX(4px);
}


/** Alerts **/
.alert {
    padding: 1rem;
    border: 1px solid #e7e0e1;
    position: relative;
    border-radius: 0.375rem;
}
.alert-danger {
    color: #58151c;
    background-color: #f8d7da;
    border-color: #f1aeb5;
}
.alert-success {
    color: #0a3622;
    background-color: #d1e7dd;
    border-color: #a3cfbb;
}
.resultDiv {
    margin: 1rem 0;
}

/* Responsive */
@media only screen and (max-width: 1199px) {
    .paola-quote-hero-content h1 {
        font-size: 56px;
    }

    .paola-quote-form-card {
        padding: 28px;
    }

    .paola-quote-form-head h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 991px) {
    .paola-quote-hero-single {
        padding: 85px 0 75px;
    }

    .paola-quote-hero-content {
        margin-bottom: 42px;
    }

    .paola-quote-hero-content h1 {
        font-size: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .paola-quote-hero-single {
        padding: 65px 0 55px;
    }

    .paola-quote-hero-content h1 {
        font-size: 38px;
        letter-spacing: -1.4px;
    }

    .paola-quote-hero-content p {
        font-size: 16px;
    }

    .paola-quote-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .paola-quote-btn-primary,
    .paola-quote-btn-whatsapp {
        width: 100%;
    }

    .paola-quote-hero-trust {
        grid-template-columns: 1fr;
    }

    .paola-quote-hero-trust div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .paola-quote-hero-trust div:last-child {
        border-bottom: 0;
    }

    .paola-quote-form-card {
        padding: 24px;
        border-radius: 28px;
    }

    .paola-quote-form-card:before {
        border-radius: 22px;
    }

    .paola-quote-form-head {
        align-items: flex-start;
    }

    .paola-quote-form-head h2 {
        font-size: 25px;
    }

    .paola-quote-title-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}



    .paola-quote-contact-fields {
        grid-template-columns: 1fr;
    }

    .paola-quote-value-box strong {
        font-size: 32px;
    }
}
