/* --- Global Page Reset --- */
main.page-contact  {
    background-color: #F5FAFF;
    overflow-x: hidden; /* Prevents scrollbars during animations */
}


/* --- Quick Actions Section --- */
.quick-actions {
    padding: 60px 0;
    /* Main section enters gracefully */
    animation: fadeInUp 0.8s ease-out forwards;
}

.actions-title {
    font-weight: 500;
    font-size: clamp(22px, 6vw, 42px);
    color: #373536;
    text-align: center;
}

.actions-grid {
    display: flex;
    justify-content: space-between;
    width: 1170px;
    margin: clamp(20px, 5vw, 60px) auto;
    max-width: 100%;
}

/* --- Action Item Hovers --- */
.action-item {
    text-align: center;
    color: #373536;
    font-weight: 500;
    font-size: 18px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Staggered entrance for the 5 items */
.action-item:nth-child(1) { animation-delay: 0.1s; }
.action-item:nth-child(2) { animation-delay: 0.2s; }
.action-item:nth-child(3) { animation-delay: 0.3s; }
.action-item:nth-child(4) { animation-delay: 0.4s; }
.action-item:nth-child(5) { animation-delay: 0.5s; }

.action-item:hover {
    transform: translateY(-8px);
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease; /* Smooth color and shadow transition */
    margin: 10px auto;
    border: 1px solid transparent;
    box-shadow: 0px 0px 40px rgba(17, 138, 199, 0.2);
    backdrop-filter: blur(2px);
}

/* --- Detailed Glow/Halo Effects --- */
.action-item:hover .icon-circle {
    background-color: #fff;
}

/* Teal Glow */
.glow-teal:hover .icon-circle { 
    box-shadow: 0 15px 40px rgba(114, 202, 201, 0.4); 
    border-color: rgba(114, 202, 201, 0.2);
}

/* Orange Glow */
.glow-orange:hover .icon-circle { 
    box-shadow: 0 15px 40px rgba(241, 90, 34, 0.4); 
    border-color: rgba(241, 90, 34, 0.2);
}

/* Added generic blue/green glows for others if needed */
.glow-green:hover .icon-circle { box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3); }

/* --- CTA Button Interaction --- */
.cta-button-main {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #05538E;
    color: #fff;
    padding: 15px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 83, 142, 0.2);
}

.cta-button-main:hover {
    background-color: #044372;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(5, 83, 142, 0.3);
}