:root {
    --p: #003366;
    --pd: #002244;
    --a: #00C2CB;
    --ah: #00A8B0;
    --bw: #fff;
    --bl: #F4F7F9;
    --bs: #F4F8F8;
    --td: #1d1d1f;
    --tm: #86868b;
    --tw: #fff;
    --shad: 0 4px 6px rgba(0, 0, 0, .05);
    --rad: 18px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--td);
    background: var(--bw);
    line-height: 1.6;
    padding-top: 70px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

h1,
h2,
h3,
h4,
.brand-logo,
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700
}

a {
    text-decoration: none;
    transition: .3s;
    color: inherit
}

ul {
    list-style: none
}

img,
video {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
}

.section {
    padding: 100px 0
}

.bg-light {
    background: var(--bl)
}

.bg-dark {
    background: var(--pd);
    color: var(--tw)
}

.text-center {
    text-align: center
}

.text-highlight {
    color: var(--a)
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shad);
    z-index: 999;
    display: flex;
    align-items: center
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.nav-brand-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    font-size: 1.5rem;
    color: var(--p);
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

.brand-divider {
    height: 25px;
    width: 1px;
    background-color: #ddd;
}

.aura-nav-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center
}

.nav-link {
    font-weight: 600;
    color: var(--td);
    padding: 10px 0
}

.nav-link:hover,
.nav-link.active {
    color: var(--a)
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    border: none
}

.btn-sm {
    padding: 8px 20px;
    font-size: .9rem
}

.btn.big {
    padding: 16px 35px;
    font-size: 1.05rem
}

.full-width {
    width: 100%
}

.btn-primary {
    background: var(--p);
    color: #fff
}

.btn-primary:hover {
    background: var(--pd);
    transform: translateY(-2px)
}

.btn-accent {
    background: var(--a);
    color: var(--pd)
}

.btn-accent:hover {
    background: var(--ah);
    transform: translateY(-2px)
}

.hero-section {
    padding: 40px 0 80px;
    background: linear-gradient(to bottom right, #fff, #f0f8ff);
    position: relative;
    overflow: hidden
}

.bg-pattern-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23F4F7F9' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,160C960,139,1056,149,1152,165.3C1248,181,1344,203,1392,213.3L1440,224V320H0Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
    z-index: 0
}

.hero-grid-wrapper {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    height: 500px;
    gap: 20px
}

.hero-side-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%
}

.h-card {
    border-radius: 24px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background-color: var(--bl);
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    box-shadow: var(--shad);
    transition: .4s;
    border: 1px solid rgba(0, 0, 0, .05);
}

.h-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
    transition: .3s
}

.h-card:hover {
    transform: translateY(-3px)
}

.h-card.active-card {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff
}

.h-content-active {
    position: relative;
    z-index: 2;
    max-width: 550px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5)
}

.h-title-large {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800
}

.h-card.small-card {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 30px;
    color: #fff
}

.h-content-small {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8)
}

.h-icon-small {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px)
}

.hero-page {
    position: relative;
    height: 85vh;
    min-height: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-page .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-page h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero-page p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.badge-hero {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px
}

.apple-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.large-card {
    grid-column: 1 / -1;
}

.apple-product-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: var(--shad);
    transition: .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.apple-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 194, 203, .15)
}

.apple-product-card .product-image-wrapper {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.large-card .product-image-wrapper {
    height: 350px;
}

.apple-product-card .product-image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.apple-product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.apple-product-card h3 {
    font-size: 1.3rem;
    margin: 10px 0;
    color: var(--pd);
}

.large-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.apple-product-card p {
    font-size: 0.95rem;
    color: var(--tm);
    margin-bottom: 15px;
}

.apple-product-card .link-arrow-small {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--p);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.vp-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shad);
    transition: .3s
}

.vp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 194, 203, .15)
}

.vp-icon {
    color: var(--a);
    margin-bottom: 25px
}

.vp-icon svg {
    width: 64px;
    height: 64px
}

.flip-card-container {
    background-color: transparent;
    min-height: 420px;
    perspective: 1000px;
    cursor: pointer;
    width: 100%;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card-container.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--shad);
    border: 1px solid rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.flip-card-front {
    color: var(--td);
    z-index: 2;
}

.flip-card-back {
    color: var(--td);
    transform: rotateY(180deg);
}

.flip-card-back h3 {
    color: var(--p);
}

.price-box {
    background: var(--bl);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.price-box i {
    color: var(--a);
    opacity: 1;
}

.price-box small {
    color: var(--tm);
    font-weight: 600;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--p);
}

.split-panel {
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shad);
    flex-wrap: wrap;
    background: #fff;
}

.panel-info,
.panel-form {
    padding: 50px;
    flex: 1;
    min-width: 300px;
    background: #fff !important;
    color: var(--td) !important;
}

.panel-info h2 {
    color: var(--p);
    margin-bottom: 10px;
}

.panel-info p {
    color: var(--tm);
}

.contact-list .c-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--td);
}

.contact-list .c-item i {
    color: var(--a);
    flex-shrink: 0;
}

.map-inset {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: var(--shad);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    background: #fff;
    color: var(--td);
    transition: .3s;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--a);
    box-shadow: 0 0 0 4px rgba(0, 194, 203, 0.1);
    outline: none;
}

.form-row-split {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row-split .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--p);
    font-size: 0.9rem;
}

.picker-trigger {
    width: 100%;
    padding: 12px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    color: var(--td);
    transition: 0.3s;
    user-select: none;
}

.picker-trigger:hover,
.picker-trigger.active {
    border-color: var(--a);
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.picker-trigger i {
    color: var(--a);
}

.picker-trigger * {
    cursor: pointer;
}

.picker-dropdown {
    display: none;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.picker-dropdown.show {
    display: block !important;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--p);
}

.calendar-nav button {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: .2s;
}

.calendar-nav button:hover {
    background: var(--a);
    color: #fff;
    border-color: var(--a);
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.day-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.day-item:hover {
    border-color: var(--a);
}

.day-item.selected {
    background: var(--a);
    color: var(--pd);
    font-weight: bold;
}

.day-item.empty {
    background: transparent;
    border: none;
    cursor: default;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.time-chip {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    cursor: pointer;
}

.time-chip:hover {
    border-color: var(--a);
    color: var(--a);
}

.time-chip.selected {
    background: var(--p);
    color: #fff;
    border-color: var(--p);
}

#formFeedback {
    display: none;
    margin-top: 15px;
    background: var(--a);
    color: var(--pd);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 34, 68, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #F4F7F9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--p);
    transition: 0.2s;
}

.close-modal:hover {
    background: var(--a);
    color: #fff;
}

.footer {
    padding: 40px 0 30px;
    background: #fff;
    color: var(--td);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer h4 {
    color: var(--p);
    margin-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--tm);
    transition: .3s;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-links li,
.contact-links a {
    color: var(--tm);
    transition: .3s;
}

.footer-links a:hover,
.contact-links a:hover {
    color: var(--a);
    transform: translateX(5px);
    display: inline-block;
}

.footer .btn {
    color: #fff !important;
}

.footer .btn:hover {
    color: #fff !important;
    transform: translateY(-3px);
}

.contact-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-links i {
    color: var(--a);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, .05);
    opacity: .8;
    font-size: .85rem;
    text-align: center;
    color: var(--tm);
}

.footer-logo-box {
    background-color: var(--p);
    padding: 8px 25px;
    border-radius: 50px;
    color: #fff !important;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.2);
}

.paper-plane {
    position: fixed;
    bottom: 50px;
    left: 50%;
    width: 60px;
    height: 60px;
    color: var(--a);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, 0) scale(0.5);
}

.paper-plane.fly {
    animation: flyAway 2.5s ease-in-out forwards;
}

@keyframes flyAway {
    0% {
        opacity: 1;
        transform: translate(-50%, 0) scale(1) rotate(0deg);
    }

    15% {
        transform: translate(-50%, 20px) scale(1.2) rotate(-10deg);
    }

    30% {
        transform: translate(-50%, -50px) scale(1) rotate(10deg);
    }

    100% {
        opacity: 0;
        transform: translate(120vw, -120vh) scale(0.5) rotate(45deg);
    }
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer
}

@media(max-width:900px) {
    .container {
        padding: 0 15px;
    }

    .mobile-toggle {
        display: block
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px;
        transform: translateY(-150%);
        transition: .4s;
        border-bottom: 4px solid var(--a)
    }

    .nav-menu.active {
        transform: translateY(0)
    }

    .hero-section h1 {
        font-size: 1.8rem
    }

    .hero-grid-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        height: auto;
    }

    .h-card.active-card {
        min-height: 280px;
        width: 100%;
        flex: none;
    }

    .hero-side-column {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        height: 110px;
        width: 100%;
    }

    .h-card.small-card {
        height: 100%;
        padding: 5px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .h-content-small {
        flex-direction: column;
        gap: 5px;
        justify-content: center;
    }

    .h-icon-small {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin: 0 auto;
    }

    .h-title-small {
        display: none;
    }

    .hero-page {
        height: 75vh;
        min-height: 500px;
    }

    .hero-page h1 {
        font-size: 2.5rem;
    }

    .hero-page p {
        font-size: 1.1rem;
    }

    .apple-showcase-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 5px;
    }

    .large-card {
        grid-column: 1 / -1;
    }

    .apple-product-card {
        padding: 15px 5px;
        min-height: auto;
    }

    .apple-product-card h3 {
        font-size: 0.75rem;
        margin: 5px 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .apple-product-card p,
    .apple-product-card .link-arrow-small,
    .apple-product-card .product-tag {
        display: none;
    }

    .apple-product-card .product-image-wrapper {
        height: 80px;
        margin-bottom: 5px;
    }

    .large-card .product-image-wrapper {
        height: 150px;
    }

    .large-card h3 {
        font-size: 1rem;
        white-space: normal;
    }

    .large-card p {
        display: block;
        font-size: 0.8rem;
    }

    .large-card .link-arrow-small {
        display: flex;
    }

    .vp-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 5px;
    }

    .vp-card {
        padding: 10px 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
    }

    .vp-icon {
        margin-bottom: 8px;
    }

    .vp-icon svg {
        width: 32px;
        height: 32px;
    }

    .vp-card h3 {
        font-size: 0.75rem;
        margin: 8px 0 5px;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .vp-card p {
        display: none;
    }

    .vp-grid:has(.flip-card-container) {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px;
    }

    .vp-grid:has(.flip-card-container) .vp-card {
        padding: 20px 10px;
        justify-content: center;
    }

    .vp-grid:has(.flip-card-container) .vp-icon svg {
        width: 40px;
        height: 40px;
    }

    .vp-grid:has(.flip-card-container) .vp-card h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
        white-space: normal;
    }

    .vp-grid:has(.flip-card-container) .vp-card p {
        display: block;
        font-size: 0.8rem;
        line-height: 1.2;
        opacity: 0.8;
    }

    .large-card,
    .flip-card-container {
        grid-column: 1 / -1;
    }

    .flip-card-container {
        min-height: 450px;
        width: 100%;
    }

    .form-row-split {
        flex-direction: column;
        gap: 0;
    }

    .form-row-split .form-group {
        margin-bottom: 15px;
    }

    .time-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .panel-info,
    .panel-form {
        padding: 25px;
    }

    .footer {
        padding: 30px 0 20px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.3fr 0.7fr 1fr !important;
        gap: 8px;
    }

    .footer h4 {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .footer-links a,
    .contact-links li,
    .contact-links a,
    .brand-logo,
    .footer p,
    .footer div {
        font-size: 0.65rem !important;
        line-height: 1.3;
    }

    .footer-logo-box {
        padding: 5px 15px;
        font-size: 0.7rem;
    }

    .contact-links i {
        font-size: 0.8rem;
        margin-right: 4px;
        width: 12px;
    }

    .footer .btn {
        padding: 6px 0;
        width: 100%;
        font-size: 0.6rem;
        white-space: nowrap;
    }

    /* === MODIFICA RIDUZIONE SEZIONE CONSULENZA === */
    .consultation-banner {
        padding: 20px !important;
        /* Ridotto padding */
        margin-top: 40px !important;
        /* Ridotto margine superiore */
    }

    .consultation-banner h3 {
        font-size: 1.4rem !important;
        /* Testo più piccolo */
        line-height: 1.2;
    }

    .consultation-banner p {
        font-size: 0.9rem !important;
        /* Testo più piccolo */
        margin-bottom: 15px !important;
    }

    .consultation-list {
        margin-top: 15px !important;
        gap: 10px !important;
    }

    .consultation-list li {
        font-size: 0.9rem !important;
    }

    .consultation-action .btn {
        padding: 12px 30px !important;
        /* Bottone più compatto */
        font-size: 0.9rem !important;
    }
}