/* --- Section Background --- */
.connected-section {
    /* Mimics: bg-gradient-to-br from-sage-100 via-white to-sky-100 */
    background: linear-gradient(135deg, #e8f0ec 0%, #ffffff 50%, #e0f2fe 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* --- Typography --- */

.text-lead2 {
    color: #3d574d;
    font-size: 1.25rem; /* text-xl */
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-family: var(--font-01);
}


/* --- Contact Links --- */
.contact-link-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link-wrap i {
    color: #5c8272!important;
    font-size: 1.25rem; /* text-xl */
}

.contact-link {
    color: #3d574d;
    font-size: 1.125rem; /* text-lg */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    text-decoration: underline;
}

.location-text {
    color: #3d574d;
    font-size: 1.125rem; /* text-lg */
    margin-bottom: 2rem;
    font-family: var(--font-01);
}

/* --- Social Icons --- */
.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: scale(1.1); /* hover:scale-110 */
}

.social-circle {
    width: 4rem; /* w-16 */
    height: 4rem; /* h-16 */
    border-radius: 50%;
    background-color: #5c8272;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    transition: box-shadow 0.3s ease;
}

.social-item:hover .social-circle {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* group-hover:shadow-xl */
}

.social-circle i {
    color: #ffffff;
    font-size: 1.875rem; /* text-3xl */
}

.social-name {
    color: #3d574d;
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
}

.social-handle {
    color: #7a9b8d;
    font-size: 0.75rem; /* text-xs */
}

/* --- Glassmorphism Quote Box --- */
.glass-quote-box {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid #d1dcd7;
    border-radius: 1rem; /* rounded-2xl */
    padding: 2rem; /* p-8 */
    max-width: 42rem; /* max-w-2xl */
    margin: 0 auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
}

.glass-quote-box p {
    color: #5c8272;
    font-size: 1.5rem; /* text-2xl */
    font-style: italic;
    line-height: 1.75;
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
    .connected-section {
        padding-top: 8rem; /* md:py-32 */
        padding-bottom: 8rem;
    }
}