:root {
    --brand-color: #2c75a9;
    --brand-color-secondary: #f29f2a;
    --brand-color-secondary-hover: #c78b34;
    --brand-color-hover: #265578;
    --text-color: #2b2b2b;
    --text-light: #777777;
    --white: #ffffff;
    --border-color: #cccccc;
    --header-height: 80px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Griglia e Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Bottoni */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--brand-color-secondary);
    color: var(--white);
    border: none;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: var(--brand-color-secondary-hover);
    transform: translateY(-2px);
}

.form-feedback {
    display: none;
    margin: 0 0 20px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-feedback.is-visible {
    display: block;
}

.form-feedback.is-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-feedback.is-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ---- Header / Navbar ---- */
.navbar {
    background-color: var(--brand-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo-img {
    height: 60px;
    width: auto;
    min-width: 120px;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #cccccc;
}

/* Hamburger (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 40px;
    overflow: hidden;
}

/* Sfondo hero: da riempire con l'img */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay scuro per leggere meglio il testo */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(86, 83, 83, 0.55);
    z-index: -1;
}

.hero-content {
    max-width: auto;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-description {
    color: #ffffff;
    font-size: 1.5rem;
    max-width: auto;
    margin: 0 auto 30px auto;
}

/* ---- Hero Features ---- */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    display: flex;
    width: fit-content;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    color: #f0f0f0;
    text-align: left;
    max-width: auto;
}

.feature-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ---- Hero Social Proof ---- */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-proof-avatars {
    display: flex;
    align-items: center;
}

.social-proof-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    margin-left: -15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.social-proof-avatars img:first-child {
    margin-left: 0;
}

.social-proof-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-proof-stars {
    display: flex;
    gap: 2px;
}

.social-proof-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f0f0f0;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* ---- Services Section ---- */
.services {
    padding: 50px 0;
    text-align: center;
    background-color: var(--white);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    padding: 20px;
}

.icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-color);
    border-radius: 50%;
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.service-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---- Responsive Design ---- */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--brand-color);
        flex-direction: column;
        justify-content: center;
        transition: left 0.3s ease;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-description {
        font-size: 1.25rem;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .about-row {
        flex-direction: column;
    }

    .about-content,
    .about-image-wrapper {
        max-width: 100%;
    }

    .about-image-wrapper {
        height: 400px;
        width: 100%;
    }

    .desktop-only-img {
        display: none !important;
    }

    .about-images-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: -10px;
        margin-bottom: 30px;
    }

    .about-images-mobile img {
        width: 100%;
        aspect-ratio: 4 / 3;
        height: auto;
        object-fit: cover;
        border-radius: 6px;
        background-color: #e8e8e8;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
}

@media (min-width: 769px) {
    .about-images-mobile {
        display: none !important;
    }
}

/* ---- About Us / Chi Siamo ---- */
.about-us {
    padding: 50px 0;
    background-color: #f7f9fb;
}

.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.about-row:last-child {
    margin-bottom: 0;
}

.about-content {
    flex: 1;
    max-width: 550px;
}

.about-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 35px;
}

.about-image-wrapper {
    flex: 1;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 4 / 3;
    background-color: #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.about-image-wrapper.small-image {
    max-width: 550px;
    aspect-ratio: 4 / 3;
}

.about-placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e8e8e8;
}

/* ---- Realizzazione / Method 4 Steps Section ---- */
.method-section {
    padding: 50px 0;
    background-color: var(--white);
    text-align: center;
}

.method-main-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.method-card {
    background-color: var(--white);
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.method-card:hover {
    border-color: var(--brand-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.method-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
}

.method-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.method-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.method-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.method-cta-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.method-cta-wrapper .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Method Responsive */
@media (max-width: 1024px) {
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .method-grid {
        grid-template-columns: 1fr;
    }

    .method-main-title {
        font-size: 2rem;
    }
}

/* ---- Gallery Section ---- */
.gallery {
    padding: 20px 0 100px 0;
    text-align: center;
    background-color: var(--white);
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* Ratio 4:3 */
    background-color: #e8e8e8;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f0f0f0;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* responsive gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        gap: 0;
    }

    .gallery-title {
        font-size: 2rem;
    }
}

.gallery-pagination {
    margin-top: 30px;
    position: relative;
}

.gallery-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--brand-color);
}

/* ---- Lightbox Modal ---- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--brand-color);
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2001;
}

.lightbox-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--brand-color);
}

/* ---- Reviews Section ---- */
.reviews {
    padding: 50px 0;
    background-color: #f7f9fb;
    text-align: center;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.reviews-swiper {
    padding-bottom: 50px !important;
}

.reviews-swiper .swiper-slide {
    height: auto;
}

.review-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.review-tag {
    font-size: 0.70rem;
    font-weight: 700;
    color: var(--brand-color);
    background-color: #e6f0f9;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews .swiper-pagination-bullet {
    background: #cccccc;
    opacity: 1;
}

.reviews .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--brand-color);
}

@media (max-width: 768px) {
    .reviews-title {
        font-size: 2rem;
    }
}

/* ---- Banner CTA Section ---- */
.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
}

/* ---- Contact Section ---- */
.contact-section {
    display: flex;
    min-height: 600px;
    background-color: #f7f9fb;
}

.contact-container {
    display: flex;
    width: 100%;
}

.contact-form-wrapper {
    flex: 1;
    padding: 80px 10%;
    background-color: #f7f9fb;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map {
    flex: 1;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 600px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-color);
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--brand-color);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    color: #a0a0a0;
    background: url('data:image/svg+xml;utf8,<svg fill="%23a0a0a0" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right center;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: -10px;
}

.form-group-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin-top: 5px;
}

.form-group-checkbox label {
    font-size: 0.85rem;
    color: var(--text-color);
    cursor: pointer;
}

.form-group-checkbox label a {
    color: var(--brand-color);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 60px 5%;
    }

    .contact-map {
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 30px;
    }
}

/* ---- Footer ---- */
.footer {
    background-color: var(--brand-color);
    padding: 60px 0 40px 0;
    color: var(--white);
    text-align: center;
}

.footer-top {
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: auto;
    margin: 0 auto;
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

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

.footer-list li {
    margin-bottom: 15px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Footer Copyright Bar */
.footer-copyright {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.copyright-right {
    display: flex;
    gap: 25px;
}

.copyright-right a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-right a:hover {
    color: var(--white);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .copyright-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ---- Info Contact Section ---- */

.info-contact-section {
    background-color: var(--white);
    padding: 80px 0;
    border-top: 1px solid #f0f0f0;
}

.info-contact-container {
    display: flex;
    align-items: stretch;
    background: #fff;
    gap: 40px;
}

.info-contact-box {
    flex: 1;
    background-color: var(--brand-color);
    padding: 60px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
}

.info-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 25px;
    margin-top: 10px;
}

.info-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.info-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-list li svg {
    margin-top: 2px;
    color: var(--white);
}

.info-list li span,
.info-list li a {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
}

.info-list li a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .info-contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .info-contact-box {
        padding: 50px 20px;
    }
}

/* ---- Full Width Video Section ---- */
.video-cta-wrapper {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.v-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.v-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 57, 57, 0.6);
    z-index: 2;
}

.v-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: auto;
    padding: 0 20px;
}

.v-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .v-content h2 {
        font-size: 2rem;
    }

    .v-content p {
        font-size: 1.1rem;
    }
}

/* ---- Contact Text Block Section (replaces form) ---- */
.info-contact-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-main-heading {
    font-size: 2.2rem;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
    text-align: center;
}

.contact-main-heading {
    margin-bottom: 10px;
}

.contact-divider {
    width: 60%;
    height: 3px;
    background-color: var(--brand-color);
    margin: 0 auto 35px auto;
}

.contact-consultant-card {
    border: 1.5px solid var(--brand-color);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white);
    max-width: 500px;
}

.photo-wrapper {
    position: relative;
    flex-shrink: 0;
    display: inline-block;
}

.online-dot {
    position: absolute;
    bottom: 1px;
    right: -5px;
    width: 18px;
    height: 18px;
    background-color: #25D366;
    border-radius: 50%;
    border: 3px solid #ffffff;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.consultant-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
    border-radius: 4px;
    flex-shrink: 0;
}

.consultant-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.consultant-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.consultant-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: #111;
}

.consultant-badge {
    background-color: var(--brand-color);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.consultant-quote {
    font-style: italic;
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

.logo-biodesign {
    display: flex;
    justify-content: center;
    width: 150px;
    height: auto;
    margin: 0 auto 10px auto;
}

.logo-brendolini {
    display: flex;
    justify-content: center;
    width: 150px;
    height: auto;
    margin: 0 auto 10px auto;
}

/* ---- WhatsApp Sticky ---- */
.whatsapp-sticky {
    display: none;
}

@media (max-width: 768px) {
    .whatsapp-sticky {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 65px;
        height: 65px;
        background-color: #25d366;
        color: #fff;
        border-radius: 50%;
        z-index: 1000;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        transition: transform 0.3s ease;
    }

    .whatsapp-sticky:hover {
        transform: scale(1.1);
    }
}

.thankyou-page {
    min-height: 100vh;
    background: linear-gradient(rgba(20, 46, 66, 0.75), rgba(20, 46, 66, 0.65)), url('assets/Gallery4.jpeg');
    background-size: cover;
    background-position: center;
    padding: 130px 0 80px;
}

.thankyou-header {
    text-align: center;
    margin-bottom: 28px;
}

.thankyou-logo {
    width: 170px;
    height: auto;
}

.thankyou-shell {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
}

.thankyou-card,
.thankyou-side-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.thankyou-card {
    padding: 42px;
}

.thankyou-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(44, 117, 169, 0.1);
    color: var(--brand-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.thankyou-title {
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 18px;
    color: var(--brand-color);
}

.thankyou-lead,
.thankyou-card p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #1f2937;
}

.thankyou-highlight {
    margin: 24px 0;
    padding: 22px 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(44, 117, 169, 0.1), rgba(242, 159, 42, 0.15));
    border: 1px solid rgba(44, 117, 169, 0.14);
}

.thankyou-highlight strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111827;
    margin-bottom: 8px;
}

.thankyou-email {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-color);
    word-break: break-word;
}

.thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.thankyou-secondary {
    background-color: var(--brand-color);
}

.thankyou-secondary:hover {
    background-color: var(--brand-color-hover);
}

.thankyou-side-card {
    padding: 34px 30px;
}

.thankyou-side-card h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    color: #143b56;
}

.thankyou-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.thankyou-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: #374151;
    line-height: 1.7;
}

.thankyou-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-color-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.thankyou-note {
    padding: 18px 20px;
    border-radius: 16px;
    background: #fff7eb;
    border: 1px solid #f2d09d;
    color: #5b4a1e;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .thankyou-shell {
        grid-template-columns: 1fr;
    }

    .thankyou-card,
    .thankyou-side-card {
        padding: 28px 22px;
    }

    .thankyou-title {
        font-size: 2.2rem;
    }
}

body.modal-open {
    overflow: hidden;
}

.call-confirm-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.call-confirm-modal.is-visible {
    display: flex;
}

.call-confirm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 32, 47, 0.68);
    backdrop-filter: blur(4px);
}

.call-confirm-dialog {
    position: relative;
    width: 100%;
    max-width: 520px;
    padding: 34px 30px 30px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
    text-align: center;
    z-index: 1;
}

.call-confirm-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #6b7280;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.call-confirm-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(44, 117, 169, 0.1);
    color: var(--brand-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.call-confirm-dialog h3 {
    margin-bottom: 12px;
    color: #143b56;
    font-size: 2rem;
    line-height: 1.15;
}

.call-confirm-dialog p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
}

.call-confirm-number {
    margin: 18px 0 24px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-color);
}

.call-confirm-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.call-confirm-cancel {
    background: #edf2f7;
    color: #1f2937;
    border: none;
}

.call-confirm-cancel:hover {
    background: #dbe4ee;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .call-confirm-dialog {
        padding: 30px 20px 24px;
        border-radius: 20px;
    }

    .call-confirm-dialog h3 {
        font-size: 1.6rem;
    }

    .call-confirm-number {
        font-size: 1.4rem;
    }

    .call-confirm-actions {
        flex-direction: column;
    }
}
