:root {
    --primary-color: #1E40AF;
    --primary-light: #3B82F6;
    --accent-color: #F59E0B;
    --success-color: #10B981;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --dark: #000;
    --green : #6BC8B5;
    --grey : #757779;
    --dark-grey: #515253;
}

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

body {
    font-family: "Roboto", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h2{
    font-size: 1.4rem;
}


/* Header Styles */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar #my-btn-nav{
    background: var(--green);
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 10px;
}



/* .navbar a,
.navbar i{
    color: var(--dark);
} */

.offcanvas{
    bottom: 400px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: none!important;
}

.offcanvas.offcanvas-start {
    top: 103px !important;
}

#jumbo{
    margin-top: 130px;
}

#jumbo p{
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    margin: 12px 0;
}

#jumbo .jumbo-image{
    text-align: center;
    width: 100%;
    display: block;

}

#jumbo .my-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 10px;
    background: var(--landing-primary-color, var(--green));
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: block;
    margin: 48px auto;
}

footer {
    background: var(--grey);
    color: var(--white);
    padding: 30px 0 ;
}

.footer-links h5 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-contact {
    background: var(--dark-grey);
    padding: 1rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    color: var(--white);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.important-links a{
        background: var(--dark-grey);
    padding: 10px 15px;
    color: var(--white);
    border-radius: 10px;
    font-size: 13px;
}

#my-cal-inline{
    box-shadow: 0 2px 10px #a59e9e;
    padding: 5px;
    border-radius:10px;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--green);
}

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

.form-label {
    display: block;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-label .required {
    color: #EF4444;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}

.input-icon input {
    padding-left: 44px;
}

/* Radio Group */
.radio-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: #3B82F6;
    background: #EFF6FF;
}

.radio-option input[type="radio"] {
    margin-right: 12px;
    accent-color: #3B82F6;
}

.radio-option.selected {
    border-color: #3B82F6;
    background: #EFF6FF;
}

/* Privacy Checkbox */
.privacy-group {
    margin: 25px 0;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.privacy-checkbox input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #3B82F6;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.privacy-text {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.5;
}

.privacy-text a {
    color: #3B82F6;
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    padding: 16px;
    background-color: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* display: block;
    margin: 0 auto; */
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #9CA3AF;
    cursor: not-allowed;
    transform: none;
}

.feature-card{
    border: 1px solid #6BC8B5;
}

.icon-card{
    background-color: #6BC8B5;
    padding: 5px;
    border-radius: 3px;
}

.tx-green{
    color:#6BC8B5;
}

.bg-green{
    background-color:#6BC8B5;
    border-radius: 3px;
}

.tx-grey{
    color:#9CA3AF;
}

.tx-white{
    color:#fff;
}

.modules:hover{
    transform: translateY(-3%);
}


/* test chatti */
/* --- CTA Dopo Centralino --- */
.cta-section {
  background-color: #e8f8f5;
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 60px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.cta-section h2 {
  font-size: 2rem;
  color: #00a087;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
}

.cta-section .cta-sub {
  font-weight: 500;
  color: #006f5c;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background-color: #00a087;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #008c77;
}

/* --- Sezione recensioni --- */
.reviews-section {
  background-color: #fff;
  text-align: center;
  padding: 60px 20px;
}



.reviews-section .stars {
  font-size: 1.4rem;
  color: #f4b400;
  margin-bottom: 10px;
}

.reviews-section p {
  font-size: 1.1rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.cta-button.secondary {
  background-color: #00a087;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button.secondary:hover {
  background-color: #008c77;
}

.cta-button.secondary.light {
  background-color: #e8f8f5;
  color: #00a087;
  border: 2px solid #00a087;
}

.cta-button.secondary.light:hover {
  background-color: #d1f1eb;
}

a.btn-cta{
    background: var(--green);
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: bold;
    color: #fff !important;
}

.our-data{
    text-decoration: none !important;
    color: #000 !important;
}

.contact-item>span{
    text-decoration: none !important;
    color: #fff !important;
}
